我正在使用yii框架来生成pdf报告。使用yiireport extension http://www.yiiframework.com/extension/yiireport我能够生成报告。生成pdf有三个选项,即使用TcPDF,DomPDF或mPDF库。 TcPDF,DomPDF都在工作,但mPDF无法正常工作。如何在yii中使用mPDF。请帮忙。
答案 0 :(得分:0)
默认情况下,yiireport不提供mPDF。 Yiireport安装步骤说:
3) Download a PDF library, like mPDF and copy to protected/vendors directory
然后你应该在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'
);