PHP tcpdf 小二维码?
是否可以更改 tcpdf 生成的二维码的大小?似乎当我将大小更改为 50,50 点以外的任何值时,生成的 QR 代码变得无效
尝试了两种变体 - QR 阅读器无法读取生成的 QR 代码
$pdf->write2DBarcode($url , 'QRCODE,H', '', '', 25, 25, $style, 'N',FALSE);
$pdf->write2DBarcode($url, 'QRCODE,H', '', '', 25, 25, $style, 'N',TRUE);
Is it possible to change the size of the qr code generated from tcpdf? It seems when I change the size from anything but 50,50 points, the resulting QR code becomes invalid
Tried both variations - the QR code generated can't be read by a QR reader
$pdf->write2DBarcode($url, 'QRCODE,H', '', '', 25, 25, $style, 'N',FALSE);
$pdf->write2DBarcode($url, 'QRCODE,H', '', '', 25, 25, $style, 'N',TRUE);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须确保生成的二维码足够大以便可读。
请查看 TCPDF 网站 http://www.tcpdf.org 并咨询官方论坛以获取更多信息。
You have to be sure that your generated QR-code is large enough to be readable.
Check the TCPDF website at http://www.tcpdf.org and consult the official forum for further information.