Generate PDFs with PHP : PDF Functions : Functions PHP Source Code


PHP Source Code » Functions » PDF Functions »

 

Generate PDFs with PHP


Save this file, and then browse to it through your Web browser. PHP will execute the script, and a new PDF file will be created and stored in the location specified at the top of the script. Here's what you'll see when you open the file:

php pdf examples

<?php
// create handle for new PDF document
$pdf pdf_new();

// open a file
pdf_open_file($pdf"examples.pdf");

// start a new page (A4)
pdf_begin_page($pdf595842);

// get and use a font object
$arial pdf_findfont($pdf"Arial""host"1); 
pdf_setfont($pdf$arial10);

// print text
pdf_show_xy($pdf"There are more things in heaven and earth, Horatio,"50750); 
pdf_show_xy($pdf"than are dreamt of in your philosophy"50730);

// end page
pdf_end_page($pdf);

// close and save file
pdf_close($pdf);
?>


HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» PDF Functions