Created
November 9, 2017 11:39
-
-
Save lyashevska/69d01c08ee7fa435be767b17b3c2040b to your computer and use it in GitHub Desktop.
batch conversion of eps to png in bash
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
for f in `ls *.eps`; do | |
convert -density 100 $f -flatten ${f%.*}.png; | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome script to convert eps to png!
Worth mentioning that you need ghostscript and imagemagick installed