2008-11-21

【PHP】好用免費的 PHP PDF API

www.fpdf.org

用法:
 
require('fpdf.php');                                 // 注意路徑
$pdf = new FPDF();                                // 建立一份 PDF 文件
$pdf->AddPage();                                   // 新增紙張
$pdf->SetFont('Arial','B',16);              // 設定字型
$pdf->Cell(40,10,'Hello World!');      // 在文件上寫字
$pdf->Output();                                      // 正式輸出
 

沒有留言:

張貼留言