A simple-as-possible gui for compressing pdf files using ghostscript on macOS. Made with Applescript.
Compress those huge pdf files away! Minimal command line work is needed to setup and then compressing one or multiple pdf's is one click away.
- Open Terminal.app
- Install homebrew. Just copy/paste the long command found on homebrew's homepage.
- Install ghostscript:
$ brew install ghostscript
- Download PDF Toaster, run it and follow the onscreen instructions. Best way to use it, is to press
⌘Command
and drag the app to the Finder toolbar (or drag to the dock) and use it as a droplet.
You can tweak some options for this app by directly editing the script:
- Open
Script Editor.app
(found in /Applications/Utilities) - Drag
PDF Toaster.app
on the Script Editor icon on the dock
You will now see some property
items you can change:
MOVE_ORIGINAL_TO_TRASH : false // whether or not to keep the original file
GS_PDFSETTINGS_OPTIONS : {"ebook", "printer", "prepress"} // the options you will have when running the app; from smaller to larger file size
GS_PDFSETTINGS_DEFAULT : "printer" // the default ghostscript compression setting
Original ghostscript command found on Max Lenister's blog
Original icon: Toaster Icon by Greg Barnes
This script is provided for free, as-is with no warranties.