tags:

views:

970

answers:

5

Hi,

This might not seem to be strictly programming related question, but i am looking for this for sometime now without any success hence asked here.

Is there any image processing tool to convert *.svg files(Scalable vector graphics) files to any other common/widely used image format such as jpeg/gif/bmp etc..

I have a svg file which i need to edit. without knowing or editing the XML like markup commands which were used to make this svg in firs place.

Thank you.

-AD.

+3  A: 

ImageMagick works everywhere and with (practically) every format.

eduffy
+2  A: 

Apache Batik is one Java library for this task, particularly the transcoder API.

If you prefer a tool to a library, Inkscape has a batch export feature.

Pete Kirkham
+2  A: 

Have you tried Inkscape?

luiscubal
+4  A: 

When it comes to image conversion there's definitely one absolute answer: ImageMagick. Take a look at their docs.

Grzegorz Oledzki
A: 

Inkscape is cool for this, Batik, too, but ImageMagick won't work on Windows, if you don't do some magic (haha) and tell it where GhostScript lives.

Alternatives are Adobe Illustrator (they still have almost complete SVG support) or GIMP (yes, it can import SVGs), the latter, if you want raster graphics.

Cheers,

Boldewyn