使用 PHP 在 pdf 生成中使用 MPDF malayalam 字体

using MPDF malayalam fonts in pdf generation using PHP

任何将马拉雅拉姆语字体添加到 PDF 生成的方法。有任何方法吗?

mPDF 支持默认的马拉雅拉姆语字体。在将 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。