I am using MPDF in codeigniter but it is always portrait..
Why is it always portrait ?
public function downloadstatisticsWeek1()
{
$data = [];
$html = $this->load->view('pdf/weeklyKeyIndicatorReportWeek1', $data, true);
$pdfFilePath = "Pcdom Statistics As of ". date('F d Y')." .pdf";
$this->load->library('pcdom_pdf_converter');
$
$param = '"en-GB-x","Letter-L","","",10,10,10,10,6,3';
$pdfer = new mPDF($param);
$pdfer->WriteHTML($html);
$pdfer->output($pdfFilePath, "D");
}
It my $para is incorrect?