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 (DLLs Only)

Download  Support Forum 

File Details

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

Description

It contains Aspose.BarCode for .NET 24.6 (DLLs-only) release.

File Details

Develop high-performance, cross-platform barcode recognition and generation solutions in C# and VB.NET with Aspose.BarCode for .NET 24.6 (DLLs-only package).

Robust Barcode Generation with SVG 2.0 Color Support

Utilize the power of SVG 2.0 with support for HSLA and RGBA color schemes within your barcode apps with the latest C# barcode API release. This feature offers greater flexibility in barcode appearance, as illustrated in the following code examples:


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*

Simplified Code39 and Code93 API Interactions

Aspose.BarCode for .NET now aligns with ISO/IEC 16388 standards, streamlining API usage for Code39 and Code93 barcode generation within your C# barcode processing applications.

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