mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-19 04:30:05 +00:00
23 lines
450 B
PHP
23 lines
450 B
PHP
<?php
|
|
|
|
require_once '../vendor/autoload.php';
|
|
|
|
use codemasher\QRCode\QRCode;
|
|
use codemasher\QRCode\QRConst;
|
|
|
|
$qrcode = new QRCode;
|
|
$qr = $qrcode->getMinimumQRCode('イメージ作成(引数:サイズ,マージン', QRConst::ERROR_CORRECT_LEVEL_L);
|
|
|
|
|
|
header('Content-type: text/plain');
|
|
|
|
$m = $qr->getModuleCount();
|
|
|
|
for($row = 0; $row < $m; $row++){
|
|
for($col = 0; $col < $m; $col++){
|
|
echo $qr->isDark($row, $col) ? '#' : ' ';
|
|
}
|
|
echo PHP_EOL;
|
|
}
|
|
|