在 Yii2 中使用 TCPDF 生成 PDF
PDF generation with TCPDF in Yii2
我安装了这些软件包:"hbalkhi/yii2-pdf":"dev-master" 和 "setasign/fpdi-tcpdf":“1.6.2”。现在我正在尝试生成示例 pdf 文件,如下所示:
https://packagist.org/packages/hbalkhi/yii2-pdf
不幸的是,我所能得到的看起来像:screenshot
我该如何解决?
解决方法如下:
Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
Yii::$app->response->headers->add('Content-Type', 'application/pdf');
return $this->render('tcpdf');
我安装了这些软件包:"hbalkhi/yii2-pdf":"dev-master" 和 "setasign/fpdi-tcpdf":“1.6.2”。现在我正在尝试生成示例 pdf 文件,如下所示: https://packagist.org/packages/hbalkhi/yii2-pdf
不幸的是,我所能得到的看起来像:screenshot 我该如何解决?
解决方法如下:
Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
Yii::$app->response->headers->add('Content-Type', 'application/pdf');
return $this->render('tcpdf');