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 / tuto2.php < prev    next >
Encoding:
PHP Script  |  2004-12-31  |  773 b   |  42 lines

  1. <?php
  2. require('../fpdf.php');
  3.  
  4. class PDF extends FPDF
  5. {
  6. //Page header
  7. function Header()
  8. {
  9.     //Logo
  10.     $this->Image('logo_pb.png',10,8,33);
  11.     //Arial bold 15
  12.     $this->SetFont('Arial','B',15);
  13.     //Move to the right
  14.     $this->Cell(80);
  15.     //Title
  16.     $this->Cell(30,10,'Title',1,0,'C');
  17.     //Line break
  18.     $this->Ln(20);
  19. }
  20.  
  21. //Page footer
  22. function Footer()
  23. {
  24.     //Position at 1.5 cm from bottom
  25.     $this->SetY(-15);
  26.     //Arial italic 8
  27.     $this->SetFont('Arial','I',8);
  28.     //Page number
  29.     $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
  30. }
  31. }
  32.  
  33. //Instanciation of inherited class
  34. $pdf=new PDF();
  35. $pdf->AliasNbPages();
  36. $pdf->AddPage();
  37. $pdf->SetFont('Times','',12);
  38. for($i=1;$i<=40;$i++)
  39.     $pdf->Cell(0,10,'Printing line number '.$i,0,1);
  40. $pdf->Output();
  41. ?>
  42.