QRCode位置不遵循使用库TCPDF的PHP中先前输出的结果

时间:2016-03-09 14:47:54

标签: php tcpdf

我在tcpdf中遇到qrcode的位置问题。

首先,我想要这样的qrcode输出:

enter image description here

但是在我在表格中添加了很多行后,qrcode位置跟不上我的表格,如下图所示。

enter image description here

这是我的代码

$style = array(
 'border' => 0,
 'vpadding' => 'auto',
 'hpadding' => 'auto',
 'fgcolor' => array(0,0,0),
 'bgcolor' => false, //array(255,255,255)
 'module_width' => 1, // width of a single module in points
 'module_height' => 1 // height of a single module in points
);
$pdf->write2DBarcode('www.tcpdf.org', 'QRCODE,Q', 0, 143, 50, 30, $style, 'N');

请帮助我,我该怎么办这个问题。 我很高兴,谢谢你的帮助。

0 个答案:

没有答案