Tag Archives: mpdf not generating pdf in codeigniter

PDF creation using mpdf library is throwing error in codeigniter.

below code used for generating for pdf. $html== this variable store some html pages $this->load->library(‘mpdf’); $this->mpdf = new mPDF(); $this->mpdf->WriteHTML($html, 2); $this->mpdf->Output($file_name, ‘D’); if we print the html content it is displaying proper means there is no error until the pdf generation. you can use the below code to debug the issue. $mpdf->debug = true;… Read More »