mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-17 16:01:12 +00:00
16 lines
353 B
PHP
16 lines
353 B
PHP
<?php
|
|
|
|
require_once '../vendor/autoload.php';
|
|
|
|
use codemasher\QRCode\QRCode;
|
|
use codemasher\QRCode\QRConst;
|
|
|
|
// google authenticator
|
|
$qr = new QRCode('otpauth://totp/test?secret=B3JX4VCVJDVNXNZ5&issuer=chillerlan.net', QRConst::ERROR_CORRECT_LEVEL_L);
|
|
|
|
header('Content-type: image/png');
|
|
|
|
$im = $qr->createImage(5, 5);
|
|
imagepng($im);
|
|
imagedestroy($im);
|