Browse our Products
Aspose.BarCode for Reporting Services 18.1 Release Notes
Key | Summary | Category |
---|---|---|
BARCODENET-36647 | Add support to save barcode in SVG | Feature |
BARCODENET-34191 | Add support to save barcode in any Vector image format | Feature |
BARCODENET-36783 | Support to generate and recognize EPC QR coded barcode | Feature |
BARCODENET-36753 | Improved drawing text when font is specified | Enhancement |
BARCODENET-36755 | Mark old useless BarCodeReader API as obsolete | Enhancement |
BARCODENET-36760 | Barcode is rendered without text | Bug |
BARCODENET-36750 | Incorrectly saving a picture to a file | Bug |
BARCODENET-36738 | Property CodeLocation works incorrectly | Bug |
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)) {
} |
---|