-
-
Save fredguth/a34c1b2924d3364787419b3b2f284e3c to your computer and use it in GitHub Desktop.
batch transform pdfs to pngs in mac osx
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 file in *.pdf; do sips -s format png "$file" --out "${file%.pdf}.png"; done ▼ at 10:43:40 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment