DOC to SVG conversion logic

Hi Support,

I want to know how how does Aspose.word convert word document to SVG file dose it do tracking or some other method.

Thanks

This message was posted using Email2Forum by Tilal Ahmad Sana.

Hi there,

Thanks for your inquiry. Please use the following code example to convert Word document to SVG. Please read about SvgSaveOptions from here:
https://reference.aspose.com/words/net/aspose.words.saving/svgsaveoptions/

Document doc = new Document(MyDir + "in.docx");
SvgSaveOptions options = new SvgSaveOptions();
options.PageIndex = 0;
options.PageCount = 1;
doc.Save(MyDir + "Out.svg", options);

bhavanesh:

dose it do tracking or some other method.

Could you please share some detail about this query? Do you want to know the algorithm of conversion?