我正在使用DOMPDF库生成pdf文件。问题是渲染土耳其人物。
它不会呈现所有土耳其人物。例如,对于单词“Oranı”,它显示“Oranı”。
知道如何解决这个问题吗?
我尝试使用所有内置字体系列,如“dejavu”,“helvetica”,“arial”。
配置:
在DOMPDF配置文件(dompdf_config.inc.php)
中def("DOMPDF_UNICODE_ENABLED", true);
mb_internal_encoding('UTF-8');
在我的HTML中,
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style>
body { font-family: "arial"; }
</style>
</head>
<body>
<--- my content --->
</body>
</html>