sethtmlheader mpdfが機能しない
私はhtmlにいくつかのページを持っています、私はプレゼンス、カバー、左の画像を持っています
それぞれに html があります:
<!DOCTYPE HTML>
問題は、ヘッダーまたはフッターがpdfに印刷されないことです
$this->load->library('pdf');
$pdf = $this->pdf->load();
$pdf->debug = true;
$pdf->WriteHTML($html);
$pdf->SetHTMLHeader('<div style="text-align: right; font-weight: bold;">My document</div>',true);
$pdf->WriteHTML($htmlpresences);
$pdf->SetHTMLFooter('
<table width="100%" style="vertical-align: bottom; font-family: serif; font-size: 8pt; color: #000000; font-weight: bold; font-style: italic;"><tr>
<td width="33%"><span style="font-weight: bold; font-style: italic;">{DATE j-m-Y}</span></td>
<td width="33%" align="center" style="font-weight: bold; font-style: italic;">{PAGENO}/{nbpg}</td>
<td width="33%" style="text-align: right; ">My document</td>
</tr></table>
');