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

Generate Australia Post Labels with PHP via Java

Create Australia Post barcode and Australia Post eParcel in PHP using server-side Aspose.BarCode for PHP via Java API.

How to Generate Australia Post barcode Using PHP via Java

Generate customized Australia Post barcode barcodes within PHP applications by means of the Aspose.BarCode for PHP via Java, an efficient, scalable, and user-friendly barcode API intended for Java-based platforms. To launch the barcode library, download the latest version from the Aspose releases portal. Otherwise, get the aspose/barcode package from Packagist and then embed it into your PHP projects using composer:

Command

{    
    "require": {        
        "asposebarcode/aspose_barcode_java_for_php": "dev-master"    
    }
}

Steps to Generate Australia Post barcode in PHP

Aspose.BarCode makes it easy for developers to create Australia Post barcode images with few lines of code.

  • Create a new instance of BarCodeGenerator class
  • Specify Australia Post barcode and other relevant barcode types as the EncodeTypes parameter
  • Set barcode text as the second parameter
  • Specify image dimensions and location if needed
  • Call the BarCodeGenerator.save method to obtain the Australia Post barcode and Australia Post eParcel image in the required format

System Requirements

Aspose barcode APIs are supported by all major platforms and operating systems. Before executing the code sample below, please check that you have the following prerequisites enabled in your system.

  • Microsoft Windows, Linux, or any OS compatible with the PHP developement environments
  • PHP/Java Bridge installed
  • FastCGI and Tomcat Server 8.0 or above

Code to be executed - PHP


// Create an instane of the BarcodeGenerator class
$generator = new BarcodeGenerator(EncodeTypes::AustraliaPost, "");

// Specify the X-dimension 
// the smallest width of the unit of BarCode bars or spaces
$generator->getParameters()->getBarcode()->getXDimension()->setMillimeteres(2);

// Set codetext position
$generator->getParameters()->getCodeTextParameters()->setLocation(CodeLocation::Below);

// Generate and save image
$generator->save("example.png", BarCodeImageFormat::PNG);
Generation result