Java在PDF中刪除註釋

lvxfcjf發表於2021-09-11

Java在PDF中刪除註釋

流程

1、使用Document類載入PDF文件。

2、用Document.getPages().get_Item(int).getAnnotations().delete()刪除所有註釋。

3、用Document.save儲存更新的PDF。

例項

// Open source PDF document
Document pdfDocument = new Document("input.pdf");
 
// Delete all annotation
pdfDocument.getPages().get_Item(1).getAnnotations().delete();
 
// Save the update document
pdfDocument.save("output.pdf");

以上就是Java在PDF中刪除註釋的方法,希望對大家有所幫助。更多Java學習指路:

本教程操作環境:windows7系統、java10版,DELL G3電腦。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3486/viewspace-2829946/,如需轉載,請註明出處,否則將追究法律責任。

相關文章