Skip to content

Instantly share code, notes, and snippets.

@gjedeer
Forked from anonymous/eps2png
Created January 20, 2016 12:05
Show Gist options
  • Save gjedeer/6d10e06ef751fb95e929 to your computer and use it in GitHub Desktop.
Save gjedeer/6d10e06ef751fb95e929 to your computer and use it in GitHub Desktop.
Mass convert EPS to PNG files
for i in *.eps; do gs -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dEPSCrop -dAlignToPixels=0 -dGridFitTT=2 -sDEVICE=pngalpha -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -dUseCIEColor -r300x300 "-sOUTPUTFILE=$i.png" "$i"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment