00001 <?php 00002 define('FPDF_FONTPATH','./'); 00003 require('../fpdf.php'); 00004 00005 $pdf=new FPDF(); 00006 $pdf->AddFont('Calligrapher','','calligra.php'); 00007 $pdf->AddPage(); 00008 $pdf->SetFont('Calligrapher','',35); 00009 $pdf->Cell(0,10,'Enjoy new fonts with FPDF!'); 00010 $pdf->Output(); 00011 ?>
1.7.1