Browse our Products

Aspose.BarCode for Reporting Services 17.12 Release Notes

KeySummaryCategory
BARCODENET-36710Support to set QR version while generating barcode imageFeature
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

Public API and Backward Incompatible Changes

This section lists public API changes that were introduced in Aspose.BarCode for SSRS 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");

}