<?php
require_once 'File/PDF.php';

$pdf File_PDF::factory('P''mm''a4');

$pdf->open();
$pdf->addPage();

// add an Image
$pdf->Image('../../../pics/heart.jpg',20,18,66);

// add some text using the Arial font
$pdf->setFont('Arial''B'20);
$pdf->setFillColor('rgb'00.80.2);
$pdf->text(11060'Hello');

// add some text using the Courier font
$pdf->setFillColor('rgb'0.80.50.5);
$pdf->setFont('Courier'''40);
$pdf->text(12070'World');

// output the pdf
$pdf->output('mypdf.pdf'false);
?>