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/fpdf.php | 47 -------------------------- 1 file changed, 47 deletions(-) delete mode 100644 vendor/chillerlan/php-qrcode/examples/fpdf.php (limited to 'vendor/chillerlan/php-qrcode/examples/fpdf.php') diff --git a/vendor/chillerlan/php-qrcode/examples/fpdf.php b/vendor/chillerlan/php-qrcode/examples/fpdf.php deleted file mode 100644 index 9c690a7f7..000000000 --- a/vendor/chillerlan/php-qrcode/examples/fpdf.php +++ /dev/null @@ -1,47 +0,0 @@ - 7, - 'outputType' => QRCode::OUTPUT_FPDF, - 'eccLevel' => QRCode::ECC_L, - '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 - // alignment - 2560 => [255, 0, 255], - 10 => [255, 255, 255], - // timing - 3072 => [255, 0, 0], - 12 => [255, 255, 255], - // format - 3584 => [67, 191, 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], - ], -]); - -\header('Content-type: application/pdf'); - -echo (new QRCode($options))->render($data); -- cgit v1.2.3-54-g00ecf