How to set custom page size in mPDF?

2020-05-24 04:34发布

I need some help with mPDF. I want to set up my custom page size (exactly: width 49mm and height 200mm), but I can not find solution. I found mPDF() manual (http://mpdf1.com/manual/index.php?tid=184) but there are only ready formats like A4, B5 etc. I have to set up my own page format.

标签: php pdf mpdf
1条回答
乱世女痞
2楼-- · 2020-05-24 05:12

There is an example that shows how to initiate the page with width and height.

// Define a page size/format by array - page will be 190mm wide x 236mm height
$mpdf=new mPDF('utf-8', array(190,236));
查看更多
登录 后发表回答