如何在 tcpdf 库 codeigniter 中的 pdf 页脚中设置全宽图像?

How to set full width image in footer of pdf in tcpdf library codeigniter?

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

为此尝试使用 writeHTMLCell()。设置第一个参数21-A4宽度(我设置cm作为度量单位),4为A4高度-图像高度:

$pdf->writeHTMLCell(21, '', 0, 29.7 - 4, $footer_logo_html, 0, 1, false, true, 'L', false);

结果:

我用你的.png,所以它的边缘是白色的space =)