Skip to content

Instantly share code, notes, and snippets.

@maxxcrawford
Forked from dustintheweb/convert-svg-png
Created May 1, 2014 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxxcrawford/11738b29057b8707657e to your computer and use it in GitHub Desktop.
Save maxxcrawford/11738b29057b8707657e to your computer and use it in GitHub Desktop.
// ImageMagick - Convert SVG to PNG w/ transparency
//
// - open terminal
//
// - confirm you have imagemagick installed
// --- type: convert -v
//
// - cd to folder
//
// - single file
// --- type: convert -background none filename.svg filename.png;
//
// - batch folder
// --- type: mogrify -background none -format png *.svg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment