7

パスワードで保護された PDF ファイルから印刷保護を解除するにはどうすればよいですか?

4

2 に答える 2

15

PDF ドキュメントが表示されても印刷できない場合、GNU/Linux を使用している場合の簡単な回避策があります。

これを行うには、次の 2 段階の手順を使用する必要があります。

  1. PDFをポストスクリプトに印刷する
  2. 通常のPDFファイルに戻す

    $ pdftops [your_protected_pdf_document.pdf] out.ps
    
    $ pstopdf [out.ps] broken_protection_pdf_document.pdf 
    

そして、それは完了です。PDF ドキュメントのパスワード保護はもうありません。

于 2013-01-09T10:59:31.847 に答える
8

PDF コメント セキュリティをリセットするには、pdftk と qpdfの回答を参照してください。

他の回答からコピー(Kurt Pfeifle 著)

The command qpdf --decrypt input.pdf output.pdf removes 
the 'owner' password. But it does only work, if there is 
no 'user' password set.

Once the owner password is removed, the output.pdf should 
already have unset all security protection and have allowed 
commenting. Needless to run your extra pdftk ... command then... 
BTW, your allow parameter in your pdftk call will not work the 
way you quoted your command. The allow permissions will only be
applied if you also...

    ...either specify an encryption strength
    ...or give a user or an owner password

Try the following to find out the detailed security settings of the file(s):

qpdf --show-encryption input.pdf
qpdf --show-encryption output.pdf

例:

qpdf --decrypt crypted.pdf --password=myP@sswor!D uncrypted.pdf
于 2013-11-19T12:21:04.043 に答える