Since SVG is basically an XML document, you can implement the drawing yourself. Check the specifications of the W3C SVG specification . I did this once in order to create SVG signature images, all it took was a couple of hours and firefox to check the generated image.
Of course, this applies if you are generating an image from user input, or if you do not mind spending some time converting from another vector image format.
PS you can create your own wrapper to simulate System.Drawing.Graphics, for example. DrawLine () to add to the internal buffer, etc.
Audrius Oct 06 '09 at 13:19 2009-10-06 13:19
source share