What is the best PHP pdf generator class? #pdf generator
Edit
by Suchi Hari Narlikar - 10 years ago (2015-01-22)
PDF generator code
| Please suggest a PDF generator class in PHP. |
Ask clarification
1 Recommendation
FPDF: Free PDF generation class without PDFlib
FPDF is a class to generate PDF files with straight PHP, that is to say without using the PDFlib library.
Here is a list of version 1.5 main features:
- Choice of measure unit, page format and margins
- Page header and footer management
- Automatic page break
- Automatic line break and text justification
- Image support (JPEG and PNG)
- Colors
- Links
- TrueType and encoding support (Central European, Cyrillic and Greek)
- Page compression
Visit the fpdf.org site to have access to the complete documentation, tutorials, forum and download the full package.
| by Manuel Lemos 26695 - 10 years ago (2015-01-22) Comment
This PHP class can generate generic PDF documents without requiring any external libraries. |