I was looking to compress PDF files (typically poster for event and such are massive)
- online tools is not a solution for sensitive data, process is tiedous to check compression rate ;
- other tools require Python (cf. minimalpdfcompress, pdfc) ; but Local compress of PDF with ~90% efficiency (way better than online tool) using only CLI tool
- in-browser solution compress so much that content isn't readable (cf. CompressPDF) ;
- DjVu format is super efficient as it's designed to store document
- Currently no OCR, if you need it check pdf2djvu-ocr
sudo apt-get install \
djvulibre-bin \
ghostscript \
pdf2djvu
compress-pdf input-big.pdf [compressed.pdf]