Colorize any Part of the Barcode Image in PHP

Aspose.BarCode - Colorize any Part of the Barcode Image

To Colorize any Part of the Barcode Image using Aspose.Barcode Java for PHP, simply invoke SetBarcodeImageColor module. Here you can see example code.

PHPCode

 # Instantiate barcode object

$bb = new BarCodeBuilder();

$color = new Color();

\# Set the background color of the barcode

$bb->setBackColor($color->YELLOW);

\# Set the foreground color of the barcode

$bb->setForeColor($color->BLUE);

\# Set border's color

$bb->setBorderColor($color->RED);

\# Set the code text's color

$bb->setCodeTextColor($color->RED);

\# Caption's color

$bb->getCaptionAbove()->setForeColor($color->darkGray);

$bb->getCaptionBelow()->setForeColor($color->CYAN);

$bb->save($dataDir . "color.jpg");

\# Display Status.

print "Applied color to barcode image, please check the output file.".PHP_EOL;

Download Running Code

Download Colorize any Part of the Barcode Image (Aspose.BarCode) from any of the below mentioned social coding sites: