我正在使用TCPDF库来创建.pdf
文件。我必须在页脚中添加一个图像,该图像应该覆盖100%的宽度,但它从左右两侧以相同的边距进入中心。我想删除这些边距并设置页脚图像的全宽。我用来设置页脚的代码如下。您还可以在附加图像中看到我的图像在页脚中的显示方式: -
$footer_image_file = './images/logo/footer.png';
$footer_logo_html = '<div style="width:100opx !important;height:100px;"><img width:"1000px;" src="' . $footer_image_file . '" /></div>';
$pdf->writeHTML($footer_logo_html, true, 0, true, 0);
答案 0 :(得分:3)
请尝试使用writeHTMLCell()
。设置第一个参数cm
- A4宽度(我将$pdf->writeHTMLCell(21, '', 0, 29.7 - 4, $footer_logo_html, 0, 1, false, true, 'L', false);
设置为度量单位),将4设置为A4高度 - 图像高度:
.png
结果:
我使用你的{{1}},因此边缘上有空格=)