mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-17 12:02:55 +00:00
117 lines
2.9 KiB
PHP
117 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* GdImage example for displaying additional text under the QR Code
|
|
*
|
|
* @link https://github.com/chillerlan/php-qrcode/issues/35
|
|
*
|
|
* @created 22.06.2019
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2019 Smiley
|
|
* @license MIT
|
|
*
|
|
* @noinspection PhpIllegalPsrClassPathInspection, PhpComposerExtensionStubsInspection
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use chillerlan\QRCode\{QRCode, QROptions};
|
|
use chillerlan\QRCode\Output\QRGdImagePNG;
|
|
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
|
|
/*
|
|
* Class definition
|
|
*/
|
|
|
|
class QRImageWithText extends QRGdImagePNG{
|
|
|
|
public function dump(string|null $file = null, string|null $text = null):string{
|
|
// set returnResource to true to skip further processing for now
|
|
$this->options->returnResource = true;
|
|
|
|
// there's no need to save the result of dump() into $this->image here
|
|
parent::dump($file);
|
|
|
|
// render text output if a string is given
|
|
if($text !== null){
|
|
$this->addText($text);
|
|
}
|
|
|
|
$imageData = $this->dumpImage();
|
|
|
|
$this->saveToFile($imageData, $file);
|
|
|
|
if($this->options->outputBase64){
|
|
$imageData = $this->toBase64DataURI($imageData);
|
|
}
|
|
|
|
return $imageData;
|
|
}
|
|
|
|
protected function addText(string $text):void{
|
|
// save the qrcode image
|
|
$qrcode = $this->image;
|
|
|
|
// options things
|
|
$textSize = 3; // see imagefontheight() and imagefontwidth()
|
|
$textBG = [200, 200, 200];
|
|
$textColor = [50, 50, 50];
|
|
|
|
$bgWidth = $this->length;
|
|
$bgHeight = ($bgWidth + 20); // 20px extra space
|
|
|
|
// create a new image with additional space
|
|
$this->image = imagecreatetruecolor($bgWidth, $bgHeight);
|
|
$background = imagecolorallocate($this->image, ...$textBG);
|
|
|
|
// allow transparency
|
|
if($this->options->imageTransparent){
|
|
imagecolortransparent($this->image, $background);
|
|
}
|
|
|
|
// fill the background
|
|
imagefilledrectangle($this->image, 0, 0, $bgWidth, $bgHeight, $background);
|
|
|
|
// copy over the qrcode
|
|
imagecopymerge($this->image, $qrcode, 0, 0, 0, 0, $this->length, $this->length, 100);
|
|
|
|
$fontColor = imagecolorallocate($this->image, ...$textColor);
|
|
$w = imagefontwidth($textSize);
|
|
$x = round(($bgWidth - strlen($text) * $w) / 2);
|
|
|
|
// loop through the string and draw the letters
|
|
foreach(str_split($text) as $i => $chr){
|
|
imagechar($this->image, $textSize, (int)($i * $w + $x), $this->length, $chr, $fontColor);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
* Runtime
|
|
*/
|
|
|
|
$options = new QROptions;
|
|
|
|
$options->version = 7;
|
|
$options->scale = 3;
|
|
$options->outputBase64 = false;
|
|
|
|
|
|
$qrcode = new QRCode($options);
|
|
$qrcode->addByteSegment('https://www.youtube.com/watch?v=dQw4w9WgXcQ');
|
|
|
|
// invoke the custom output interface manually
|
|
$qrOutputInterface = new QRImageWithText($options, $qrcode->getQRMatrix());
|
|
|
|
// dump the output, with additional text
|
|
// the text could also be supplied via the options, see the svgWithLogo example
|
|
$out = $qrOutputInterface->dump(null, 'example text');
|
|
|
|
|
|
header('Content-type: image/png');
|
|
|
|
echo $out;
|
|
|
|
exit;
|