Browse our Products
Aspose.BarCode for .NET 24.9 Release Notes
This article contains release notes information for Aspose.BarCode for .NET 24.9 (September 2024).
All Changes
Key | Summary | Category |
---|---|---|
BARCODENET-39101 | Sorting algirithm in QRTargetDetector throws with Exception in Java | Bug |
BARCODENET-39121 | Fix AutoSizeMode | Enhancement |
Public API changes and backwards compatibility
QR, MicroQR and RectMicroQR barcodes recognition
QR, Micro QR and Rec Micro QR barcode targets detection is thread-safe with the improvement. Previously on some multicore systems the barcode engine demonstrated unpredictable results.
using (BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.QR, "Aspose"))
using (BarCodeReader reader = new BarCodeReader(gen.GenerateBarCodeImage(), DecodeType.QR))
foreach (BarCodeResult result in reader.ReadBarCodes())
Console.WriteLine(result.CodeText);