Convert SVG to transparent PNG with antialiasing, using ImageMagick
I want to convert SVG images to PNG files with transparent background and anti-aliased edges (using semi-transparent pixels). Unfortunately I can’t get ImageMagick to do the anti-aliasing, the edges always look terrible. Here’s what I tried: convert +antialias -background transparent in.svg -resize 25×25 out.png Any ideas or a different command line tool I could use? … Read more