2

我使用itext库来创建 PDF 文件,因为它具有非常详细的 PDF 创建渲染功能。当用户单击按钮时,我会编写一个模板并每次都从 DB 中填充空白单元格。

比我使用Icepdf库向用户展示并获取创建的 pdf 文件的输出。

但我认为 Icepdf 有一些字符编码问题。当 PDf 由Icepdf一个土耳其字符创建和调用时,它看起来是正方形的。可以在此链接中看到土耳其语字符。所有字符均成功渲染,但图片中的第八个字符未成功渲染。

当我转到创建的 pdf 文件(由itext库创建)的文件路径并使用 Adob​​e Acrobat Reader 手动打开它时,所有字符都正确显示。但是如果以编程Icepdf方式打开文件并显示给用户,图片中的第八个字符看起来像正方形。

我需要更改 Icepdf 的字符编码,但我还不能。阅读了很多关于字符和Font编码的文章,Icepdf但我还没有成功。如果我解决了这个字符问题,我的应用程序就可以部署了。

生成的 PDF 文件可以在这里下载。

当我用 Adob​​e Acrobat 打开这个文件时,它看起来像这样:

土坯视图

当我以编程方式使用 IcePDF 打开文件时,它看起来像这样:

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); 
}
4

1 回答 1

1

- - 解决了 - -

首先,感谢路由器的评论@Mike 'Pomax' Kamermans

阅读他/她的评论后,开始调查“我如何使用 iText 将特定字体文件嵌入 PDF ” 1-2 天后,我找到了如下所示的解决方案;

转到 WindowsControl Panel\Appearance and Personalization\Fonts并将times.ttf(测试所有支持特殊字符的字体)文件复制到我的 Java 应用程序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()方法将文档显示在屏幕上,所有特殊字符都真实呈现。

于 2015-12-14T18:46:27.000 回答