Read the complete article on how to convert a PDF to XML in C# .NET: https://blog.aspose.com/2022/06/07/convert-pdf-to-xml-in-csharp/
Last active
June 8, 2022 04:53
-
-
Save aspose-com-gists/19c1f480f90973eb5f097b3963ca169d to your computer and use it in GitHub Desktop.
Convert PDF Files to XML in C# .NET
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load PDF document | |
var document = new Document("candy.pdf"); | |
// Save document in MobiXML format | |
document.Save("standard-xml-output.xml", SaveFormat.MobiXml); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load PDF document | |
var document = new Document("candy.pdf"); | |
// Save document in PdfXML format | |
document.Save("standard-xml-output.xml", SaveFormat.PdfXml); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment