From 64a36970d6c4a90c1ab738e0b859b4fffa18c603 Mon Sep 17 00:00:00 2001 From: wn_ Date: Thu, 21 Nov 2024 17:27:15 +0000 Subject: Bump 'chillerlan/php-qrcode' to 5.0.x. * Maintains PHP `7.4` compatibility and adds PHP `8.4` compatibility * The `4.4.x` branch does the same, but I didn't see any reason not to go to `5.0.x`. * https://github.com/chillerlan/php-qrcode/releases --- vendor/chillerlan/php-qrcode/examples/svg.php | 78 --------------------------- 1 file changed, 78 deletions(-) delete mode 100644 vendor/chillerlan/php-qrcode/examples/svg.php (limited to 'vendor/chillerlan/php-qrcode/examples/svg.php') diff --git a/vendor/chillerlan/php-qrcode/examples/svg.php b/vendor/chillerlan/php-qrcode/examples/svg.php deleted file mode 100644 index d171cbe07..000000000 --- a/vendor/chillerlan/php-qrcode/examples/svg.php +++ /dev/null @@ -1,78 +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'; -$gzip = true; - -$options = new QROptions([ - 'version' => 7, - 'outputType' => QRCode::OUTPUT_MARKUP_SVG, - 'imageBase64' => false, - 'eccLevel' => QRCode::ECC_L, - 'svgViewBoxSize' => 530, - 'addQuietzone' => true, - 'cssClass' => 'my-css-class', - 'svgOpacity' => 1.0, - 'svgDefs' => ' - - - - - - - - - ', - 'moduleValues' => [ - // finder - 1536 => 'url(#g1)', // dark (true) - 6 => '#fff', // light (false) - // alignment - 2560 => 'url(#g1)', - 10 => '#fff', - // timing - 3072 => 'url(#g1)', - 12 => '#fff', - // format - 3584 => 'url(#g1)', - 14 => '#fff', - // version - 4096 => 'url(#g1)', - 16 => '#fff', - // data - 1024 => 'url(#g2)', - 4 => '#fff', - // darkmodule - 512 => 'url(#g1)', - // separator - 8 => '#fff', - // quietzone - 18 => '#fff', - ], -]); - -$qrcode = (new QRCode($options))->render($data); - -header('Content-type: image/svg+xml'); - -if($gzip === true){ - header('Vary: Accept-Encoding'); - header('Content-Encoding: gzip'); - $qrcode = gzencode($qrcode ,9); -} -echo $qrcode; - - -- cgit v1.2.3-54-g00ecf