LanguagesPHPFPDF: PDF Creation and Manipulation in PHP

FPDF: PDF Creation and Manipulation in PHP

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

PHP has supported PDF document manipulation for at least a decade, which many PHP developers implement for commercial purposes via the PDFlib library, a fairly expensive piece of software (PDFlib 8 costs $1,095).

In his PHPBuilder article Creating and Manipulating PDFs with PHP and FPDF, Developer.com Contributing Editor Jason Gilmore introduces an open source PDF manipulation solution that is much more cost effective: FPDF. He writes:

FPDF is an open source PHP class released under a permissive license, which indicates that the software can be used for any purpose, commercial or otherwise. Bundling its PDF manipulation functionality into a single class, using FPDF is as simple as referencing it within your PHP script using the require statement.

In his article, Jason walks you through:

  1. Installing FPDF
  2. Creating Your First PDF with FPDF
  3. Adding multiple sections of text
  4. Adding images
  5. Adding a watermark

 

Read the full story at PHPBuilder:
Creating and Manipulating PDFs with PHP and FPDF

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories