我正在使用 DOM PDF 0.6.0 Beta 2。我想在 PDF 文件中使用自定义字体(字体:'Segeo Print'、'Lucida Handwriting'、'Airplanes in the Night Sky')。
我按照指南在我的 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));
?>