我在mpdf中有一些文字问题。
我有古吉拉特语学生成绩的html代码。我想将其转换为PDF。我用了mpdf。
一切都运转正常,但"计算机"这个词出了问题。
在HTML中它是正确的但在转换为pdf后显示错误
在HTML中(正确):કોમ્પ્યુટર(计算机)
PDF格式(不正确):કોમપ્યુટર(电脑)
代码
<?php
header( 'Content-Type: text/html; charset=utf-8' );
include("../../bootfile.php");
include("../mpdf.php");
mb_internal_encoding("UTF-8");
?>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<?php
$mpdf = new mPDF('utf-8');
$html = '
Most of this text is in English, but has occasional words in Vietnamese: Mô?t kha?o sa´t mo´i cho biê´t, or maybe even Arabic:
કોમ્પ્યુટર
';
$mpdf->SetAutoFont();
$mpdf->WriteHTML($html);
$mpdf->Output();
?>
它的问题是什么?有谁可以帮助我?
提前致谢。