Skip to content

Instantly share code, notes, and snippets.

@eugenehp
Created June 9, 2018 13:12
Show Gist options
  • Save eugenehp/96d2c8144f873b2c18bd17c9f4b9954e to your computer and use it in GitHub Desktop.
Save eugenehp/96d2c8144f873b2c18bd17c9f4b9954e to your computer and use it in GitHub Desktop.
Convert SVG files to PNG files
for filename in *.svg; do
basename="${filename%.*}"
convert -density 1200 -resize 512x512 "$filename" "$basename".png
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment