我可以插入現有的PDF文檔中的圖像,但問題是,如何使用PDFBox精確定位現有PDF頁面中的圖像?
- 圖像被放置在頁面的底部,並
- 頁面變成白色與新添加的文本顯示它。
我正在使用以下代碼。
List<PDPage> pages = pdDoc.getDocumentCatalog().getAllPages();
if(pages.size()>0){
PDJpeg img = new PDJpeg(pdDoc, in);
PDPageContentStream stream = new PDPageContentStream(pdDoc, pages.get(0));
stream.drawImage(img, 60, 60);
stream.close();
}
我希望在第一頁上的圖像。