Browse our Products
Aspose.BarCode for PHP via Java 25.3
This page contains release notes information for Aspose.BarCode for PHP via Java 25.3.
All Changes
Key | Summary | Category |
---|---|---|
BARCODENET-37360 | Add QualitySettings support to PBase processor | Enhancement |
BARCODENET-39209 | Make generation of BarCodeImageFormat.Pdf format system independent | Bug |
BARCODEPHP-802 | Enhance BarCodeReader to support more codecs | Enhancement |
Public API changes and backwards compatibility
Recognition quality and speed of 1D processors
The recognition quality and speed of PBase processors have been improved. These improvements apply to the following symbologies: PatchCode, Pharmacode. The recognition speed of most 1D processors has been improved with updates to the 1D recognition engine.
Barcode region detection
Fixed a bug with incorrect barcode region detection when the Image property RotateFlipType changes the picture orientation.
PDF encoder
Fixed a bug with differences in created PDF files that depended on system localization.
public function generatePDF()
{
$fullPath = self::folderPath . DIRECTORY_SEPARATOR . "code128.pdf";
$generator1 = new BarcodeGenerator(EncodeTypes::CODE_128, "Aspose");
$generator1->save($fullPath, BarCodeImageFormat::PDF);
}