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.8

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 15.66MB
  • Date Added:
  • 26/8/2024

Description

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

File Details

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.

Empowered QR Recognition

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.

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 Generation Fix

The issue where the AustralianPostShortBarHeight parameter was ignored has now been resolved, and it enables accurate barcode generation for Australian postal codes.

Code sample:


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

Source*

DataMatrix Parameters Update

The SpecificParametersUI.DataMatrix() method in Aspose.BarCode for Node.js via Java 24.8 now correctly returns 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.

 English