Set Code Text for Barcode in PHP
Contents
[
Hide
]
Aspose.BarCode - Set Code Text for Barcode
To Set Code Text for Barcode using Aspose.Barcode Java for PHP, call set_codetext method of CodeText module. Here you can see example code.
PHPCode
public static function set_codetext($dataDir=null){
\# Instantiate barcode object
$bb = new BarCodeBuilder();
\# Set the code text for the barcode
$bb->setCodeText("Aspose-123");
\# Set the symbology type to Code128
$symbology=new Symbology();
$bb->setSymbologyType($symbology->Code128);
\# Set the width of the bars to 0.5 millimeter
$bb->setxDimension(0.5);
\# save the barcode image to file
$bb->save($dataDir . "codetext.out.jpg");
\# Print message
print "Barcode image generated successfully.".PHP_EOL;
}
Download Running Code
Download Set Code Text for Barcode (Aspose.BarCode) from any of the below mentioned social coding sites: