| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619 |
- <?php
- /**
- * Trait QROptionsTrait
- *
- * Note: the docblocks in this file are optimized for readability in PhpStorm ond on readthedocs.io
- *
- * @created 10.03.2018
- * @author smiley <smiley@chillerlan.net>
- * @copyright 2018 smiley
- * @license MIT
- *
- * @noinspection PhpUnused, PhpComposerExtensionStubsInspection
- */
- declare(strict_types=1);
- namespace chillerlan\QRCode;
- use chillerlan\QRCode\Common\{EccLevel, MaskPattern, Version};
- use chillerlan\QRCode\Output\QRMarkupSVG;
- use function constant, in_array, is_string, max, min, sprintf, strtolower, strtoupper, trim;
- use const JSON_THROW_ON_ERROR, JSON_UNESCAPED_SLASHES, PHP_EOL;
- /**
- * The QRCode plug-in settings & setter functionality
- *
- * @property int $version
- * @property int $versionMin
- * @property int $versionMax
- * @property int $eccLevel
- * @property int $maskPattern
- * @property bool $addQuietzone
- * @property int $quietzoneSize
- * @property string $outputInterface
- * @property bool $returnResource
- * @property string|null $cachefile
- * @property bool $outputBase64
- * @property string $eol
- * @property mixed $bgColor
- * @property bool $invertMatrix
- * @property bool $drawLightModules
- * @property bool $drawCircularModules
- * @property float $circleRadius
- * @property array $keepAsSquare
- * @property bool $connectPaths
- * @property array $excludeFromConnect
- * @property array $moduleValues
- * @property bool $addLogoSpace
- * @property int|null $logoSpaceWidth
- * @property int|null $logoSpaceHeight
- * @property int|null $logoSpaceStartX
- * @property int|null $logoSpaceStartY
- * @property int $scale
- * @property bool $imageTransparent
- * @property mixed $transparencyColor
- * @property int $quality
- * @property bool $gdImageUseUpscale
- * @property string $imagickFormat
- * @property string $cssClass
- * @property bool $svgAddXmlHeader
- * @property string $svgDefs
- * @property string $svgPreserveAspectRatio
- * @property bool $svgUseFillAttributes
- * @property string $textLineStart
- * @property int $jsonFlags
- * @property string $fpdfMeasureUnit
- * @property string|null $xmlStylesheet
- */
- trait QROptionsTrait{
- /*
- * QR Code specific settings
- */
- /**
- * QR Code version number
- *
- * `1 ... 40` or `Version::AUTO` (default)
- *
- * @see \chillerlan\QRCode\Common\Version
- */
- protected int $version = Version::AUTO;
- /**
- * Minimum QR version
- *
- * if `QROptions::$version` is set to `Version::AUTO` (default: 1)
- */
- protected int $versionMin = 1;
- /**
- * Maximum QR version
- *
- * if `QROptions::$version` is set to `Version::AUTO` (default: 40)
- */
- protected int $versionMax = 40;
- /**
- * Error correct level
- *
- * the constant `EccLevel::X` where `X` is:
- *
- * - `L` => 7% (default)
- * - `M` => 15%
- * - `Q` => 25%
- * - `H` => 30%
- *
- * alternatively you can just pass the letters L/M/Q/H (case-insensitive) to the magic setter
- *
- * @see \chillerlan\QRCode\Common\EccLevel
- * @see https://github.com/chillerlan/php-qrcode/discussions/160
- */
- protected int $eccLevel = EccLevel::L;
- /**
- * Mask Pattern to use (no value in using, mostly for unit testing purposes)
- *
- * `0 ... 7` or `MaskPattern::PATTERN_AUTO` (default)
- *
- * @see \chillerlan\QRCode\Common\MaskPattern
- */
- protected int $maskPattern = MaskPattern::AUTO;
- /**
- * Add a "quiet zone" (margin) according to the QR code spec
- *
- * @see https://www.qrcode.com/en/howto/code.html
- */
- protected bool $addQuietzone = true;
- /**
- * Size of the quiet zone
- *
- * internally clamped to `0 ... $moduleCount / 2` (default: 4)
- */
- protected int $quietzoneSize = 4;
- /*
- * General output settings
- */
- /**
- * The FQCN of the `QROutputInterface` to use
- */
- protected string $outputInterface = QRMarkupSVG::class;
- /**
- * Return the image resource instead of a render if applicable.
- *
- * - `QRGdImage`: `resource` (PHP < 8), `GdImage`
- * - `QRImagick`: `Imagick`
- * - `QRFpdf`: `FPDF`
- *
- * This option overrides/ignores other output settings, such as `QROptions::$cachefile`
- * and `QROptions::$outputBase64`. (default: `false`)
- *
- * @see \chillerlan\QRCode\Output\QROutputInterface::dump()
- */
- protected bool $returnResource = false;
- /**
- * Optional cache file path `/path/to/cache.file`
- *
- * Please note that the `$file` parameter in `QRCode::render()` and `QRCode::renderMatrix()`
- * takes precedence over the `QROptions::$cachefile` value. (default: `null`)
- *
- * @see \chillerlan\QRCode\QRCode::render()
- * @see \chillerlan\QRCode\QRCode::renderMatrix()
- */
- protected string|null $cachefile = null;
- /**
- * Toggle base64 data URI or raw data output (if applicable)
- *
- * (default: `true`)
- *
- * @see \chillerlan\QRCode\Output\QROutputAbstract::toBase64DataURI()
- */
- protected bool $outputBase64 = true;
- /**
- * Newline string
- *
- * (default: `PHP_EOL`)
- */
- protected string $eol = PHP_EOL;
- /*
- * Common visual modifications
- */
- /**
- * Sets the image background color (if applicable)
- *
- * - `QRImagick`: defaults to `"white"`
- * - `QRGdImage`: defaults to `[255, 255, 255]`
- * - `QRFpdf`: defaults to blank internally (white page)
- */
- protected mixed $bgColor = null;
- /**
- * Whether to invert the matrix (reflectance reversal)
- *
- * (default: `false`)
- *
- * @see \chillerlan\QRCode\Data\QRMatrix::invert()
- */
- protected bool $invertMatrix = false;
- /**
- * Whether to draw the light (false) modules
- *
- * (default: `true`)
- */
- protected bool $drawLightModules = true;
- /**
- * Specify whether to draw the modules as filled circles
- *
- * a note for `GdImage` output:
- *
- * if `QROptions::$scale` is less than 20, the image will be upscaled internally, then the modules will be drawn
- * using `imagefilledellipse()` and then scaled back to the expected size
- *
- * No effect in: `QREps`, `QRFpdf`, `QRMarkupHTML`
- *
- * @see \imagefilledellipse()
- * @see https://github.com/chillerlan/php-qrcode/issues/23
- * @see https://github.com/chillerlan/php-qrcode/discussions/122
- */
- protected bool $drawCircularModules = false;
- /**
- * Specifies the radius of the modules when `QROptions::$drawCircularModules` is set to `true`
- *
- * (default: 0.45)
- */
- protected float $circleRadius = 0.45;
- /**
- * Specifies which module types to exclude when `QROptions::$drawCircularModules` is set to `true`
- *
- * (default: `[]`)
- *
- * @var int[]
- */
- protected array $keepAsSquare = [];
- /**
- * Whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.
- *
- * This option is exclusive to output classes that use the module collector `QROutputAbstract::collectModules()`,
- * which converts the `$M_TYPE` of all modules to `QRMatrix::M_DATA` and `QRMatrix::M_DATA_DARK` respectively.
- *
- * Module types that should not be added to the connected path can be excluded via `QROptions::$excludeFromConnect`.
- *
- * Currentty used in `QREps` and `QRMarkupSVG`.
- *
- * @see \chillerlan\QRCode\Output\QROutputAbstract::collectModules()
- * @see \chillerlan\QRCode\QROptionsTrait::$excludeFromConnect
- * @see https://github.com/chillerlan/php-qrcode/issues/57
- */
- protected bool $connectPaths = false;
- /**
- * Specify which paths/patterns to exclude from connecting if `QROptions::$connectPaths` is set to `true`
- *
- * @see \chillerlan\QRCode\QROptionsTrait::$connectPaths
- *
- * @var int[]
- */
- protected array $excludeFromConnect = [];
- /**
- * Module values map
- *
- * - `QRImagick`, `QRMarkupHTML`, `QRMarkupSVG`: #ABCDEF, cssname, rgb(), rgba()...
- * - `QREps`, `QRFpdf`, `QRGdImage`: `[R, G, B]` // 0-255
- * - `QREps`: `[C, M, Y, K]` // 0-255
- *
- * @see \chillerlan\QRCode\Output\QROutputAbstract::setModuleValues()
- *
- * @var array<int, mixed>
- */
- protected array $moduleValues = [];
- /**
- * Toggles logo space creation
- *
- * @see \chillerlan\QRCode\QRCode::addMatrixModifications()
- * @see \chillerlan\QRCode\Data\QRMatrix::setLogoSpace()
- */
- protected bool $addLogoSpace = false;
- /**
- * Width of the logo space
- *
- * if only `QROptions::$logoSpaceWidth` is given, the logo space is assumed a square of that size
- */
- protected int|null $logoSpaceWidth = null;
- /**
- * Height of the logo space
- *
- * if only `QROptions::$logoSpaceHeight` is given, the logo space is assumed a square of that size
- */
- protected int|null $logoSpaceHeight = null;
- /**
- * Optional horizontal start position of the logo space (top left corner)
- */
- protected int|null $logoSpaceStartX = null;
- /**
- * Optional vertical start position of the logo space (top left corner)
- */
- protected int|null $logoSpaceStartY = null;
- /*
- * Common raster image settings (QRGdImage, QRImagick)
- */
- /**
- * Pixel size of a QR code module
- */
- protected int $scale = 5;
- /**
- * Toggle transparency
- *
- * - `QRGdImage` and `QRImagick`: the given `QROptions::$transparencyColor` is set as transparent
- *
- * @see https://github.com/chillerlan/php-qrcode/discussions/121
- */
- protected bool $imageTransparent = false;
- /**
- * Sets a transparency color for when `QROptions::$imageTransparent` is set to `true`.
- *
- * Defaults to `QROptions::$bgColor`.
- *
- * - `QRGdImage`: `[R, G, B]`, this color is set as transparent in `imagecolortransparent()`
- * - `QRImagick`: `"color_str"`, this color is set in `Imagick::transparentPaintImage()`
- *
- * @see \imagecolortransparent()
- * @see \Imagick::transparentPaintImage()
- */
- protected mixed $transparencyColor = null;
- /**
- * Compression quality
- *
- * The given value depends on the used output type:
- *
- * - `QRGdImageBMP`: `[0...1]`
- * - `QRGdImageJPEG`: `[0...100]`
- * - `QRGdImageWEBP`: `[0...9]`
- * - `QRGdImagePNG`: `[0...100]`
- * - `QRImagick`: `[0...100]`
- *
- * @see \imagebmp()
- * @see \imagejpeg()
- * @see \imagepng()
- * @see \imagewebp()
- * @see \Imagick::setImageCompressionQuality()
- */
- protected int $quality = -1;
- /*
- * QRGdImage settings
- */
- /**
- * Toggles the usage of internal upscaling when `QROptions::$drawCircularModules` is set to `true` and
- * `QROptions::$scale` is less than 20
- *
- * @see \chillerlan\QRCode\Output\QRGdImage::createImage()
- * @see https://github.com/chillerlan/php-qrcode/issues/23
- */
- protected bool $gdImageUseUpscale = true;
- /*
- * QRImagick settings
- */
- /**
- * Imagick output format
- *
- * @see \Imagick::setImageFormat()
- * @see https://www.imagemagick.org/script/formats.php
- */
- protected string $imagickFormat = 'png32';
- /*
- * Common markup output settings (QRMarkupSVG, QRMarkupHTML)
- */
- /**
- * A common css class
- */
- protected string $cssClass = 'qrcode';
- /*
- * QRMarkupSVG settings
- */
- /**
- * Whether to add an XML header line or not, e.g. to embed the SVG directly in HTML
- *
- * `<?xml version="1.0" encoding="UTF-8"?>`
- */
- protected bool $svgAddXmlHeader = true;
- /**
- * Anything in the SVG `<defs>` tag
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
- */
- protected string $svgDefs = '';
- /**
- * Sets the value for the "preserveAspectRatio" on the `<svg>` element
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/preserveAspectRatio
- */
- protected string $svgPreserveAspectRatio = 'xMidYMid';
- /**
- * Whether to use the SVG `fill` attributes
- *
- * If set to `true` (default), the `fill` attribute will be set with the module value for the `<path>` element's `$M_TYPE`.
- * When set to `false`, the module values map will be ignored and the QR Code may be styled via CSS.
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill
- */
- protected bool $svgUseFillAttributes = true;
- /*
- * QRStringText settings
- */
- /**
- * An optional line prefix, e.g. empty space to align the QR Code in a console
- */
- protected string $textLineStart = '';
- /*
- * QRStringJSON settings
- */
- /**
- * Sets the flags to use for the `json_encode()` call
- *
- * @see https://www.php.net/manual/json.constants.php
- */
- protected int $jsonFlags = (JSON_THROW_ON_ERROR | JSON_UNESCAPED_SLASHES);
- /*
- * QRFpdf settings
- */
- /**
- * Measurement unit for `FPDF` output: `pt`, `mm`, `cm`, `in` (default: `pt`)
- *
- * @see FPDF::__construct()
- */
- protected string $fpdfMeasureUnit = 'pt';
- /*
- * QRMarkupXML settings
- */
- /**
- * Sets an optional XSLT stylesheet in the XML output
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/XSLT
- */
- protected string|null $xmlStylesheet = null;
- /**
- * clamp min/max version number
- */
- protected function setMinMaxVersion(int $versionMin, int $versionMax):void{
- $min = max(1, min(40, $versionMin));
- $max = max(1, min(40, $versionMax));
- $this->versionMin = min($min, $max);
- $this->versionMax = max($min, $max);
- }
- /**
- * sets the minimum version number
- */
- protected function set_versionMin(int $version):void{
- $this->setMinMaxVersion($version, $this->versionMax);
- }
- /**
- * sets the maximum version number
- */
- protected function set_versionMax(int $version):void{
- $this->setMinMaxVersion($this->versionMin, $version);
- }
- /**
- * sets/clamps the version number
- */
- protected function set_version(int $version):void{
- $this->version = ($version !== Version::AUTO) ? max(1, min(40, $version)) : Version::AUTO;
- }
- /**
- * sets the ECC level
- *
- * @throws \chillerlan\QRCode\QRCodeException
- */
- protected function set_eccLevel(int|string $eccLevel):void{
- if(is_string($eccLevel)){
- $ecc = strtoupper(trim($eccLevel));
- if(!in_array($ecc, ['L', 'M', 'Q', 'H'], true)){
- throw new QRCodeException(sprintf('Invalid ECC level: "%s"', $ecc));
- }
- // @todo: PHP 8.3+
- // $eccLevel = EccLevel::{$ecc};
- $eccLevel = constant(EccLevel::class.'::'.$ecc);
- }
- /** @var int $eccLevel */
- if((0b11 & $eccLevel) !== $eccLevel){
- throw new QRCodeException(sprintf('Invalid ECC level: "%s"', $eccLevel));
- }
- $this->eccLevel = $eccLevel;
- }
- /**
- * sets/clamps the quiet zone size
- */
- protected function set_quietzoneSize(int $quietzoneSize):void{
- $this->quietzoneSize = max(0, min($quietzoneSize, 75));
- }
- /**
- * sets the FPDF measurement unit
- *
- * @codeCoverageIgnore
- */
- protected function set_fpdfMeasureUnit(string $unit):void{
- $unit = strtolower($unit);
- if(in_array($unit, ['cm', 'in', 'mm', 'pt'], true)){
- $this->fpdfMeasureUnit = $unit;
- }
- // @todo throw or ignore silently?
- }
- /**
- * clamp the logo space values between 0 and maximum length (177 modules at version 40)
- */
- protected function clampLogoSpaceValue(int|null $value):int|null{
- if($value === null){
- return null;
- }
- return (int)max(0, min(177, $value));
- }
- /**
- * clamp/set logo space width
- */
- protected function set_logoSpaceWidth(int|null $value):void{
- $this->logoSpaceWidth = $this->clampLogoSpaceValue($value);
- }
- /**
- * clamp/set logo space height
- */
- protected function set_logoSpaceHeight(int|null $value):void{
- $this->logoSpaceHeight = $this->clampLogoSpaceValue($value);
- }
- /**
- * clamp/set horizontal logo space start
- */
- protected function set_logoSpaceStartX(int|null $value):void{
- $this->logoSpaceStartX = $this->clampLogoSpaceValue($value);
- }
- /**
- * clamp/set vertical logo space start
- */
- protected function set_logoSpaceStartY(int|null $value):void{
- $this->logoSpaceStartY = $this->clampLogoSpaceValue($value);
- }
- /**
- * clamp/set SVG circle radius
- */
- protected function set_circleRadius(float $circleRadius):void{
- $this->circleRadius = max(0.1, min(0.75, $circleRadius));
- }
- }
|