File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
kernel/src/main/java/com/itextpdf/kernel/pdf Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ This file is part of the iText (R) project.
44
44
package com .itextpdf .kernel .pdf ;
45
45
46
46
import com .itextpdf .io .LogMessageConstant ;
47
+ import com .itextpdf .io .font .PdfEncodings ;
47
48
import com .itextpdf .io .source .ByteArrayOutputStream ;
48
49
import com .itextpdf .io .source .ByteUtils ;
49
50
import com .itextpdf .io .source .RandomAccessFileOrArray ;
@@ -2212,7 +2213,8 @@ private void updateProducerInInfoDictionary() {
2212
2213
}
2213
2214
producer = addModifiedPostfix (producer );
2214
2215
}
2215
- info .getPdfObject ().put (PdfName .Producer , new PdfString (producer ));
2216
+
2217
+ info .getPdfObject ().put (PdfName .Producer , new PdfString (producer , PdfEncodings .UNICODE_BIG ));
2216
2218
}
2217
2219
2218
2220
/**
You can’t perform that action at this time.
0 commit comments