mPDF为SetHTMLHeader设置高度

时间:2014-09-03 06:08:02

标签: height mpdf

使用SetHTMLHeader功能时,是否存在设置助听器高度的任何方法?

在第一页中,默认大小是正确的,但在接下来的页面中,内容会覆盖标题的结尾部分。

问候,奥斯卡。

2 个答案:

答案 0 :(得分:10)

最后使用:

$this->mpdf->mPDF('utf-8','A4','','','15','15','28','18'); 

15=margin-left15=margin-right28=margin-top18=margin-bottom

现在效果很好。 此致,奥斯卡

答案 1 :(得分:1)

UPDATE 2019

由于版本7参数设置为数组:

$mpdfConfig = array(
                'mode' => 'utf-8', 
                'format' => 'A4',
                'margin_header' => 30,     // 30mm not pixel
                'margin_footer' => 10,     // 10mm
                'orientation' => 'P'    
            );
$mpdf = new \Mpdf\Mpdf($mpdfConfig);

参考:

  1. https://mpdf.github.io/reference/mpdf-functions/construct.html

  2. https://mpdf.github.io/configuration/configuration-v7-x.html