php – 未定义的字体:在Fpdf中

前端之家收集整理的这篇文章主要介绍了php – 未定义的字体:在Fpdf中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Fpdf库的新手,我需要在smarty中从数据库创建一个pdf.我已检查数据库中的数据是否正常,当传递字体名称显示以下错误
Warning: in_array() expects parameter 2 to be array,null given in /var/www/html/irmt/library/class/fpdf/fpdf.PHP on line 526
<b>FPDF error:</b> Undefined font: helvetica B

我的代码

$pdf->AddPage();
            $pdf->SetFont('Arial','B',14);
            $pdf->FancyTable($result);
            $pdf->Output();

请帮帮我怎样才能解决这个问题.
谢谢

我认为你在pdf创建中的__construct是有问题的,试试这个
require_once("fpdf.PHP");
    class pdf extends FPDF
    {
      function __construct()
       {
          parent::FPDF();
       }
    }
原文链接:https://www.f2er.com/php/135824.html

猜你在找的PHP相关文章