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 Node.js via Java 24.7

Download  Support Forum 

File Details

  • Downloads:
  • 2
  • File Size:
  • 15.59MB
  • Date Added:
  • 20/7/2024

Description

Aspose.BarCode for Node.js via Java 24.7 has been released.

File Details

Simplified Code39 and Code93 Handling

Aspose.BarCode for Node.js via Java 24.7 lets developers utilize advanced barcode features by offering merged API options for easier handling of Code39 and Code93 barcodes. With a unified API, it becomes convenient to encode and decode Code39 and Code93 barcodes in your Node.js applications.

Enhanced SVG Color Control

Generate SVG barcodes with a wider range of colors and better control over color schemes using RGB, RGBA, HSL, and HSLA options using the latest Node.js barcode API. The following code examples highlight using different color modes.


example1()
{
    let filePath = "Hsla.svg";
    let codeText = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    let generator = new BarcodeGenerator(EncodeTypes.CODE_128, codeText);
    let color = "#BBFF5511";
    generator.getParameters().getBarcode().setBarColor(color);
    generator.getParameters().getImage().getSvg().setSvgColorMode(SvgColorMode.HSLA);
    generator.save(filePath, BarCodeImageFormat.PNG);
}

Source*

function example2()
{
    let filePath = "Hsla_from_hsla.svg";
    let codeText = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    let generator = new BarcodeGenerator(EncodeTypes.CODE_128, codeText);
    let hslaColor = new HslaColor(30, 50, 70, 0.8);
    let color = HslaColor.convertHslaToRgba(hslaColor);
    generator.getParameters().getBarcode().setBarColor(color);
    generator.getParameters().getImage().getSvg().setSvgColorMode(SvgColorMode.HSLA);
    generator.save(filePath, BarCodeImageFormat.PNG);
}

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for Node.js via Java 24.7 Release Notes.

 English