DOMPDF 的自定义字体
2022-08-30 15:18:13
我正在使用DOM PDF 0.6.0 Beta 2。我想在PDF文件中使用自定义字体(字体:“Segeo Print”,“Lucida手写”,“夜空中的飞机”)。
我按照指南在我的PHP代码中安装和使用字体,这里给出了 http://code.google.com/p/dompdf/wiki/CPDFUnicode
但是我无法在我的PDF中获得所需的字体。你可以在这篇文章中找到我的代码。请让我知道我如何解决这个问题。
<?php
require_once("dompdf_config.inc.php");
$html = "<html>
<head>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'>
<style>
*{font-size:15px;}
div.ClJ{font: nightsky;}
</style>
</head>
<body>
<div class='ClJ'>This text is in DIV Element</div><br /><br />
</body>
</html>";
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$pdf = $dompdf->output();
$dompdf->stream("dompdf_out.pdf", array("Attachment" => false));
?>