Browse our Products

Aspose.BarCode for Reporting Services 18.1 Release Notes

KeySummaryCategory
BARCODENET-36647Add support to save barcode in SVGFeature
BARCODENET-34191Add support to save barcode in any Vector image formatFeature
BARCODENET-36783Support to generate and recognize EPC QR coded barcodeFeature
BARCODENET-36753Improved drawing text when font is specifiedEnhancement
BARCODENET-36755Mark old useless BarCodeReader API as obsoleteEnhancement
BARCODENET-36760Barcode is rendered without textBug
BARCODENET-36750Incorrectly saving a picture to a fileBug
BARCODENET-36738Property CodeLocation works incorrectlyBug

Public API and Backward Incompatible Changes

This section lists public API changes that were introduced in Aspose.BarCode for SSRS 18.1. 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 Svg has been added to the BarCodeImageFormat emun. It allows to save barcode in the Scalable Vector Graphics (SVG) format. Please note, that evaluation copy of Aspose.BarCode allows to save into SVG only Code39 barcodes.

BARCODENET-36647 Add support to save barcode in SVG. Code sample:

string codeText = @“ABCDEFGHIJKLMNOPQRSTUVWXYZ”;

using (BarCodeBuilder builder = new BarCodeBuilder(codeText, EncodeTypes.Code128))

{

    builder.Save(“code128.svg”, BarCodeImageFormat.Svg);

}