Reputation: 1
With the help of a PHP Class called EZPDF.
Upvotes: 0
Views: 81
Reputation: 36373
Try,
<?php
include ('class.ezpdf.php');
$pdf = new Cezpdf();
$pdf->selectFont('./fonts/Helvetica.afm');
$pdf->ezText('Hello World!',50);
$pdf->ezStream();
?>
Upvotes: 1