| 12345678910111213141516171819202122232425 |
- <?php
- /**
- * reader.php
- *
- * @created 25.04.2022
- * @author smiley <smiley@chillerlan.net>
- * @copyright 2022 smiley
- * @license MIT
- */
- namespace chillerlan\QRCodeExamples;
- use chillerlan\QRCode\{QRCode, QROptions};
- require_once __DIR__.'/../vendor/autoload.php';
- // please excuse the IDE yelling https://youtrack.jetbrains.com/issue/WI-66549
- $options = new QROptions;
- $options->readerUseImagickIfAvailable = false;
- $options->readerGrayscale = true;
- $options->readerIncreaseContrast = true;
- $result = (new QRCode($options))->readFromFile(__DIR__.'/../.github/images/example_image.png');
- var_dump($result);
|