你好我想使用dompdf将html转换为pdf,我的HTML有中文文本。在 HTML 视图中,中文文本显示得很好,但是当我转换为 pdf 时,中文文本仅显示正方形。
这是我的代码
$html = $this->load->view('view_view', $data, TRUE);
//echo $html;
require("assets/dompdf1/autoload.inc.php");
define("DOMPDF_UNICODE_ENABLED", true);
$dompdf = new Dompdf();
$html = mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8');
$dompdf->loadHtml($html);
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'landscape');
// Render the HTML as PDF
$dompdf->render();
// Output the generated PDF to Browser
$dompdf->stream("View.pdf", array("Attachment" => false));
exit(0);
有人可以帮助我吗,我已经在任何地方搜索但仍然没有找到解决方案
确保字体支持中文字符,Dompdf 默认不支持。