【问题标题】:PDF to Image conversion [duplicate]PDF到图像转换[重复]
【发布时间】:2011-09-03 20:09:26
【问题描述】:

可能重复:
Convert pdf file to jpg asp.net

public class Pdf2Image {

    private Image image;
    int length;
    public int convertPdf2Image(String pdfname) {
        File file = new File(pdfname);
        RandomAccessFile raf;
        try {
            raf = new RandomAccessFile(file, "r");
            FileChannel channel = raf.getChannel();
            ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY, 0, channel.size());
            PDFFile pdffile = new PDFFile(buf);
            // draw the first page to an image
            int num = pdffile.getNumPages();

            length=num;
            for (int i = 0; i <= num; i++) {
                PDFPage page = pdffile.getPage(i);
                //get the width and height for the doc at the default zoom
                int width = (int) page.getBBox().getWidth();
                int height = (int) page.getBBox().getHeight();
                Rectangle rect = new Rectangle(0, 0, width, height);
                int rotation = page.getRotation();
                Rectangle rect1 = rect;
                if (rotation == 90 || rotation == 270) {
                    rect1 = new Rectangle(0, 0, rect.height, rect.width);
                }
                //generate the image
                BufferedImage img = (BufferedImage) page.getImage(
                        rect.width, rect.height, //width & height
                        rect1, // clip rect
                        null, // null for the ImageObserver
                        true, // fill background with white
                        true // block until drawing is done
                        );
                ImageIO.write(img, "png", new File("src\\downloadedFiles\\aa" + i + ".png"));
            }
        } catch (FileNotFoundException e1) {
            System.err.println(e1.getLocalizedMessage());
        } catch (IOException e) {
            System.err.println(e.getLocalizedMessage());
        }
        return length;
    }

    public static void main(String[] args) {
        Pdf2Image p = new Pdf2Image();
        p.convertPdf2Image("src\\downloadedFiles\\todaypdf.pdf");
    }
}

我正在使用此代码将 PDF 文件转换为图像。它适用于大多数 PDF,但显示 PDF 文件异常。例外是:

Expected 'xref' at start of table.

谁能告诉我为什么会出现这样的异常?

【问题讨论】:

  • 您能提供完整的调用堆栈吗?
  • 您可以使用 Acrobat、IcePDF 或其他 pdf 查看器查看 PDF 吗?还是他们也给出警告/错误?

标签: java image exception pdf converter


【解决方案1】:

有很多格式错误的 PDF 文件,这很可能是其中之一。

在看到问题 PDF 文件之前,无法给出明确的答案。我猜是'startxref'指定了外部参照表应该位于的PDF中的绝对位置。 java 库正在跳转到文件上的这个位置,希望找到单词“xref”,但找不到它。

http://blog.amyuni.com/?p=1627

解决此问题的一种方法是将文件加载到 Acrobat 的完整版本中,然后保存文件。 Acrobat 将修复链接中提到的外部参照偏移。

那里有相当大的公司生成格式错误的 PDF,应该更清楚。 Adobe 允许这些文件存在,因为它使他们的 PDF 竞争对手难以跟上和竞争。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2011-07-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-08-16
    • 2015-04-19
    • 1970-01-01
    相关资源
    最近更新 更多