如何在pdf上正确放置图像?

时间:2018-06-12 07:33:07

标签: php pdf tcpdf badge

我的空白身份证的尺寸如下:

enter image description here enter image description here

对于欧洲,打印是85mmx55mm。所以我使用Google power point作为mmpixel制作了背景图片: enter image description here

但是当我把它放在TCPDF时,那么图像并不完全适合85mmx55mm

enter image description here enter image description here

我的TCPDF代码如下:

$pdf = new TCPDF('L', 'mm', array(55,85));
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->AddPage();
$pdf->SetAutoPageBreak(FALSE, 1);
// image in pixel: 319 × 207  
$pdf->Image('background_image.jpg', 0, 0);

我做错了什么?为什么background_image.jpg比数组(53,55)大?

0 个答案:

没有答案