我使用itext编辑PDF。我在字段中嵌入了字体。但是在单击该字段之前,文本无法正确呈现。 link to the pdf
String unicodeFontPath = "templates/font/FreeSans.otf";
BaseFont unicode1 = BaseFont.createFont(unicodeFontPath, BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
fields.setFieldProperty("Given Name Text Box", "textfont", unicode1, null);
fields.setField("Given Name Text Box", emp.getName());