我目前正在使用Eclipse中的PDFBox(使用PDFBox作为构建路径JAR)。
我想将EPS徽标文件嵌入到我想要创建的PDF中。
我看到我们无法直接嵌入.eps文件,所以我事先将其转换为PDF。现在的问题是将PDF嵌入到现有的PDF中:
String fileUrl="BlankPage.pdf";
PDDocument document = new PDDocument();
PDPage homePage = new PDPage();
homePage.setMediaBox(PDPage.PAGE_SIZE_A4);
document.addPage(homePage);
PDPageContentStream contentStream = new PDPageContentStream(document, homePage);
...
PDDocument doc = PDDocument.load("images/logotype.pdf");
问题是,如何将 doc 变量嵌入 contentStream ?
由于