PNG JPG BMP TIFF SVG
Aspose.BarCode  for PHP via Java
Code 16K

Generate Code 16K Labels with PHP via Java

Create Code 16K barcode in PHP using server-side Aspose.BarCode for PHP via Java API.

How to Generate Code 16K barcode Using PHP via Java

Generate customized Code 16K 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 Code 16K barcode in PHP

Aspose.BarCode makes it easy for developers to create Code 16K barcode images with few lines of code.

  • Create a new instance of BarCodeGenerator class
  • Specify Code 16K 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 Code 16K barcode 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::Code16K, "");

// 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