I'm trying to use ImageMagick to convert SVG to PNG. I'd like to end up using PHP's Imagick to do so but for now I'm just trying to get it to work through convert.
CentOS 6.4
ImageMagick 6.5.4-7 2012-05-07 Q16
SVG is currently being rendered through RSVG when using the convert command as shown in convert -list format but I'd like to use InkScape to do the rendering instead of RSVG
According to http://www.imagemagick.org/script/formats.php:
Inkscape is installed and typing inkscape at command line outputs:ImageMagick utilizes inkscape if its in your execution path otherwise RSVG. If neither are available, ImageMagick reverts to its internal SVG renderer. The default resolution is 90dpi.
but when doingNothing to do!
Code: Select all
convert test.svg test.png
is there something I'm missing to get this to render through inkscape and not RSVG?