Hi im trying to get php_pdf.dll working so i can use it to generate pdf's i've placed it in the ext folder and uncommented extension=php_pdf.dll in the php.ini file. but wen i run this script :
<?php
// create handle for new PDF document
$pdf = pdf_new();
// open a file
pdf_open_file($pdf, "philosophy.pdf");
// start a new page (A4)
pdf_begin_page($pdf, 595, 842);
// get and use a font object
$arial = pdf_findfont($pdf, "Arial", "host", 1); pdf_setfont($pdf, $arial, 10);
// print text
pdf_show_xy($pdf, "There are more things in heaven and earth, Horatio,", 50, 750);
pdf_show_xy($pdf, "than are dreamt of in your philosophy", 50, 730);
// end page
pdf_end_page($pdf);
// close and save file
pdf_close($pdf);
?>
which is and example off Generate PDFs with PHP [PHP & MySQL Tutorials]
i get this error saying it cant find the fonts or somthing..
Fatal error: Uncaught exception 'PDFlibException' with message 'Metrics data for
font 'Arial' not found' in V:\Core\htdocs\Byron\pdf.php:12 Stack trace: #0
V:\Core\htdocs\Byron\pdf.php(12): pdf_findfont() #1 {main} thrown in
V:\Core\htdocs\Byron\pdf.php on line 12
i havnt installed it right have I?