Converting SVG -> PNG with transparent backgrounds
Tuesday, July 29th, 2008I’ve tried to convert an SVG image with transparent background to a PNG using the Image Magick’s convert command line tool. The result was an image with a white filled background.
After struggling with Yahoo search for about half an hour, I came across to this simple and useful tip:
convert -background none folder.svg folder.png
That’s it! No more white background
Enjoy