本文介绍了通过命令行删除 PDF 注释的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法批量(例如通过命令行)删除所有 PDF 注释(包括突出显示、注释、注释、箭头)?

Is there a way to remove all PDF annotations (including highlights, comments, notes, arrows) in bulk (e.g., via command line)?

推荐答案

以下系列命令 解决了我的问题:

The following series of commands solved my problem:

pdftk original.pdf output uncompressed.pdf uncompress

LANG=C sed -n '/^\/Annots/!p' uncompressed.pdf > stripped.pdf

pdftk stripped.pdf output final.pdf compress

这篇关于通过命令行删除 PDF 注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 19:40