Created
May 1, 2014 21:05
-
-
Save dustintheweb/cb8b662ba3357e5b5fb5 to your computer and use it in GitHub Desktop.
Batch Convert SVG to PNG (transparent/ alpha) using ImageMagick
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
// 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