Handy pdf utilities

from blog lmno.lol @alvaro, | ↗ original
Straight out of How (and why) I made a zine, some handy utilities for generating pdfs… Convert pngs to pdfs # start with a bunch of PNG images of your zine pages # convert them all to PDF for i in *.png do # imagemagick is the best thing in the world convert $i $i.pdf done Combine pdfs Combine pdfs using pdftk: pdftk *.pdf cat...