summaryrefslogtreecommitdiff
path: root/vendor/chillerlan/php-qrcode/examples/fpdf.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-11-21 17:36:54 +0000
committerAndrew Dolgov <fox@fakecake.org>2024-11-21 17:36:54 +0000
commit9c1fb45d73b6719f7c7bc6e0423a7faef75a2796 (patch)
treebf385b721be5b1c6067040ce65f0b892bb1c9225 /vendor/chillerlan/php-qrcode/examples/fpdf.php
parent1e14fc0fd957cea2ab176d5132c3fe5329991c17 (diff)
parent64a36970d6c4a90c1ab738e0b859b4fffa18c603 (diff)
Merge branch 'feature/php-qrcode-5.0.x' into 'master'
Bump 'chillerlan/php-qrcode' to 5.0.x. See merge request tt-rss/tt-rss!77
Diffstat (limited to 'vendor/chillerlan/php-qrcode/examples/fpdf.php')
-rw-r--r--vendor/chillerlan/php-qrcode/examples/fpdf.php47
1 files changed, 0 insertions, 47 deletions
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 @@
-<?php
-
-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' => 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);