我想生成一个包含Bangla text的PDF。生成 PDF 后,生成的 PDF 中的文本损坏。我在 StackOverflow 中经历了很多与此问题相关的 Q/A,但不幸的是,我没有找到任何合适的答案。这是我的代码...
try (PDDocument doc = new PDDocument()) {
PDPage pdPage = new PDPage(PDRectangle.A4);
doc.addPage(pdPage);
PDPageContentStream cs = new PDPageContentStream(doc, pdPage);
InputStream fontFileStream = new FileInputStream("src/main/resources/SolaimanLipi_22-02-2012.ttf");
PDFont banglaFont = PDType0Font.load(doc, fontFileStream, false);
cs.beginText();
cs.setFont(banglaFont, FONT_SIZE);
cs.newLineAtOffset(30, 500);
cs.showText("অভিনন্দন! প্রিয় আবিদ হাসান,");
cs.endText();
cs.close();
doc.save(location);
} catch (IOException e) {
log.error("PDF Error : {}", e.getMessage(), e);
}
我在生成的 PDF 中的预期输出。
但是我在生成的 PDF 中得到了什么(损坏)。
谁能帮我解决这个问题???