Browse our Products

Aspose.BarCode for .NET 24.9 Release Notes

All Changes

KeySummaryCategory
BARCODENET-39101Sorting algirithm in QRTargetDetector throws with Exception in JavaBug
BARCODENET-39121Fix AutoSizeModeEnhancement

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);