Free tools 

View free tools and code samples from CENTREL Solutions below.

Free SVG library for .NET

Our free SVG Library for .NET allows users to generate, load and modify SVG images using languages such as C#.NET.

SvgImage svg = new SvgImage(800, 600);
SvgRectangle rectangle = svg.Elements.AddRectangle(
new RectangleF(10, 10, 100, 20));
svg.SaveAs(
@"D:\data\sample.svg" );

Modify SVG images >