Java在PDF中删除注释

流程

1、使用Document类加载PDF文档。

2、用Document.getPages().get_Item(int).getAnnotations().delete()删除所有注释。

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

实例

//OpensourcePDFdocument
DocumentpdfDocument=newDocument("input.pdf");

//Deleteallannotation
pdfDocument.getPages().get_Item(1).getAnnotations().delete();

//Savetheupdatedocument
pdfDocument.save("output.pdf");

以上就是Java在PDF中删除注释的方法,希望对大家有所帮助。更多Java学习指路:Java基础

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容