BGBarcodeBundle icon indicating copy to clipboard operation
BGBarcodeBundle copied to clipboard

Bug in qr code generation

Open forcecodema opened this issue 4 years ago • 0 comments

There is a bug in qr code generation in class Base2DBarcode

$bar->rectangle($x, $y, ($x + $w), ($y + $h)); imagefilledrectangle($png, $x, $y, ($x + $w), ($y + $h), $fgcol);

should be

$bar->rectangle($x, $y, ($x + $w - 1), ($y + $h - 1)); imagefilledrectangle($png, $x, $y, ($x + $w - 1), ($y + $h - 1), $fgcol);

forcecodema avatar Feb 19 '21 21:02 forcecodema