I want to convert SVG images to PNG files with transparent background and antialiased edges (using semi-transparent pixels). Unfortunately I can't get imagemagick to do the antialiasing, the edges always look terrible. Here's what I tried:
convert +antialias -background transparent in.svg -resize 25x25 out.png
Any ideas or a different command line tool I could use?