Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Set Height of the Bars using Aspose.Barcode Java for PHP, simply invoke SetBarsHeight module. Here you can see example code.
PHPCode
$bb = new BarCodeBuilder();
\# Set up code text (data to be encoded)
$bb->setCodeText("1234567");
\# Set the symbology type to Code128
$symbology=new Symbology();
$bb->setSymbologyType($symbology->Code128);
\# Set the bar height to be 3 milimeter
$bb->setBarHeight(3.0);
$bb->save($dataDir . "barcode3.jpg");
\# Set the bar height to be 7 milimeter
$bb->setBarHeight(7.0);
$bb->save($dataDir . "barcode7.jpg");
\# Set the bar height to be 11 milimeter
$bb->setBarHeight(11.0);
$bb->save($dataDir . "barcode11.jpg");
\# Display Status.
print "Barcode with different heights has been created successfully.".PHP_EOL;
Download Set Height of the Bars (Aspose.BarCode) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.