Hii Team,
When i am converting Word to FixedHTML then image is rendered as Svg. I wan to rendered this svg as a image base64.
Snippet:
Aspose.Words.Saving.HtmlFixedSaveOptions options = new HtmlFixedSaveOptions();
options.ExportEmbeddedImages = true;
options.ExportEmbeddedSvg = true;
Document doc = new Document(@“C:\ChartTest1.docx”);
doc.Save(@“C:\ChartTest1.html”, options);
Attachments :
Files.zip (71.0 KB)