summaryrefslogtreecommitdiff
path: root/vendor/chillerlan/php-qrcode/examples/imageWithLogo.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-15 18:33:35 +0300
committerAndrew Dolgov <[email protected]>2021-11-15 18:33:35 +0300
commit4c37fa4b41b0cab50a4fc192e9120042dbe36872 (patch)
treed7ca7cbd65de0cea9806870c8fb646ed15d978ae /vendor/chillerlan/php-qrcode/examples/imageWithLogo.php
parent109b702ed0cd31a0dc8466b8127882d263705d8d (diff)
update phpstan to 1.1.2; update php-qrcode to 3.4.1
Diffstat (limited to 'vendor/chillerlan/php-qrcode/examples/imageWithLogo.php')
-rw-r--r--vendor/chillerlan/php-qrcode/examples/imageWithLogo.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/vendor/chillerlan/php-qrcode/examples/imageWithLogo.php b/vendor/chillerlan/php-qrcode/examples/imageWithLogo.php
index 987e10c11..36f63d503 100644
--- a/vendor/chillerlan/php-qrcode/examples/imageWithLogo.php
+++ b/vendor/chillerlan/php-qrcode/examples/imageWithLogo.php
@@ -16,14 +16,15 @@ require_once __DIR__.'/../vendor/autoload.php';
$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s';
/**
- * @property int $logoWidth
- * @property int $logoHeight
+ * @property int $logoSpaceWidth
+ * @property int $logoSpaceHeight
*
* @noinspection PhpIllegalPsrClassPathInspection
*/
class LogoOptions extends QROptions{
- protected $logoWidth;
- protected $logoHeight;
+ // size in QR modules, multiply with QROptions::$scale for pixel size
+ protected $logoSpaceWidth;
+ protected $logoSpaceHeight;
}
$options = new LogoOptions;
@@ -31,8 +32,8 @@ $options = new LogoOptions;
$options->version = 7;
$options->eccLevel = QRCode::ECC_H;
$options->imageBase64 = false;
-$options->logoWidth = 13;
-$options->logoHeight = 13;
+$options->logoSpaceWidth = 13;
+$options->logoSpaceHeight = 13;
$options->scale = 5;
$options->imageTransparent = false;