Command-line Decrypting of PDF, given a document open password

5

1

I've been given a PDF that is password-protected. I have the document-open password, which is enough to decrypt the contents and allow PDF readers to load the content correctly.

Is there a command-line tool that will perform this decryption process (based on the provided password) and write the decrypted PDF to a new file?

MxLDevs

Posted 2014-03-28T15:32:45.827

Reputation: 1 019

Linux: http://www.cyberciti.biz/faq/removing-password-from-pdf-on-linux/

– Nathan C – 2014-03-28T15:36:39.037

Answers

6

Yes. Qpdf should do what you want:

qpdf --password=thepassword --decrypt input.pdf output.pdf

You can find a download for Windows (assuming you have MinGW installed) if you go to Files->qpdf->latest version, then scroll down to find a description of the files (you can find a link to version 5.11, the most recent version as of 2014-3-28, here).

Choco users can install the package by issuing choco install qpdf (ref)

PlasmaPower

Posted 2014-03-28T15:32:45.827

Reputation: 206