Created
November 24, 2015 12:35
-
-
Save BrechtDeMan/c2acad92744a3a52a1a2 to your computer and use it in GitHub Desktop.
Convert PNG files to separate PDFs (install ImageMagick 'sudo brew install imagemagick'/'sudo port install ImageMagick')
This file contains 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
#!/usr/bin/env | |
for f in *.png; do | |
convert ./"$f" ./pdf/"${f%.png}.pdf" | |
echo "Converting "$f" to ""${f%.png}.pdf" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment