SVG to HTML thru aspose?

Is it possible to cast SVG file to Plain HTML by using Aspose?


thanks

R

Hi Raymond,

Aspose.Pdf for .NET supports the feature to load SVG images and save them in either PDF or any other supported format including HTML. Please try using the following code snippet to accomplish your requirement.

[C#]

//open SVG image
Document pdfDocument = new Document("c:/pdftest/Resultant.svg", new SvgLoadOptions());

// save the output in HTML format
pdfDocument.Save("c:/pdftest/Resultant.html", SaveFormat.Html);