PHP Classes

File: application/third_party/fpdf/tutorial/tuto7.php

Recommend this page to a friend!
  Classes of harold rita   PHP Thesis Proposal Hub   application/third_party/fpdf/tutorial/tuto7.php   Download  
File: application/third_party/fpdf/tutorial/tuto7.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Thesis Proposal Hub
Store and publish research thesis documents
Author: By
Last change:
Date: 6 years ago
Size: 248 bytes
 

Contents

Class file image Download
<?php
define
('FPDF_FONTPATH','.');
require(
'../fpdf.php');

$pdf = new FPDF();
$pdf->AddFont('Calligrapher','','calligra.php');
$pdf->AddPage();
$pdf->SetFont('Calligrapher','',35);
$pdf->Cell(0,10,'Enjoy new fonts with FPDF!');
$pdf->Output();
?>