PNG JPG BMP TIFF SVG
Aspose.BarCode  for Node.js via Java
Australia Post

Read Australia Post Barcodes with Node.js via Java

Read Australia Post barcode and Australia Post eParcel in JavaScript using server-side Aspose.BarCode for Node.js via Java API

How to Read Australia Post barcode Using Node.js via Java

To recognize Australia Post barcode within Node.js applications, use Aspose.BarCode for Node.js via Java, a robust, versatile, and user-friendly barcode library introduced for Java-based environments. You can load aspose.barcode for Javascript directly from NPM:

Command

  > npm i aspose.barcode

Steps for Scanning Australia Post barcode in JavaScript

Aspose.BarCode allows developers to read Australia Post barcode barcodes from stream or image with few lines of code

  • Create an object of Aspose.BarCode.BarCodeReader class
  • Pass the source file path containing Australia Post barcode as a parameter
  • Set target barcodes types in DecodeType as the second parameter
  • Loop through all detected barcodes
  • Fetch the resulting barcode text using the CodeText property

System Requirements

Aspose APIs are supported on all major platforms and operating systems. Before executing the code sample below, please make sure that your system comply with the following requirements.

  • Microsoft Windows, Linux, or any OS compatible with Node.js
  • Node.js and Node.js/Java Bridge installed
  • Oracle JDK version 7 or above
Ready to recognize Recognizing Drop a file here or click to browse *

* By uploading your files or using the service you agree with our Terms of use and Privacy Policy.

Code to be executed - JavaScript

    
const barcode_ = require("aspose.barcode");
const aspose_barcode = barcode_.AsposeBarcode

let BarCodeReader = aspose_barcode.BarCodeReader;
let QualitySettings = aspose_barcode.QualitySettings;

let reader = new BarCodeReader("<file name>", null, DecodeType.AustraliaPost);
reader.readBarCodes().forEach(function (result, i, results)
{
    console.log(result.getCodeText());
    console.log(result.getCodeTypeName());
});

Recognition result

Other Supported Barcode Recognition Symbologies

Using Node.js via Java, One can also read barcode of different symbologies including the following.

2D:

Linear:

Postal: