Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Control Barcode Image Quality using Aspose.Barcode Java for PHP, simply invoke SetBarcodeImageQuality module. Here you can see example code.
PHPCode
# Instantiate barcode object
$bb = new BarCodeBuilder();
\# Set the code text of the barcode
$bb->setCodeText("12345678");
\# Set the graphics drawing hint to be Anti Alias
$imageQualityMode=new ImageQualityMode();
$bb->setImageQuality($imageQualityMode->AntiAlias);
\# Set the symbology type to code39
$symbology=new Symbology();
$bb->setSymbologyType($symbology->Code39Extended);
$bb->save($dataDir . "SetBarcodeImageQuality.jpg");
\# Display Status.
print "Set Barcode Image Quality, please check the output file.".PHP_EOL;
Download Control Barcode Image Quality (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.