Browse our Products

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.

 

Aspose.BarCode for .NET 24.6

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 13.87MB
  • Date Added:
  • 20/6/2024

Description

It contains Aspose.BarCode for .NET 24.6 (MSI) release.

File Details

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.

Enhanced Barcode Generation with SVG 2.0 Color Support

.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");
}

Source*

Streamlined Code39 and Code93 API Interaction

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.

 English