DF - Cara menambah header dan footer pada cetak PDF pada aplikasi COdeigniter.
Tambahkan berikut pada controller saat akan mau print.
$this->mpdf = new mPDF();
$this->mpdf->SetHTMLHeader('<img src="' . base_url() . 'custom/Hederinvoice.jpg"/>');
$this->mpdf->SetHTMLFooter('Ini tampilan footer');
$this->mpdf->AddPage('P', // L - landscape, P - portrait
'', '', '', '',
7, // margin_left
6, // margin right
7, // margin top
14, // margin bottom
22, // margin header
10); // margin footer
$this->mpdf->WriteHTML($html);
$this->mpdf->Output("{$name_file1}-{$name_file2}.pdf",'I');
0 comments:
Post a Comment