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