mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-26 20:28:10 +00:00
19 lines
367 B
PHP
19 lines
367 B
PHP
<?php
|
|
|
|
require_once '../vendor/autoload.php';
|
|
|
|
use codemasher\QRCode\QRCode;
|
|
use codemasher\QRCode\QRConst;
|
|
|
|
$qrcode = new QRCode;
|
|
$qr = $qrcode->getMinimumQRCode('QRコード', QRConst::ERROR_CORRECT_LEVEL_L);
|
|
|
|
// イメージ作成(引数:サイズ,マージン)
|
|
$im = $qr->createImage(2, 4);
|
|
|
|
header('Content-type: image/png');
|
|
imagepng($im);
|
|
|
|
imagedestroy($im);
|
|
|