* @copyright 2017 Smiley * @license MIT */ declare(strict_types=1); use chillerlan\QRCode\{QRCode, QROptions}; use chillerlan\QRCode\Data\QRMatrix; use chillerlan\QRCode\Output\QRMarkupHTML; require_once '../vendor/autoload.php'; $options = new QROptions; $options->version = 5; $options->outputInterface = QRMarkupHTML::class; $options->cssClass = 'qrcode'; $options->moduleValues = [ // finder QRMatrix::M_FINDER_DARK => '#A71111', // dark (true) QRMatrix::M_FINDER_DOT => '#A71111', // finder dot, dark (true) QRMatrix::M_FINDER => '#FFBFBF', // light (false) // alignment QRMatrix::M_ALIGNMENT_DARK => '#A70364', QRMatrix::M_ALIGNMENT => '#FFC9C9', ]; $out = (new QRCode($options))->render('https://www.youtube.com/watch?v=dQw4w9WgXcQ'); header('Content-Type: text/html; charset=utf-8'); ?>