Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
With Aspose.BarCode for PHP via Java 24.8, you can experience enriched QR code scanning accuracy with the refined HighQuality preset for the QR recognition engine.
HighQuality
Code sample:
public function example1() { $filePath = self::folder . "qr.png"; prt_mess(check_is_exists($filePath)); $reader = new BarCodeReader($filePath, null,DecodeType::QR); $reader->setQualitySettings($reader->getQualitySettings()->getHighQuality()); foreach ($reader->readBarCodes() as $result) { echo $result->getCodeText() . PHP_EOL; } }
Source*
The latest PHP barcode recognition and generation API delivers a corrected implementation of the AustralianPostShortBarHeight parameter to ensure precise generation of Australia Post barcodes, as illustrated in the following code example.
AustralianPostShortBarHeight
public function example2() { $generator = new BarcodeGenerator(EncodeTypes::AUSTRALIA_POST, "6212345678AP"); $generator->getParameters()->getBarcode()->getAustralianPost()->setAustralianPostEncodingTable(CustomerInformationInterpretingType::C_TABLE); $generator->getParameters()->getBarcode()->getBarHeight()->setPixels(100); $generator->getParameters()->getBarcode()->getAustralianPost()->getAustralianPostShortBarHeight()->setPixels(10); $generator->getParameters()->getBarcode()->getPadding()->getLeft()->setPixels(10); $generator->getParameters()->getBarcode()->getPadding()->getTop()->setPixels(10); $generator->getParameters()->getBarcode()->getPadding()->getRight()->setPixels(10); $generator->getParameters()->getBarcode()->getPadding()->getBottom()->setPixels(10); $generator->save(self::folder . "AustraliaPost-PHP.png", BarCodeImageFormat::PNG); }
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for PHP via Java 24.8 Release Notes.