<?php
include('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->Image('http://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');
//$pdf->Ln();
$pdf->SetFont('Times','',12);
for($i=1;$i<=2;$i++)
$pdf->Cell(0,10,"Printing line number $i",0,1);
$pdf->Output();
“打印行号 x”文本出现在图像上方 - 而不是下方。有什么想法可以让它出现在图像之后吗?注释掉的$pdf->Ln()
似乎没有什么区别。
谢谢!