Step 1 - Install the PDFlib extension
PDFlib is not included with the default PHP 5.3 distribution, so you will have to install it. Download the PHP version of the PHPlib library from here .
The Windows build of PHP 5 comes in many different varieties. I'll assume that you are using the VC9 non-thread safe build, and that you have installed PHP to the default location.
Extract the libpdf_php.dll file from the PDFlib-7.0.4p6-MSWin32-php\bind\php5\php-530-nozts_VS9\ directory in the PHPlib zip file to C:\Program Files\PHP\ext .
Then add the following two lines to the PHP.ini file located in C:\Program Files\PHP :
[PHP_PDF]
extension=libpdf_php.dll
Step 2 - Create the PDF document
Open up a new try block, create a new PDFlib instance, and then start a new PDF document by calling begin_document .
try {
$pdf=new PDFlib();
if(!$pdf->begin_document("",""))
{
throw new PDFlibException("Error creating PDF document. ".$pdf->get_errmsg());
}
Step 3 - Set the PDF properties
The set_info function allows you set some optional document properties. Here we define the author and title of the PDF document.
$pdf->set_info("Author","Matthew Casperson");
$pdf->set_info("Title","Create a PDF document with PHP");

Step 4 - Create a new page
The begin_page_ext function is called to start a new page in the PDF document. Here we have specified the page to have dimensions of 595 x 842 points, making it an A4 page.
$pdf->begin_page_ext(595,842,"");
Other common page sizes (in points) are:
a4 595 x 842
a5 421 x 595
a6 297 x 421
letter 612 x 792
legal 612 x 1008
ledger 1224 x 792
11x17 792 x 1224
Step 5 - Prepare a font
To print any text to the PDF document we first need to prepare the font that will be used. The load_font function takes a locally installed font and prepares it for use with PDFlib. The setfont function specifies that we will be using this font when writing text.
$font=$pdf->load_font("Helvetica-Bold","winansi","");
$pdf->setfont($font,24.0);
Step 6 - Write some text
Using the set_text_pos and show functions we can write some text to the PDF document at the specified location.
$pdf->set_text_pos(50,800);
$pdf->show("Hello World");
Step 7 - End the page
The end_page_ext function ends the page that we started in step 4.
$pdf->end_page_ext("");
Step 8 - End the document
The end_document function ends the PDF document we started in step 2.
$pdf->end_document("");
Step 9 - Send the PDF document
Typically a PHP script is used to send a HTML document. In this case we need to override this default behaviour to tell the recieving browser that it is about to recieve a PDF document. The following code creates the HTTP headers required to identify the data being sent as a PDF document, which will cause the browser to open up Adobe Reader (or the default PDF application) when the data is transmitted.
$buffer=$pdf->get_buffer();
$len=strlen($buffer);
header("Content-type: application/pdf");
header("Content-Length: $len");
header("Content-Disposition: inline; filename=example.pdf");
echo $buffer;
Step 10 - Deal with any errors
The try block is closed, and a catch block is created. If there were any errors creating the PDF document, the user is notified.
}
catch (PDFlibException $e)
{
echo 'Error Number:'.$e->get_errnum()."n";
echo 'Error Message:'.$e->get_errmsg();
}
Conclusion
PDFlib makes creating PDF documents a breeze. You could extend this example to allow users to download pre-filled PDF documents, or to create PDF versions of a web page for easy printing.