Drawing SVG in .NET/C#? [closed]

Check out the SVG framework in C# and an SVG-GDI+ bridge project.

From the above web page…

The SvgGdi bridge is a set of classes
that use SvgNet to translate between
SVG and GDI+. What this means is that
any code that uses GDI+ to draw
graphics can easily output SVG as
well, simply by plugging in the
SvgGraphics object. This object is
exactly the same as a regular .NET
Graphics object, but creates an SVG
tree. Even things like hatched fills
and line anchors are implemented.

Leave a Comment