using System.Drawing.Imaging;
public static void Main()
var svgDocument = Svg.SvgDocument.Open(@"C:\temp\sample.svg");
svgDocument.ShapeRendering = SvgShapeRendering.Auto;
Bitmap bmp = svgDocument.Draw(12,12);
bmp.Save(@"c:\temp\sample.png", ImageFormat.Png);