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.
Deliver enriched performance and reliability for your end users working with barcode generation and recognition using Aspose.BarCode for Node.js via Java 24.8 release. We have improved QR recognition and fixed AustraliaPost generation in this release.
With the latest Node.js barcode API release, we have updated the HighQuality preset implementation for QR recognition to ascertain precise and fast barcode reading in various scenarios.
HighQuality
Code sample:
example1() { let filePath = ReleaseNotes.folder + "qr.png"; ta.checkPath(filePath); let reader = new BarCodeReader(filePath, null,DecodeType.QR); reader.setQualitySettings(QualitySettings.getHighQuality()); let results = reader.readBarCodes(); for (const result of results) { console.log(result.getCodeText()); } }
Source*
AustraliaPost
The issue where the AustralianPostShortBarHeight parameter was ignored has now been resolved, and it enables accurate barcode generation for Australian postal codes.
AustralianPostShortBarHeight
example2() { let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "6212345678AP"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C_TABLE); generator.getParameters().getBarcode().getBarHeight().setPixels(100); generator.getParameters().getBarcode().getAustralianPost().getAustralianPostShortBarHeight().setPixels(10); generator.getParameters().getBarcode().getPadding().getLeft().setPixels(10); generator.getParameters().getBarcode().getPadding().getTop().setPixels(10); generator.getParameters().getBarcode().getPadding().getRight().setPixels(10); generator.getParameters().getBarcode().getPadding().getBottom().setPixels(10); let imagePath = ReleaseNotes.folder + "AustraliaPost-Nodejs.png"; generator.save(imagePath, BarcodeImageFormat.PNG) }
DataMatrix
The SpecificParametersUI.DataMatrix() method in Aspose.BarCode for Node.js via Java 24.8 now correctly returns DataMatrixParametersUI.
SpecificParametersUI.DataMatrix()
DataMatrixParametersUI
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.8 Release Notes.