我在使用Sun的PDF Renderer软件包查看带有嵌入式字体的PDF时遇到麻烦。我有以下代码,可以从PDF的每一页中创建一个BufferedImage以便在我的应用程序中查看,并且在没有嵌入式字体的情况下可以正常工作。但是,当PDF嵌入字体时,它不会显示文本。有任何想法吗?另外,它可以在Adobe的PDF查看器中很好地打开。

File f = new File("C:\\test.pdf");
FileChannel fc = new RandomAccessFile(f, "r").getChannel();
PDFFile pdfFile = new PDFFile(fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size()));
for(int x=0; x<pdfFile.getNumPages(); x++) {
    try {
        BufferedImage bi = (BufferedImage)pdfFile.getPage(x+1).getImage(
            (int)pdfFile.getPage(x+1).getWidth(),
            (int)pdfFile.getPage(x+1).getHeight(),
            new Rectangle((int)pdfFile.getPage(x+1).getWidth(),
            (int)pdfFile.getPage(x+1).getHeight()),
             null, true, true);
    }
    catch (Exception e) {
        e.printStackTrace();
    }
}

最佳答案

我是通过将PDF渲染从PDFRenderer更改为PDFBox来解决的,效果更好。更多信息可用here

07-23 12:24