vote up 0 vote down star

I need to convert SVG content to a raster image (preferably a PNG) in a RoR app. Is there a direct method that doesn't involve ImageMagick, or is this the de facto standard?

flag

2 Answers

vote up 1 vote down check

Generally, ImageMagick is considered the de facto standard. It's been tied into so many languages by now that it shouldn't even be a hassle to use. The ruby binding seems to be called rmagick.

That said, you could of course load and render the SVG yourself, perhaps with the ruby bindings for librsvg (never used that successfully though), and using ruby-libpng to store it as a png.

What's an RoR app though?

link|flag
RoR - Ruby on Rails – rslite Jul 28 at 8:21
doh... I guess I should've known that :) – roe Jul 28 at 8:51
vote up 0 vote down

some bash scripting from this forum:

using rsvg:

$ cd your-directory-with-the-svgs/
$ for i in *; do rsvg-convert $i -o echo $i | sed -e 's/svg$/png/'; done

using inkscape:

$ cd your-directory-with-the-svgs/
$ for i in *; do inkscape $i --export-png=echo $i | sed -e 's/svg$/png/'; done

link|flag

Your Answer

Get an OpenID
or

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