I am using mpdf
library in PHP to create a pdf file from HTML. I need to set the page mode in landscape
mode.
Here is the code I am using :
$mpdf=new mPDF('c');
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;
However, this is setting the page mode in portrait
mode. Any idea, how to set the landscape mode in mpdf ?