This commit is contained in:
codemasher
2021-12-06 22:36:01 +01:00
parent 7cf092c245
commit e5b1fbaf7c
2 changed files with 5 additions and 4 deletions
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 143 KiB

After

Width:  |  Height:  |  Size: 143 KiB

+2 -1
View File
@@ -14,7 +14,7 @@ use chillerlan\QRCode\Common\EccLevel;
require_once __DIR__.'/../vendor/autoload.php';
$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs';
$data = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ';
$gzip = true;
$options = new QROptions([
@@ -60,4 +60,5 @@ if($gzip){
header('Content-Encoding: gzip');
$qrcode = gzencode($qrcode, 9);
}
echo $qrcode;