:octocat: QRImagick: fix square pixel draw size

This commit is contained in:
smiley
2023-09-08 22:21:06 +02:00
parent 85776d2db9
commit 29b58f3775
+2 -2
View File
@@ -223,8 +223,8 @@ class QRImagick extends QROutputAbstract{
$this->imagickDraw->rectangle(
($x * $this->scale),
($y * $this->scale),
(($x + 1) * $this->scale),
(($y + 1) * $this->scale)
((($x + 1) * $this->scale) - 1),
((($y + 1) * $this->scale) - 1)
);
}