FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library.
FPDF requires no extension (except zlib to activate compression and GD for GIF support). It works with PHP 4 and PHP 5 (the latest version requires at least PHP 4.3.10).
Using FPDF I will demonstrate hpw to add images and text. Firstly we need to download the library from the below mentioned URL’s
http://www.fpdf.org/
http://fpdi.setasign.de/index.php?p=home
Extract both packages in same folder and [...]
Comments Off
Categories: PHP
PHP allows you to generate PDF files dynamically, which can be useful for a variety of tasks. FPDF is a free PHP class containing a number of functions that let you create and manipulate PDFs.
PDFlib
The PHP API contains a number of functions for handling PDF files designed to be used with the PDFlib. Although extensive, this library is not free for commercial use. A free version called PDFlib Lite is available for personal use, but is limited in functionality. To [...]
Categories: PHP

