我想在PDF中打印INR(印度卢比)符号,但是失败了,当生成PDF时,它显示?
而不是₹
上。
"barryvdh/laravel-dompdf": "^0.8.3"
我已经生成了PDF,例如:
use Barryvdh\DomPDF\Facade as PDF;
$pdf = PDF::loadView('report-test')->setPaper('a4');
return $pdf->stream('payslip.pdf');
PDF HTML:
<p>Price ₹ 9500 = ₹ 9500</p>
<p>Price ₹ 5500 = ₹ 5500</p>
<p>Price ₨ 500 = ₨ 500</p>
<p>Price ₨ 2000 = ₨ 2000</p>
<p>Price ₹ 2000 = ₹ 2000</p>
<p style="font-family: dejavusans !important;">Price र rupee </p>
<p>I will display ₹</p>
<p>I will display ₹</p>
我还在标题中添加了<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
,仍然没有运气。
我想念什么吗?
预先感谢