:octocat: use the same settings as the SVG "melt" example for direct comparison

This commit is contained in:
smiley
2023-09-19 12:14:43 +02:00
parent 1c8073711b
commit 8744848a20
+9 -6
View File
@@ -135,12 +135,15 @@ class QRGdRounded extends QRGdImage{
// --------------------
$options = new QROptions([
'outputType' => QROutputInterface::CUSTOM,
'outputInterface' => QRGdRounded::class,
'eccLevel' => EccLevel::M,
'imageTransparent' => false,
'outputBase64' => false,
'scale' => 30,
'version' => 7,
'eccLevel' => EccLevel::H,
'outputType' => QROutputInterface::CUSTOM,
'outputInterface' => QRGdRounded::class,
'outputBase64' => false,
'scale' => 30,
'addLogoSpace' => true,
'logoSpaceWidth' => 13,
'logoSpaceHeight' => 13,
]);