yii2 pdf生成不起作用

Posted

技术标签:

【中文标题】yii2 pdf生成不起作用【英文标题】:yii2 pdf generation not working 【发布时间】:2016-01-03 14:15:10 【问题描述】:

我已使用此链接pdf yii2 installer 安装 mpdf, 这是行不通的。

我的行动是:

 public function actionReport() 
 // get your html raw content without any layouts or scripts
 $content = '<html><head></head><body><h1 class="kv-heading-1">hello</h1></body></html>';

 // setup kartik\mpdf\Pdf component
 $pdf = new Pdf([
   // set to use core fonts only
   'mode' => Pdf::MODE_CORE,
   // A4 paper format
   'format' => Pdf::FORMAT_A4,
   // portrait orientation
   'orientation' => Pdf::ORIENT_PORTRAIT,
   // stream to browser inline
   'destination' => Pdf::DEST_BROWSER,
   // your html content input
   'content' => $content,
   // format content from your own css file if needed or use the
   // enhanced bootstrap css built by Krajee for mPDF formatting
   //'cssFile' => '@vendor/kartik-v/yii2-mpdf/assets/kv-mpdf-bootstrap.min.css',
   // any css to be embedded if required
   'cssInline' => '.kv-heading-1font-size:18px',
   // set mPDF properties on the fly
   'options' => ['title' => 'Krajee Report Title'],
   // call mPDF methods on the fly
   'methods' => [
     'SetHeader'=>['Krajee Report Header'],
     'SetFooter'=>['PAGENO'],
   ]
 ]);

 // return the pdf output as per the destination setting
 return $pdf->render();

输出:

我应该为 pdf 做什么?

【问题讨论】:

【参考方案1】:

尝试使用

 // set to use core fonts only
'mode' => Pdf::MODE_BLANK,

【讨论】:

【参考方案2】:

我认为您的问题是由于呈现文档时使用的编码。我过去遇到过一些类似的问题,将模式设置为 UTF8 似乎总能解决我的问题。

'mode' => Pdf::MODE_UTF8

【讨论】:

在我的情况下 MODE_BLANK 和 MODE_UTF8 都不起作用

以上是关于yii2 pdf生成不起作用的主要内容,如果未能解决你的问题,请参考以下文章

yii2 kartik select2 插件在模态下不起作用

url生成pdf输出时iframe onload不起作用

在 Windows PHP exec() 上运行(生成 PDF)soffice LibreOffice 不起作用

升级到 Yii2,ORM 不起作用

yii2 composer.phar 更新不起作用

身份验证在 yii2 中不起作用