我正在尝试使用TCPDF生成PDF。我需要它有一个包含一些信息和背景图像的标题。背景图像的主要目的是充当水印。
标题工作正常。但是当我添加背景图片时,标题就消失了。
这是标题功能代码:
public function Header(){
$html = '
<table>
<tr>
<td style="font-weight: bold;font-size: 8px;">PlayGround Name </td>
<td></td>
<td style="font-weight: bold;font-size: 8px;">'.date('d-m-Y').'</td>
<td></td>
<td style="font-weight: bold;font-size: 8px;">Page 1/1 </td>
</tr>
</table>
';
$this->writeHTMLCell($w = 0, $h = 0, $x = '', $y = '', $html, $border = 0, $ln = 1, $fill = 0, $reseth = true, $align = 'top', $autopadding = true);
// get the current page break margin
$bMargin = $this->getBreakMargin();
// get current auto-page-break mode
$auto_page_break = $this->AutoPageBreak;
// disable auto-page-break
$this->SetAutoPageBreak(false, 0);
// set bacground image
$img_file = base_url().'assets/images/demo.jpg';
$this->Image($img_file, 0, 0, 210, 297, '', '', '', false, 300, '', false, false, 0);
// restore auto-page-break status
$this->SetAutoPageBreak($auto_page_break, $bMargin);
// set the starting point for the page content
$this->setPageMark();
}
我想要标题和背景图片。 任何帮助表示赞赏...
答案 0 :(得分:1)
阅读manual说:
[...]在调用Multicell()或WriteHTMLCell()或WriteHTML()函数之前,必须始终插入背景图像。
这意味着Image()
应该早于代码中的WriteHTMLCell()
函数调用。那你应该好。