home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / fpdf / tutorial / tuto7.php < prev   
Encoding:
PHP Script  |  2004-12-31  |  258 b   |  12 lines

  1. <?php
  2. define('FPDF_FONTPATH','./');
  3. require('../fpdf.php');
  4.  
  5. $pdf=new FPDF();
  6. $pdf->AddFont('Calligrapher','','calligra.php');
  7. $pdf->AddPage();
  8. $pdf->SetFont('Calligrapher','',35);
  9. $pdf->Cell(0,10,'Enjoy new fonts with FPDF!');
  10. $pdf->Output();
  11. ?>
  12.