Created
March 5, 2018 10:35
-
-
Save morgangiraud/f62de9810c9154645dcc18b38929bb5a to your computer and use it in GitHub Desktop.
convert SVG to PNG in current folder - one liner
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 f in *.svg; do convert -density 1200 -resize 1000x1000 $f ${f%%.*}.png;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment