How can I use the mPDF with yii?

2.6k Views Asked by At

I am using yii framework to genereate pdf reports. using yiireport extension http://www.yiiframework.com/extension/yiireport I was able to generate the report. There are three options for generating the pdf, that is using TcPDF, DomPDF or mPDF library. Both TcPDF, DomPDF is working but mPDF is not working. How can I use the mPDF with yii. Please help.

1

There are 1 best solutions below

3
On

mPDF isn't supplied with yiireport by default. Yiireport installation steps say:

3) Download a PDF library, like mPDF and copy to protected/vendors directory

Then you should configure it in yiireport.php:

return array(
    'pdfRenderer' => 'mpdf',
     // You should extract mpdf.zip contents, which you got from
     // http://www.mpdf1.com
     // and point 'pdfRenderedPath' to it
    'pdfRendererPath' => 'application.vendors.mpdf', 
    'templatePath' => 'application.views.reports'
);