Examples.zip (586.0 KB)
We are evaluating various aspose products to convert svg to html.
We attempted this in 2 ways, first using the code:
public void ConvertSvgToHtml( string svgFilename, string htmlFilename )
{
…...SVG file using ( SVGDocument document = new SVGDocument( svgFilename...// Render SVG to PDF file document.RenderTo( device ); } } //...