Browse our Products

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.

 

GroupDocs.Parser for .NET 24.5 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 210.16MB
  • Date Added:
  • 31/5/2024

Description

This ZIP file contains only the GroupDocs.Parser for .NET 24.5 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Parser for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

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.

JSON and XML Export

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*

Public API and Backward Incompatible Changes

Added API Members

  • Added ExporterBase public class.
  • Added JsonExporter public class.
  • Added XmlExporter public class.
  • Added Extensions public class.

Updated API Members

  • The Cells property has been added to the PageTableArea public class.

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.

 English