QPDF is a hefty library that can inspect and manipulate the structure of PDF files. It can encrypt and expose the internals of a PDF file, and do many other operations useful to end users and PDF developers.
Some PDF creators enable the read-only mode for their documents. In reality, this way of protection has little sense. It relies on PDF reader apps implementation letting them decide what to do when user tries to copy the text. Many of them show error alerts with a message about disabled copying.
Of course, the text is visible, so nothing prevents us from reading it. The alerts become especially annoying if you own the PDF. You purchased it but since the protection mechanism is still there, you're not allowed to CTRL + C
.
The following recipe shows how to solve the problem.
Download QPDF from the official website.
Install it according to the instructions for your OS.
Run
qpdf --decrypt in.pdf out.pdf
Top comments (0)