whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
endroid
/
qr-code
/
src
/
Writer
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/endroid/qr-code/src/Writer/WebPWriter.php
<?php declare(strict_types=1); namespace Endroid\QrCode\Writer; use Endroid\QrCode\Label\LabelInterface; use Endroid\QrCode\Logo\LogoInterface; use Endroid\QrCode\QrCodeInterface; use Endroid\QrCode\Writer\Result\GdResult; use Endroid\QrCode\Writer\Result\ResultInterface; use Endroid\QrCode\Writer\Result\WebPResult; final class WebPWriter extends AbstractGdWriter { public const WRITER_OPTION_QUALITY = 'quality'; public function write(QrCodeInterface $qrCode, LogoInterface $logo = null, LabelInterface $label = null, array $options = []): ResultInterface { if (!isset($options[self::WRITER_OPTION_QUALITY])) { $options[self::WRITER_OPTION_QUALITY] = -1; } /** @var GdResult $gdResult */ $gdResult = parent::write($qrCode, $logo, $label, $options); return new WebPResult($gdResult->getMatrix(), $gdResult->getImage(), $options[self::WRITER_OPTION_QUALITY]); } }
Copyright ©2021 || Defacer Indonesia