使用DomPDF在PDF中打印INR符号

时间:2019-01-17 16:17:36

标签: laravel laravel-5.5 dompdf

我想在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 &#x20b9; 9500 = &#x20b9; 9500</p>
 <p>Price &#8377; 5500 = &#8377; 5500</p>
 <p>Price &#8360; 500 = &#8360; 500</p>
 <p>Price &#x20a8; 2000 = &#x20a8; 2000</p>
 <p>Price &#8377; 2000 = &#x20B9; 2000</p>
 <p style="font-family: dejavusans !important;">Price &#2352; rupee </p>
 <p>I will display &#8377;</p>
 <p>I will display &#x20B9;</p>

我还在标题中添加了<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>,仍然没有运气。

我想念什么吗?

预先感谢

0 个答案:

没有答案