Free tools 

Welcome to the CENTREL Solutions tools page.
Here you can find our free tools and code samples.

If you have any questions, please contact tools@centrel-solutions.com.

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 >