A library to convert svg to images?

I am looking for a library written either in C or C++ which can convert the svg to image formats.

I came across inkscape which converts svg to images. but to use this I must run inkscape as a process and this not the solution I am after.

I need the library to run on both Windows and Linux as well.

I am after a C or C++ library. If it was with Java I would have used Apache's Batik rasterizer.


The canonical library to render SVG is librsvg. You may want to check that out.


对于图像编辑,您可以使用ImageMagick,它非常流行,它支持多种类型的图像。


I would recommend leadtools, as they support many vector formats and many programming languages and it can be easily convert vector format to the most known raster format.

As far as I know they support Windows, not sure about Linux.

You can tell by visiting their website.

链接地址: http://www.djcxy.com/p/56940.html

上一篇: 任何路线从动画设计到HTML5的动画?

下一篇: 将svg转换为图像的库?