Last active
August 18, 2024 16:44
-
-
Save previtus/b2ec341c4a637524b96a9073476d8a86 to your computer and use it in GitHub Desktop.
Compress pdfs in folder!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in *.pdf ; do ps2pdf "$i" "${i%.*}c.pdf" ; done | |
# for examle this goes from 15.7 MB to 3.9 MB ... without really visibly loosing quality! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source : 2.4 MB (plot from matplotlib) | |
https://github.com/pts/pdfsizeopt | |
- slow! | |
- default command 2.2MB | |
- running on the ps2pdf result - just a tiny bit smaller to 479kb | |
https://smallpdf.com/compress-pdf#r=compress | |
- limited, loss of quality too large | |
- 57kb | |
ps2pdf conversion | |
- fast! | |
- 481kb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment