Browse our Products
Aspose.BarCode for .NET 25.8 Release Notes
This article contains release notes information for Aspose.BarCode for .NET 25.8 (August 2025).
All Changes
Key | Summary | Category |
---|---|---|
BARCODENET-39348 | Improve Pdf417 recognition performance on mobile devices | Enhancement |
BARCODENET-39007 | Optimize Han Xin recognition speed | Enhancement |
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);
}