| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <?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 finfo, Imagick, ImagickDraw, ImagickPixel;
- use function extension_loaded, in_array, is_string, max, min, preg_match, strlen;
- use const FILEINFO_MIME_TYPE;
- /**
- * ImageMagick output module (requires ext-imagick)
- *
- * @see https://php.net/manual/book.imagick.php
- * @see https://phpimagick.com
- */
- class QRImagick extends QROutputAbstract{
- /**
- * The main image instance
- */
- protected Imagick $imagick;
- /**
- * The main draw instance
- */
- protected ImagickDraw $imagickDraw;
- /**
- * The allocated background color
- */
- protected ImagickPixel $backgroundColor;
- /**
- * @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
- }
- if(!extension_loaded('fileinfo')){
- throw new QRCodeOutputException('ext-fileinfo not loaded'); // @codeCoverageIgnore
- }
- parent::__construct($options, $matrix);
- }
- /**
- * note: we're not necessarily validating the several values, just checking the general syntax
- *
- * @see https://www.php.net/manual/imagickpixel.construct.php
- * @inheritDoc
- */
- public static function moduleValueIsValid($value):bool{
- if(!is_string($value)){
- return false;
- }
- $value = trim($value);
- // hex notation
- // #rgb(a)
- // #rrggbb(aa)
- // #rrrrggggbbbb(aaaa)
- // ...
- if(preg_match('/^#[a-f\d]+$/i', $value) && in_array((strlen($value) - 1), [3, 4, 6, 8, 9, 12, 16, 24, 32], true)){
- return true;
- }
- // css (-like) func(...values)
- if(preg_match('#^(graya?|hs(b|la?)|rgba?)\([\d .,%]+\)$#i', $value)){
- return true;
- }
- // predefined css color
- if(preg_match('/^[a-z]+$/i', $value)){
- return true;
- }
- return false;
- }
- /**
- * @inheritDoc
- */
- protected function prepareModuleValue($value):ImagickPixel{
- return new ImagickPixel($value);
- }
- /**
- * @inheritDoc
- */
- protected function getDefaultModuleValue(bool $isDark):ImagickPixel{
- return $this->prepareModuleValue(($isDark) ? '#000' : '#fff');
- }
- /**
- * @inheritDoc
- *
- * @return string|\Imagick
- */
- public function dump(string $file = null){
- $this->setBgColor();
- $this->imagick = $this->createImage();
- $this->drawImage();
- // set transparency color after all operations
- $this->setTransparencyColor();
- if($this->options->returnResource){
- return $this->imagick;
- }
- $imageData = $this->imagick->getImageBlob();
- $this->imagick->destroy();
- $this->saveToFile($imageData, $file);
- if($this->options->outputBase64){
- $imageData = $this->toBase64DataURI($imageData, (new finfo(FILEINFO_MIME_TYPE))->buffer($imageData));
- }
- return $imageData;
- }
- /**
- * Sets the background color
- */
- protected function setBgColor():void{
- if($this::moduleValueIsValid($this->options->bgColor)){
- $this->backgroundColor = $this->prepareModuleValue($this->options->bgColor);
- return;
- }
- $this->backgroundColor = $this->prepareModuleValue('white');
- }
- /**
- * Creates a new Imagick instance
- */
- protected function createImage():Imagick{
- $imagick = new Imagick;
- [$width, $height] = $this->getOutputDimensions();
- $imagick->newImage($width, $height, $this->backgroundColor, $this->options->imagickFormat);
- if($this->options->quality > -1){
- $imagick->setImageCompressionQuality(max(0, min(100, $this->options->quality)));
- }
- return $imagick;
- }
- /**
- * Sets the transparency color
- */
- protected function setTransparencyColor():void{
- if(!$this->options->imageTransparent){
- return;
- }
- $transparencyColor = $this->backgroundColor;
- if($this::moduleValueIsValid($this->options->transparencyColor)){
- $transparencyColor = $this->prepareModuleValue($this->options->transparencyColor);
- }
- $this->imagick->transparentPaintImage($transparencyColor, 0.0, 10, false);
- }
- /**
- * Creates the QR image via ImagickDraw
- */
- protected function drawImage():void{
- $this->imagickDraw = new ImagickDraw;
- $this->imagickDraw->setStrokeWidth(0);
- foreach($this->matrix->getMatrix() as $y => $row){
- foreach($row as $x => $M_TYPE){
- $this->module($x, $y, $M_TYPE);
- }
- }
- $this->imagick->drawImage($this->imagickDraw);
- }
- /**
- * draws a single pixel at the given position
- */
- protected function module(int $x, int $y, int $M_TYPE):void{
- if(!$this->options->drawLightModules && !$this->matrix->check($x, $y)){
- return;
- }
- $this->imagickDraw->setFillColor($this->getModuleValue($M_TYPE));
- if($this->options->drawCircularModules && !$this->matrix->checkTypeIn($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)
- );
- return;
- }
- $this->imagickDraw->rectangle(
- ($x * $this->scale),
- ($y * $this->scale),
- ((($x + 1) * $this->scale) - 1),
- ((($y + 1) * $this->scale) - 1)
- );
- }
- }
|