Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
This release of Aspose.BarCode for .NET 24.6 (MSI installer) brings exciting enhancements for developers working with barcodes in their .NET applications running on the Windows platform.
.NET developers can leverage the power of SVG 2.0 with support for HSLA and RGBA color schemes in the latest C# barcode API release, offering greater flexibility in barcode appearance. Please check out the following code examples for more references:
string codeText = @"ABCDEFGHIJKLMNOPQRSTUVWXYZ"; using (var gen = new Aspose.BarCode.Generation.BarcodeGenerator(EncodeTypes.Code128, codeText)) { gen.Parameters.Barcode.BarColor = Color.FromArgb(unchecked((int)0xBBFF5511)); gen.Parameters.Image.Svg.SvgColorMode = SvgColorMode.HSLA; SvgUtils.CompareSvgHelper(gen, Folder, "Hsla.svg"); }
Source*
string codeText = @"ABCDEFGHIJKLMNOPQRSTUVWXYZ"; using (var gen = new Aspose.BarCode.Generation.BarcodeGenerator(EncodeTypes.Code128, codeText)) { var hslaColor = new HslaColor(30, 50, 70, 0.8f); var color = HslaColor.ConvertHslaToRgba(hslaColor); gen.Parameters.Barcode.BarColor = color; gen.Parameters.Image.Svg.SvgColorMode = SvgColorMode.HSLA; SvgUtils.CompareSvgHelper(gen, Folder, "Hsla_from_hsla.svg"); }
This version of Aspose.BarCode for .NET aligns with ISO/IEC 16388 standards, simplifying API usage for Code39 and Code93 barcode generation within your barcode processing solutions.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for .NET 24.6 Release Notes.