我使用itext
库来创建PDF文件,因为它具有非常详细的PDF创建渲染功能。当用户单击按钮时,我会写一个模板并每次从DB填充空白单元格。
比我使用Icepdf
库向用户显示show并获取创建的pdf文件的输出。
但是我认为Icepdf有一些字符编码问题。当Icepdf
创建和调用PDf时,土耳其字符之一看起来像方形。可以在此link看到土耳其字符。所有字符都成功呈现,但图片中的第八个字符不是。
当我转到创建的pdf文件的文件路径(由itext
库创建)并使用Adobe Acrobat Reader手动打开它时,所有字符都正确显示。但是,如果以编程方式Icepdf
打开文件并向用户显示,则图片中的第八个字符看起来像方形。
我需要更改Icepdf的字符编码,但我还不能。阅读许多关于Font
的字符和Icepdf
编码的文章,但我还没有成功。如果我解决了这个字符问题,我的应用程序就可以部署了。
生成的PDF文件可以下载here。
当我使用Adobe Acrobat打开此文件时,它看起来像这样:
当我以编程方式使用IcePDF打开文件时,它看起来像是:
此外,我在Stackoverflow上阅读了一些关于此的问题和答案,但没有一个人接受了答案/帮助。
用于创建文件路径的代码:
File fUrl = new File(CreateAndViewPdf
.class
.getProtectionDomain()
.getCodeSource()
.getLocation()
.getPath()
);
String path = fUrl
.toString()
.substring(0,fUrl.toString().lastIndexOf(File.separator))
.replace("%20", " ") + "\\hello.pdf";
createPdf()
方法的代码:
public void createPdf()throws DocumentException, IOException {
BaseFont bf = BaseFont.createFont(BaseFont.HELVETICA, "ISO-8859-9", BaseFont.EMBEDDED);
Document document = new Document(PageSize.A5);
PdfWriter.getInstance(document, new FileOutputStream(path));
document.setMargins(10, 10, 10, 10);
document.setMarginMirroring(true);
document.open();
Font font = new Font( bf );
PdfPCell cell;
PdfPTable table = new PdfPTable(2);
font = new Font( bf );
font.setSize(15);
font.setStyle("bold");
cell = new PdfPCell(new Phrase("Sender\n"+"Information", font));
cell.setPaddingBottom(7);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);
font = new Font( bf );
font.setSize(12);
font.setStyle("normal");
cell = new PdfPCell(new Phrase("â ç ğ ı İ î ö ş ü û\n\n"+"Â Ç Ğ I İ Î Ö Ş Ü Û",font));
cell.setPaddingBottom(7);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
table.addCell(cell);
table.setWidths(new int[]{50,200});
table.setWidthPercentage(100);
table.setSpacingAfter(10);
table.setSpacingBefore(10);
document.add(table);
document.close();
}
viewPdf()
方法的代码:
public void viewPdf(String fileP)throws IOException, InterruptedException {
String filePath = fileP;
SwingController controller = new SwingController();
SwingViewBuilder factory = new SwingViewBuilder(controller);
JPanel viewerComponentPanel = factory.buildViewerPanel();
controller.getDocumentViewController().setAnnotationCallback(
new org.icepdf.ri.common.MyAnnotationCallback(
controller.getDocumentViewController()));
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
CreateAndViewPdf.this.getContentPane().add(viewerComponentPanel);
CreateAndViewPdf.this.setSize(new Dimension(screen.width/2,screen.height));
CreateAndViewPdf.this.setLocationRelativeTo(null);
controller.openDocument(filePath);
}
答案 0 :(得分:1)
---已解决---
首先,感谢路由器对@Mike 'Pomax' Kamermans
读完他/她的评论后开始调查" 如何使用iText将特定字体文件嵌入到PDF中" 1-2天后,我发现解决方案就像下面一样;
转到Windows Control Panel\Appearance and Personalization\Fonts
并将times.ttf
(测试所有特殊字符支持的字体)文件复制到我的Java Application resources
容器。
我将下面的行添加到createPDF
方法的顶部。
Font fontBase = FontFactory.getFont("/resources/times.ttf",
BaseFont.IDENTITY_H,
BaseFont.EMBEDDED,
0.8f, Font.NORMAL,
BaseColor.BLACK);
BaseFont bf = fontBase.getBaseFont();
在此之后,viewPdf()
方法将文档显示在屏幕上,并显示所有特殊字符。