如何使用Endroid \ QR Code设置QR版本

时间:2019-06-14 08:08:12

标签: php symfony qr-code

我正在使用Endroid \ QRCode库生成QR码。一切正常,但是库输出QR版本10,这对我不利。如何设置以输出QR版本15?

https://github.com/endroid/qr-code-bundle

$content = "Demo QR code";
$qrCode = new QrCode($content);
$qrCode->setSize(600);
$qrCode->setErrorCorrectionLevel(new ErrorCorrectionLevel(ErrorCorrectionLevel::MEDIUM));
$qrCode->setEncoding('ISO-8859-2');

$dir = $this->getParameter('qr_directory');
$filename = 'order-'.$order->getId().'.png';
$qrCode->writeFile($dir.$filename);

我希望输出版本为15,但实际输出为10。

0 个答案:

没有答案