mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
add extra hex char
This commit is contained in:
@@ -448,7 +448,7 @@
|
|||||||
outputStream.WriteByte((byte)'\\');
|
outputStream.WriteByte((byte)'\\');
|
||||||
outputStream.WriteByte((byte)Escaped[ei]);
|
outputStream.WriteByte((byte)Escaped[ei]);
|
||||||
}
|
}
|
||||||
else if (c < 32 || c > 127) // non printable
|
else if (c < 32 || c > 126) // non printable
|
||||||
{
|
{
|
||||||
var b3 = c / 64;
|
var b3 = c / 64;
|
||||||
var b2 = (c - b3 * 64) / 8;
|
var b2 = (c - b3 * 64) / 8;
|
||||||
|
|||||||
Reference in New Issue
Block a user