rashmi_k28 Posted October 20, 2008 Share Posted October 20, 2008 PHP Fatal error: Call to undefined function pdf_new() in /pathname/pdf.php on line 3 <?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, "", "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); ?> How to open a file in pdf format. Link to comment https://forums.phpfreaks.com/topic/129216-pdf/ Share on other sites More sharing options...
GKWelding Posted October 20, 2008 Share Posted October 20, 2008 To use functions such as pdf_new(); you whouls have the PDFlib installed in your PHP configuration. If you don't have it installed then go to the link below and install it... http://www.pdflib.com/products/pdflib-family/ Also, the function call should be PDF_new(); not pdf_new();... Link to comment https://forums.phpfreaks.com/topic/129216-pdf/#findComment-669925 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.