TG Telegram Group & Channel
GeekTips | United States America (US)
Create: Update:

Lately ocrmypdf keeps failing when I just wanna compress pdfs so had to do it without fail. Also to clean metadata was using ExifCleaner but didn't realize all metadata can be restored by doing exiftool -pdf-update:all= some.pdf.

qpdf does a decent job of compressing images and the linearize destroys the metadata that was stripped out so it can't be restored.

exiftool --list some.pdf
will show pdf metadata

On Mac (cuz of stupid zsh)

metapdf=$(bash -c 'read -e -p "Input pdf filename to clean metadata and compress: " tmp; echo $tmp') && exiftool -all:all= $metapdf && qpdf --linearize --object-streams=generate $metapdf ${metapdf%.*}_cleaned.pdf

On Linux this should work

read -p "Input pdf filename to clean metadata and compress: " metapdf && exiftool -all:all= $metapdf && qpdf --linearize --object-streams=generate $metapdf ${metapdf%.*}_cleaned.pdf

Another way to compress pdfs is

ps2pdf in.pdf out.pdf
but it's way too slow

On Linux I use MasterPDF Editor to crop pdfs but on Mac not sure what free app there is so resorted to online pdf croppers. Only free one I found that doesn't destroy bookmarks in the process was pdfmonk but gotta use it in Safari.

Lately ocrmypdf keeps failing when I just wanna compress pdfs so had to do it without fail. Also to clean metadata was using ExifCleaner but didn't realize all metadata can be restored by doing exiftool -pdf-update:all= some.pdf.

qpdf does a decent job of compressing images and the linearize destroys the metadata that was stripped out so it can't be restored.

exiftool --list some.pdf
will show pdf metadata

On Mac (cuz of stupid zsh)

metapdf=$(bash -c 'read -e -p "Input pdf filename to clean metadata and compress: " tmp; echo $tmp') && exiftool -all:all= $metapdf && qpdf --linearize --object-streams=generate $metapdf ${metapdf%.*}_cleaned.pdf

On Linux this should work

read -p "Input pdf filename to clean metadata and compress: " metapdf && exiftool -all:all= $metapdf && qpdf --linearize --object-streams=generate $metapdf ${metapdf%.*}_cleaned.pdf

Another way to compress pdfs is

ps2pdf in.pdf out.pdf
but it's way too slow

On Linux I use MasterPDF Editor to crop pdfs but on Mac not sure what free app there is so resorted to online pdf croppers. Only free one I found that doesn't destroy bookmarks in the process was pdfmonk but gotta use it in Safari.


>>Click here to continue<<

GeekTips




Share with your best friend
VIEW MORE

United States America Popular Telegram Group (US)