views:

27

answers:

1

Is there an easy way to render an SVG-image resulting in an image-object or a bitmap byte-array (Not saving the file in another type but just put it as an image in main memory)?

+2  A: 

You could have a look at Mono.Cairo, which is a low-level vector library for Mono. Here is an example for loading images, including SVG.

tomlog