【发布时间】:2018-04-26 15:25:50
【问题描述】:
我想生成包含中文和英文的PDF。从字面上看,它必须支持所有语言。
我正在使用 html2pdf,我尝试了很多选项但都不起作用。
这是我的代码,尝试了不同的字体。它需要字体但不能正确打印。而是打印一些空格字符。
$html2pdf = new HTML2PDF('P', 'A4', 'en', true, 'UTF-8');
$html2pdf->setDefaultFont('arialunicid0'); //using this line
// display the full page
$html2pdf->pdf->SetDisplayMode('fullpage');
// convert
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
【问题讨论】:
-
也可以试试 wkhtmltopdf。作为另一种选择
-
或许有一些解决方案posted in here可以帮到你