to be able to add annotations to a pdf file in linux, i have to reset the "Commenting" security setting in the pdf document.
qpdf --decrypt input.pdf output.pdf
should remove any passwords or "encryption" (according to this post)
pdftk input input.pdf output output.pdf allow AllFeatures
should set all document securities (including "Commenting") to be allowed
After applying both commands, in acroread i can still see (file -> document -> security tab) that commenting is not allowed.
How can I reset this security property?
input
from pdftk on my system:pdftk input.pdf output output.pdf allow AllFeatures
. – Bounty