Convert PDF into HTML or XML

Hi, good morning. Need your help regarding Convert PDF into HTML or XML

Hi Selvam,


Thanks for contacting support.

I am pleased to share that Aspose.Pdf for .NET supports the feature to convert PDF files to HTML format. For further details, please visit Convert PDF file into HTML format

It also supports the feature to convert Tagged PDF files to XML format. While saving the output document, select XML from SaveFormat enumeration.

[C#]

// instantiate Document object<o:p></o:p>

Document doc = new Document("input.pdf");

// save the output as XML file

doc.Save(“output.xml”,SaveFormat.Xml);