How to set custom page size in mPDF?

ZaquPL picture ZaquPL · May 14, 2014 · Viewed 23.4k times · Source

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.

Answer

Brian Tiffin picture Brian Tiffin · May 14, 2014

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));