以任何方式将malayalam字体添加到PDF生成。现有的任何方法?
答案 0 :(得分: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();
将生成包含马拉雅拉姆语的pdf。