Increased quality of QR Code

This commit is contained in:
Frey Mansikkaniemi 2020-07-29 18:35:14 +08:00
parent d6a06a999b
commit 5608ed2aee

View File

@ -77,7 +77,7 @@ function its_wpf_qrcode_catch()
ob_clean(); //Clean the output buffer before printing out image ob_clean(); //Clean the output buffer before printing out image
require_once('libs/phpqrcode.php'); require_once('libs/phpqrcode.php');
header('Content-Type: image/png'); header('Content-Type: image/png');
QRcode::png($qrcode_string); QRcode::png($qrcode_string,false,QR_ECLEVEL_H);
exit(); exit();
} }
} }