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.
This release of GroupDocs.Parser for .NET 24.4 (MSI) offers refined barcode parsing capabilities to Windows developers. This release introduces custom recognition quality and extracting information even from damaged or distorted barcodes.
Customize recognition quality options for barcode extraction with this version of the .NET text extraction API and balance speed and accuracy within your apps. Please check out the code sample shared below to learn how to use this feature in C#.
// Create an instance of Parser class using (Parser parser = new Parser(Constants.SampleCorruptedBarcodes)) { // 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 // The full constructor is used to set AllowIncorrectBarcodes property BarcodeOptions options = new BarcodeOptions(null, QualityMode.Low, QualityMode.Low, null, true, "pdf417", "QR"); // Extract barcodes from the document. IEnumerable<PageBarcodeArea> barcodes = parser.GetBarcodes(options); // Iterate over barcodes foreach (PageBarcodeArea barcode in barcodes) { // Print the page index Console.WriteLine("Page: " + barcode.Page.Index.ToString()); // Print the barcode value Console.WriteLine("Value: " + barcode.Value); // Print the confidence: Console.WriteLine("Confidence: " + barcode.Confidence.ToString()); } }
Source*
Extract information from damaged or distorted barcodes for improved data retrieval with the latest release of GroupDocs.Parser for .NET. The following code example illustrates how to read damaged barcodes 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); // Iterate over barcodes foreach (PageBarcodeArea barcode in barcodes) { // Print the page index Console.WriteLine("Page: " + barcode.Page.Index.ToString()); // Print the barcode value Console.WriteLine("Value: " + barcode.Value); } }
GetBarcodes(BarcodeOptions)
GetBarcodes(int, BarcodeOptions)
PageBarcodeArea(string, string, int, double, Page, Rectangle)
Confidence
Angle
BarcodeOptions
QualityMode
GetBarcodes(PageAreaOptions)
GetBarcodes(int, PageAreaOptions)
PageBarcodeArea(string, string, Page, Rectangle)
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Parser for .NET 24.4 Release Notes.