Skip to content

Generating a PDF in Codeigniter using mPDF

Last updated on July 19, 2020

Hey, today I will show you integrating mPDF into CodeIgniter Application. mPDF is a PHP Class, by using this we can easily generate PDF files from HTML Templates.So styling PDF files as easy styling your HTML template as you wish.

Here is the updated post on CodeIgniter 3 – Using mPDF with CodeIgniter 3

Following are the simple steps to use mPDF with CodeIgniter.

Download and extract mPDF

Download mPDF from : http://www.mpdf1.com/mpdf/index.php and Extract it to your application/third_party/ folder of your CodeIgniter.

Create a new file in your application/libraries/ name it M_pdf.php and copy past the blow PHP Script.

<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); include_once APPPATH.'/third_party/mpdf/mpdf.php'; class M_pdf { public $param; public $pdf; public function __construct($param = '"en-GB-x","A4","","",10,10,10,10,6,3') { $this->param =$param;
        $this->pdf = new mPDF($this->param);
    }
}

That is it. You had successfully integrated mPDF in CodeIgniter. Now let’s use it.

How to Use

Load the mPDF library just like your load other CI’s other libraries and then call pdf property. See the below example code for better understanding.

load->view('welcome_message', $data, true); 

        //this the the PDF filename that user will get to download
		$pdfFilePath = "output_pdf_name.pdf";

        //load mPDF library
		$this->load->library('m_pdf');

       //generate the PDF from the given html
		$this->m_pdf->pdf->WriteHTML($html);

        //download it.
		$this->m_pdf->pdf->Output($pdfFilePath, "D");		
	}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */

That’s it.

0 0 votes
Article Rating
Subscribe
Notify of
guest

132 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments