View and Convert SVG files
View and Convert SVG files in C#
GroupDocs.Viewer for .NET (which is a part of Conholdate.Total for .NET) provides facility to view and convert SVG files. SVG is a Flat Scalable Vector Graphics format in uncompressed XML.
You can open these files with Adobe Illustrator, Corel PaintShop Pro, Serif DrawPlus, and Inkscape.
If you need to view an SVG(SVGZ) file in a browser or in a standard image or PDF viewer application, you have a choice to convert it to HTML, JPEG, PNG PDF format with GroupDocs.Viewer for .NET.
How to convert SVG/SVGZ files
Convert SVG/SVGZ to HTML
To convert SVG/SVGZ files to HTML with GroupDocs.Viewer for .NET use following code:
using (Viewer viewer = new Viewer("sample.svgz"))
{
HtmlViewOptions options = HtmlViewOptions.ForEmbeddedResources("output.html");
viewer.View(options);
}
The following screenshot shows the output HTML file opened in a browser.
Convert SVG/SVGZ to JPG
To convert SVG/SVGZ files to JPG with GroupDocs.Viewer for .NET use following code:
using (Viewer viewer = new Viewer("sample.svgz"))
{
JpgViewOptions options = new JpgViewOptions("output.jpg");
viewer.View(options);
}
The following screenshot shows the output JPG file opened in a Windows Photo Viewer application.
Convert SVG/SVGZ to PNG
To convert PLT/HPG files to PNG with GroupDocs.Viewer for .NET use following code:
using (Viewer viewer = new Viewer("sample.svgz"))
{
PngViewOptions options = new PngViewOptions("output.png");
viewer.View(options);
}
The following screenshot shows the output PNG file opened in a Windows Photo Viewer application.
Convert SVG/SVGZ to PDF
To convert SVGZ files to PDF with GroupDocs.Viewer for .NET use following code:
using (Viewer viewer = new Viewer("sample.svgz"))
{
PdfViewOptions options = new PdfViewOptions("output.pdf");
viewer.View(options);
}
The following screenshot shows the output PDF file opened in an Acrobat Reader.