使用dompdf无法显示中文文本

问题描述 投票:0回答:1

你好我想使用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);

The error

有人可以帮助我吗,我已经在任何地方搜索但仍然没有找到解决方案

php html codeigniter-3 dompdf cjk
1个回答
0
投票

确保字体支持中文字符,Dompdf 默认不支持。

© www.soinside.com 2019 - 2024. All rights reserved.