[ಹೌದು ಯಾರಲ್ಲಿ在从 dompdf 渲染时应该像这样显示。
这是我的代码..我使用了 noto sans kannada 常规字体
ಹೌದು ಯಾರಲ್ಲಿ文本应该像这样显示
<?php reference the Dompdf namespace
use Dompdf\Dompdf;
// instantiate and use the dompdf class
$dompdf = new Dompdf();
$dompdf->set_option('enable_remote', TRUE);
$dompdf->set_option('isFontSubsettingEnabled', true);
$dompdf->set_option('isHtml5ParserEnabled', true);
$dompdf->loadHtml($html,'UTF-8');
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'portrait');//or landscape
// Render the HTML as PDF
$dompdf->render();
$dompdf->stream($filename, array('Attachment'=>0));
// Output the generated PDF to Browser
$dompdf->stream($filename);
//direct download
//$dompdf->stream("quotation.pdf", array("Attachment" => true))
?>
您需要从 Google Fonts 安装字体并将其添加到 Dompdf。
稍后将其添加到您的代码中,不要忘记更改字体路径和文件名。
$dompdf->set_option('font_path', '/fonts/kannadafont.ttf');