Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
GroupDocs.Parser for .NET 24.5 (DLLs-only) equips .NET developers to extract valuable data from documents and effortlessly transform it into JSON or XML for seamless integration.
Expand data utilization possibilities by exporting extracted information in popular JSON and XML formats with the newest .NET document parsing API. Please check out the code sample given below to learn how to parse documents to XML and JSON files in C#.
// Create an instance of Parser class using (Parser parser = new Parser(Constants.SamplePdfWithBarcodes)) { // Check if the document supports barcodes extraction if (!parser.Features.Barcodes) { Console.WriteLine("Document doesn't support barcodes extraction."); return; } // Create the options which are used for barcodes extraction BarcodeOptions options = new BarcodeOptions(QualityMode.Low, QualityMode.Low, "QR"); // Extract barcodes from the document IEnumerable<PageBarcodeArea> barcodes = parser.GetBarcodes(options); // Export data to "data.json" file barcodes.ExportAsJson("data.json"); }
Source*
ExporterBase
JsonExporter
XmlExporter
Extensions
Cells
PageTableArea
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Parser for .NET 24.5 Release Notes.