| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- /**
- * Class QRImagick
- *
- * @created 04.07.2018
- * @author smiley <smiley@chillerlan.net>
- * @copyright 2018 smiley
- * @license MIT
- *
- * @noinspection PhpComposerExtensionStubsInspection
- */
- namespace chillerlan\QRCode\Output;
- use chillerlan\QRCode\Data\QRMatrix;
- use chillerlan\Settings\SettingsContainerInterface;
- use Imagick, ImagickDraw, ImagickPixel;
- use function extension_loaded, is_string;
- /**
- * ImageMagick output module (requires ext-imagick)
- *
- * @see http://php.net/manual/book.imagick.php
- * @see http://phpimagick.com
- */
- class QRImagick extends QROutputAbstract{
- protected Imagick $imagick;
- protected ImagickDraw $imagickDraw;
- /**
- * @inheritDoc
- *
- * @throws \chillerlan\QRCode\Output\QRCodeOutputException
- */
- public function __construct(SettingsContainerInterface $options, QRMatrix $matrix){
- if(!extension_loaded('imagick')){
- throw new QRCodeOutputException('ext-imagick not loaded'); // @codeCoverageIgnore
- }
- parent::__construct($options, $matrix);
- }
- /**
- * @inheritDoc
- */
- protected function setModuleValues():void{
- foreach($this::DEFAULT_MODULE_VALUES as $type => $defaultValue){
- $v = $this->options->moduleValues[$type] ?? null;
- if(!is_string($v)){
- $this->moduleValues[$type] = $defaultValue
- ? new ImagickPixel($this->options->markupDark)
- : new ImagickPixel($this->options->markupLight);
- }
- else{
- $this->moduleValues[$type] = new ImagickPixel($v);
- }
- }
- }
- /**
- * @inheritDoc
- *
- * @return string|\Imagick
- */
- public function dump(string $file = null){
- $file ??= $this->options->cachefile;
- $this->imagick = new Imagick;
- $this->imagick->newImage(
- $this->length,
- $this->length,
- new ImagickPixel($this->options->imagickBG ?? 'transparent'),
- $this->options->imagickFormat
- );
- $this->drawImage();
- if($this->options->returnResource){
- return $this->imagick;
- }
- $imageData = $this->imagick->getImageBlob();
- $this->imagick->destroy();
- if($file !== null){
- $this->saveToFile($imageData, $file);
- }
- return $imageData;
- }
- /**
- * Creates the QR image via ImagickDraw
- */
- protected function drawImage():void{
- $this->imagickDraw = new ImagickDraw;
- foreach($this->matrix->matrix() as $y => $row){
- foreach($row as $x => $M_TYPE){
- $this->setPixel($x, $y, $M_TYPE);
- }
- }
- $this->imagick->drawImage($this->imagickDraw);
- }
- /**
- * draws a single pixel at the given position
- */
- protected function setPixel(int $x, int $y, int $M_TYPE):void{
- $this->imagickDraw->setStrokeColor($this->moduleValues[$M_TYPE]);
- $this->imagickDraw->setFillColor($this->moduleValues[$M_TYPE]);
- $this->options->drawCircularModules && !$this->matrix->checkTypes($x, $y, $this->options->keepAsSquare)
- ? $this->imagickDraw->circle(
- ($x + 0.5) * $this->scale,
- ($y + 0.5) * $this->scale,
- ($x + 0.5 + $this->options->circleRadius) * $this->scale,
- ($y + 0.5) * $this->scale
- )
- : $this->imagickDraw->rectangle(
- $x * $this->scale,
- $y * $this->scale,
- ($x + 1) * $this->scale,
- ($y + 1) * $this->scale
- );
- }
- }
|