Browse our Products

Aspose.BarCode for PHP via Java 25.3

All Changes

KeySummaryCategory
BARCODENET-37360Add QualitySettings support to PBase processorEnhancement
BARCODENET-39209Make generation of BarCodeImageFormat.Pdf format system independentBug
BARCODEPHP-802Enhance BarCodeReader to support more codecsEnhancement

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);
 }