kam_uoc Posted January 2, 2007 Share Posted January 2, 2007 [color=purple][font=Verdana]PDF generation using PHP[/font][/color]i tried to generate pdf report using PHP end up with an error sayingFatal error: Uncaught exception 'PDFlibException' with message 'Metrics data for font 'Arial' not found' in C:\wamp\www\pdftest\pdf.php:8 Stack trace: #0 C:\wamp\www\pdftest\pdf.php(8): pdf_findfont(Resource id #2, 'Arial', 'host', 1) #1 {main} thrown in C:\wamp\www\pdftest\pdf.php on line 8here is my simple way of code. please help.[code]<?php$pdf = pdf_new();// open a filepdf_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 textpdf_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 pagepdf_end_page($pdf);// close and save filepdf_close($pdf);?>[/code]Whats wrong here. Is it a configaration problem?Thank You Link to comment https://forums.phpfreaks.com/topic/32542-pdf-generation-using-php/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.