FPDF标题图像未显示在PDF上

时间:2018-04-05 11:02:41

标签: fpdf

我有一个简单的fpdf代码但我的标题图片没有显示...所有其他数据显示正确。

class PDF extends FPDF{

function Header(){
$this->Image('http://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');
$this->Ln(20);
}

function Footer()
{
$this->SetY(-15);
$this->SetFont('Arial','I',8);
$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
}

}

$pdf = new PDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont("Arial","B",14);
$pdf->SetTextColor(0,0,0);
$pdf->Cell(40,10,'Hello World!');

$pdf->Output();

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。我必须补充一下:

ob_end_clean();