无法使用 PDFBox 将图像添加到 PDF
我正在编写一个java应用程序,该应用程序使用pdfbox库从头开始创建pdf。
我需要在其中一个页面中放置一个jpg图像。
我正在使用这个代码:
PDDocument document = new PDDocument();
PDPage page = new PDPage(PDPage.PAGE_SIZE_A4);
document.addPage(page);
PDPageContentStream contentStream = new PDPageContentStream(document, page);
/* ... */
/* code to add some text to the page */
/* ... */
InputStream in = new FileInputStream(new File("c:/myimg.jpg"));
PDJpeg img = new PDJpeg(document, in);
contentStream.drawImage(img, 100, 700);
contentStream.close();
document.save("c:/mydoc.pdf");
当我运行代码时,它成功终止,但是如果我使用Acrobat Reader打开生成的pdf文件,页面将完全变白,并且图像不会放置在其中。
相反,文本被正确放置在页面中。
关于如何将我的图像放入PDF中的任何提示?