mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-01-18 19:51:24 +08:00
add extra hex char
This commit is contained in:
@@ -448,7 +448,7 @@
|
||||
outputStream.WriteByte((byte)'\\');
|
||||
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 b2 = (c - b3 * 64) / 8;
|
||||
|
||||
Reference in New Issue
Block a user