2015-01-07 77 views

回答

0

mPDF支持默認的malayalam字體。在包含mpdf文件夾到codeIgniter插入代碼的第三方目錄後,如

$html = $this->load->view('masterentries/pdfReport',$data,TRUE); 
include_once APPPATH.'/third_party/mpdf/mpdf.php'; 

     $pdf = new mPDF('ml', 'A4'); 

     $pdf->SetFooter($_SERVER['HTTP_HOST'].'{PAGENO}|'.date(DATE_RFC822)); 
     $pdf->WriteHTML($html); // write the HTML into the PDF 
     $pdf->Output(); 

將生成包含malayalam的pdf。