From 6bf61dfa6b585db01b607a79bd64ec9c583a9c10 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 14 Mar 2024 09:35:09 +0000 Subject: composer update and use the fixed streams php-jcs library until the floats issue will be fixed upstream. see here for reference https://codeberg.org/streams/streams/issues/151 --- vendor/chillerlan/php-qrcode/examples/image.php | 63 ------------------------- 1 file changed, 63 deletions(-) delete mode 100644 vendor/chillerlan/php-qrcode/examples/image.php (limited to 'vendor/chillerlan/php-qrcode/examples/image.php') diff --git a/vendor/chillerlan/php-qrcode/examples/image.php b/vendor/chillerlan/php-qrcode/examples/image.php deleted file mode 100644 index 54426c68a..000000000 --- a/vendor/chillerlan/php-qrcode/examples/image.php +++ /dev/null @@ -1,63 +0,0 @@ - - * @copyright 2017 Smiley - * @license MIT - */ - -namespace chillerlan\QRCodeExamples; - -use chillerlan\QRCode\{QRCode, QROptions}; - -require_once __DIR__.'/../vendor/autoload.php'; - -$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s'; - -$options = new QROptions([ - 'version' => 10, - 'outputType' => QRCode::OUTPUT_IMAGE_PNG, - 'eccLevel' => QRCode::ECC_H, - 'scale' => 5, - 'imageBase64' => false, - 'moduleValues' => [ - // finder - 1536 => [0, 63, 255], // dark (true) - 6 => [255, 255, 255], // light (false), white is the transparency color and is enabled by default - 5632 => [241, 28, 163], // finder dot, dark (true) - // alignment - 2560 => [255, 0, 255], - 10 => [255, 255, 255], - // timing - 3072 => [255, 0, 0], - 12 => [255, 255, 255], - // format - 3584 => [67, 99, 84], - 14 => [255, 255, 255], - // version - 4096 => [62, 174, 190], - 16 => [255, 255, 255], - // data - 1024 => [0, 0, 0], - 4 => [255, 255, 255], - // darkmodule - 512 => [0, 0, 0], - // separator - 8 => [255, 255, 255], - // quietzone - 18 => [255, 255, 255], - // logo (requires a call to QRMatrix::setLogoSpace()) - 20 => [255, 255, 255], - ], -]); - -header('Content-type: image/png'); - -echo (new QRCode($options))->render($data); - - - - - -- cgit v1.2.3