Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Glad it worked for you! – halfer Mar 10 '12 at 19:43

2 Answers

up vote 11 down vote accepted

Inkscape will do this:

inkscape \
    --export-png=out.png --export-dpi=200 \
    --export-background-opacity=0 --without-gui in.svg
share|improve this answer
Thanks for the +1... I'm not sure why I got the downvote :) – halfer Aug 7 '12 at 9:33

Actually, reading imagemagick documentation:

-antialias

Enable/Disable of the rendering of anti-aliasing pixels when drawing fonts and lines. By default, objects (e.g. text, lines, polygons, etc.) are antialiased when drawn. Use +antialias to disable the addition of antialiasing edge pixels. This will then reduce the
number of colors added to an image to just the colors being directly drawn. That is, no mixed >colors are added when drawing such objects.

the +antialias will indeed disable antialiasing.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.