使用Dejavu字体时,DOMPDF输出到服务器时未显示文本

时间:2019-04-28 19:04:35

标签: php html css fonts dompdf

当您使用DOMPDF在服务器上保存PDF时,如果您想在服务器上查找/打开PDF,那么您遇到过一个问题吗?

我要输出以下内容。

//Download PDF
$dompdf->stream("Invoice: ".$row['number'].".pdf", array("Attachment" 
=> true));
//save the pdf file on the server
file_put_contents('uploads/'.$row['number'].'.pdf', $dompdf- 
>output()); 

用于样式设置的

*{ font-family: DejaVu Sans;}

@font-face {
      font-family: "DejaVuSans";
      font-style: normal;
      font-weight: normal;
      src: url('fonts/DejaVuSans.ttf') format('truetype');
    }

0 个答案:

没有答案