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));

?>    

答案 1
  1. 转到您的 DOMPDF 文件夹
  2. 将字体复制为.ttf(TrueType Font)或.otf(OpenType Font)到DOMPDF的根目录中
  3. 打开命令行并运行
    php load_font.php your_fonts_name ./your-normal.ttf ./your-bold.ttf ./your-bold-italic.ttf
  4. DOMPDF 现在创建了 Adobe Font Metrics 并将其复制到 lib/fonts/* - 您现在可以将其与
    font-family: your_fonts_name;

答案 2

你可以添加 css 字体 :

@font-face {
    font-family: new_font;
    src: url('my_font.ttf');
}

和比

div.ClJ{
    font-family: new_font; 
}

推荐