123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
-
- namespace Zxing;
-
- use Zxing\Common\HybridBinarizer;
- use Zxing\Qrcode\QRCodeReader;
-
- final class QrReader
- {
- public const SOURCE_TYPE_FILE = 'file';
- public const SOURCE_TYPE_BLOB = 'blob';
- public const SOURCE_TYPE_RESOURCE = 'resource';
-
- private readonly \Zxing\BinaryBitmap $bitmap;
- private readonly \Zxing\Qrcode\QRCodeReader $reader;
- private \Zxing\Result|bool|null $result = null;
-
- public function __construct($imgSource, $sourceType = QrReader::SOURCE_TYPE_FILE, $useImagickIfAvailable = true)
- {
- if (!in_array($sourceType, [
- self::SOURCE_TYPE_FILE,
- self::SOURCE_TYPE_BLOB,
- self::SOURCE_TYPE_RESOURCE,
- ], true)) {
- throw new \InvalidArgumentException('Invalid image source.');
- }
- $im = null;
- switch ($sourceType) {
- case QrReader::SOURCE_TYPE_FILE:
- if ($useImagickIfAvailable && extension_loaded('imagick')) {
- $im = new \Imagick();
- $im->readImage($imgSource);
- } else {
- $image = file_get_contents($imgSource);
- $im = imagecreatefromstring($image);
- }
- break;
-
- case QrReader::SOURCE_TYPE_BLOB:
- if ($useImagickIfAvailable && extension_loaded('imagick')) {
- $im = new \Imagick();
- $im->readImageBlob($imgSource);
- } else {
- $im = imagecreatefromstring($imgSource);
- }
- break;
-
- case QrReader::SOURCE_TYPE_RESOURCE:
- $im = $imgSource;
- if ($useImagickIfAvailable && extension_loaded('imagick')) {
- $useImagickIfAvailable = true;
- } else {
- $useImagickIfAvailable = false;
- }
- break;
- }
- if ($useImagickIfAvailable && extension_loaded('imagick')) {
- if (!$im instanceof \Imagick) {
- throw new \InvalidArgumentException('Invalid image source.');
- }
- $width = $im->getImageWidth();
- $height = $im->getImageHeight();
- $source = new IMagickLuminanceSource($im, $width, $height);
- } else {
- if (!$im instanceof \GdImage && !is_object($im)) {
- throw new \InvalidArgumentException('Invalid image source.');
- }
- $width = imagesx($im);
- $height = imagesy($im);
- $source = new GDLuminanceSource($im, $width, $height);
- }
- $histo = new HybridBinarizer($source);
- $this->bitmap = new BinaryBitmap($histo);
- $this->reader = new QRCodeReader();
- }
-
- public function decode($hints = null): void
- {
- try {
- $this->result = $this->reader->decode($this->bitmap, $hints);
- } catch (NotFoundException|FormatException|ChecksumException) {
- $this->result = false;
- }
- }
-
- public function text($hints = null)
- {
- $this->decode($hints);
-
- if ($this->result !== false && method_exists($this->result, 'toString')) {
- return $this->result->toString();
- }
-
- return $this->result;
- }
-
- public function getResult()
- {
- return $this->result;
- }
- }
|