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 (MSI) allows exporting extracted data to JSON and XML formats within your .NET text extraction apps. This enhancement significantly expands the capabilities of your apps and enables parsed data integration.
Developers can convert extracted data into JSON or XML files for effortless consumption by different systems. 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.