Last active
November 21, 2018 23:02
-
-
Save landbryo/b296a2e244180e76fcbb8c93e7f952e1 to your computer and use it in GitHub Desktop.
Optimize PDF for ebook (150dpi) in Linux using Ghost Script. This is perfect for preparing PDFs to be added to services such as Issuu.
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
// https://ghostscript.com/doc/current/Ps2pdf.htm | |
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment