通过命令行删除PDF注释

时间:2018-04-01 13:58:16

标签: pdf command-line annotations

有没有办法批量删除所有PDF注释(包括高亮,注释,注释,箭头)(例如,通过命令行)?

1 个答案:

答案 0 :(得分:2)

以下series of commands解决了我的问题:

pdftk original.pdf output uncompressed.pdf uncompress

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

pdftk stripped.pdf output final.pdf compress