PDF Cheatsheet
As with all of my cheatsheets, this is just a dumping ground for as things come up.
Save Unlocked PDF
If you get a PDF that requires a password to unlock, you can use this command to save a version that won't need unlocking in future.
sudo apt-get install qpdf
.
Create Encrypted PDF
Create A PDF From A Series Of Images
The following command will create a PDF document where all the images are the same width.
-resize 629
. Also, all your images need to have the same DPI, otherwise it doesn't work.
Fixing Error Message
If you get the error message:
convert-im6.q16: attempt to perform an operation not allowed by the security policy `PDF' @ error/constitute.c/IsCoderAuthorized/408.
Then do the following. Edit your ImageMagick policy configuration:
Add the following just before the final </policy>
tag:
E.g.
It should now work!
Split PDF Into Set Of PDFs
If you wish to split a PDF into a set of single-page PDFs, you can do so like this:
sudo apt install pdftk-java
.
Reverse PDF Pages
If your PDF is in the reverse order of what it should be, you can rearrange the pages with the following command:
Convert PDF To Set Of Images
Tools like Figma make it really easy to export as a single PDF. However, I need to convert that to just a set of PNG images. Luckily this is really easy, and essentially the same as before in reverse (using ImageMagick).
That will create a set of incremented filenames like so:
- output-0.png
- output-1.png
- output-2.png
Crop PDF
If you have a PDF, and you find that the margins are too large, which is causing it to be hard to read easily on a tablet, you can crop the margins with pdfcrop as shown below:
Merge Two PDFs In Interleaving Manner
My HP printer can only bulk scan documents on one side at a time. This means that I have to feed them through twice. Once for the front side of the pages, and once again for the back side. Each of these scan jobs come down in a single PDF file, meaning I have one PDF file for the front set of pages, and one set for the back. To gracefully merge these two PDF documents into a single PDF document, one simply needs to run the following command:
Cut Pages Out Of A PDF
If you need to remove a page or multiple pages from a PDF, this is pretty straightforward. However, we really just need to create a new PDF and specify which pages we wish to keep, rather than the ones we wish to remove. E.g. like so:
new-version.pdf
, which would not have the second, fourth and 22nd pages, whilst retaining all of the rest.
References
- Stack Overflow - How can I easily crop a PDF page?
- How-To Geek - How to Remove a Password from a PDF File in Linux
- Stack Overflow - ImageMagick security policy 'PDF' blocking conversion
- Linux Commando - Splitting up is easy for a PDF file
- Unix & LInux - How to merge 2 PDF files with interleaving pages order?
First published: 14th April 2019