我正在使用mPDF来生成工资单。但是,工资单中的图标一旦生成就不会显示。它只留下一个空白区域:
图标应显示在突出显示的位置上。 到目前为止,这就是我所做的:
我正在使用Yii2 PHP框架,这里是我的动作控制器:
public function actionPdf($id)
{
$model = $this->findModel($id);
$earnings = EarningDetails::find()->where(['payslip_id' => $model->_id, 'status' => 1])->all();
$deductions = DeductionDetails::find()->where(['payslip_id' => $model->_id, 'status' => 1])->all();
$html = $this->render('view', [
'model' => $model,
'earnings' => $earnings,
'deductions' => $deductions,
]);
$mpdf = new mPDF('c','A5-L','0','',0,4,1,1,0,0);
$mpdf->allow_charset_conversion = true;
$mpdf->charset_in = 'windows-1252';
$mpdf->SetTopMargin(0);
$user_password = User::find()->where(['_id' => $model->user_id ])->one();
$password = $user_password->fname.$user_password->lname;
$mpdf->SetProtection(array(), $password, $password);
$mpdf->WriteHTML($html);
$mpdf->Output('Payslip.pdf', 'D');
exit;
}
我错过了什么吗?请告诉我。
答案 0 :(得分:5)
除了编码问题,这可能是一些事情。首先,您需要将FontAwesome与MPDF安装集成。其次,你需要考虑如何用HTML来表示字形。
从https://github.com/FortAwesome/Font-Awesome下载或克隆FontAwesome,并将 fonts / fontawesome-webfont.ttf 复制到您的MPDF ttfonts / 目录。
在您的MDPF config_fonts.php 文件中,将以下行添加到$this->fontdata
:
/* FontAwesome */
"fontawesome" => array(
'R' => "fontawesome-webfont.ttf"
),
您需要记住,通常用于将FontAwesome字形添加到HTML的CSS :before
伪选择器在mPDF中不起作用。
<强>为:强>
<i class="fa fa-smile-o"></i>
...因为这个FontAwesome CSS规则在mPDF中不起作用:
.fa-smile-o:before {
content: "\f118";
}
不可强>
<i class="fa"></i>
您可以通过在FontAwesome图标列表上单击来获取每个字形的unicode代码点,但Cheatsheet对此更方便。