Browse our Products

Aspose.BarCode for .NET 17.12 Release Notes

KeySummaryCategory
BARCODENET-36710Support to set QR version while generating barcode imageFeature
BARCODENET-36279Improve speed and quality of the new 1D recognition algorithmEnhancement
BARCODENET-36740Fake recognition of OneD barcodesBug
BARCODENET-36733Setting License in Aspose.BarCode throws exceptionBug
BARCODENET-36726Aspose.BarCode throw exception when used in multi threadingBug
BARCODENET-36722Setting License in Aspose.BarCode takes too longBug
BARCODENET-36690Unable to recognize DatabarStacked barcode with big white spaceBug
BARCODENET-36689Aspose.Barcode is unable to recognize Code128 barcode from JPG imageBug
BARCODENET-36630Unable to recognize barcode from a TIFF imageBug
BARCODENET-36465Datamatrix barcode is generated incorrectlyBug
BARCODENET-34036Performance issue while reading PDF417 and Code128 codesBug
BARCODENET-34035Performance issue while reading PDF417 and Code128 codesBug
BARCODENET-34034Performance issue while reading PDF417 and Code128 codesBug
BARCODENET-34033Performance issue while reading PDF417 and Code128 codesBug
BARCODENET-36627Performing BarCode recognition in C++ application is taking long timeBug
BARCODENET-33832Can’t recognize code128 from a tif fileBug

Public API and Backward Incompatible Changes

This section lists public API changes that were introduced in Aspose.BarCode for .NET 17.12. It includes not only new and obsoleted public methods, but also a description of any changes in the behavior behind the scenes in Aspose.BarCode for .NET which may affect existing code. Any behavior introduced that could be seen as a regression and modifies existing behavior is especially important and is documented here.

New public value QRVersion has been added to the BarCodeBuilder for selecting concrete QR version.

BARCODENET-36710 Support to set QR version while generating barcode image

Code sample:

 using (BarCodeBuilder builder = new BarCodeBuilder())

{

    builder.CodeText = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

    builder.EncodeType = EncodeTypes.QR;

    builder.QRErrorLevel = QRErrorLevel.LevelQ;

    builder.QRVersion = QRVersion.Version10;

    builder.Save("qr_version10_errorQ.png");

}