我正在使用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。