Browse our Products

Aspose.BarCode for .NET 25.8 Release Notes

All Changes

KeySummaryCategory
BARCODENET-39348Improve Pdf417 recognition performance on mobile devicesEnhancement
BARCODENET-39007Optimize Han Xin recognition speedEnhancement

Public API changes and backwards compatibility

Pdf417 recognition performance

Pdf417 barcode recognition performance has been enhanced, with better results on mobile devices and in document processing scenarios.

using (BarCodeReader reader = new BarCodeReader("Pdf417.png", DecodeType.Pdf417, DecodeType.CompactPdf417))
{
    foreach (BarCodeResult result in reader.ReadBarCodes())
        Console.WriteLine(result.CodeText);
}

Han Xin code recognition performance

Han Xin code ecognition performance has been refined, leading to more consistent decoding.

using (BarCodeReader reader = new BarCodeReader("HanXinCode.png", DecodeType.HanXin))
{
    foreach (BarCodeResult result in reader.ReadBarCodes())
        Console.WriteLine(result.CodeText);
}