2
I want to create a report with fpdf, but every time I create a cell with some large text, it sits above the cell below. Is there any way to create a cell that automatically resizes>
2
I want to create a report with fpdf, but every time I create a cell with some large text, it sits above the cell below. Is there any way to create a cell that automatically resizes>
3
In the fpdf has the MultiCell
After a long time using the fpdf I migrated to mPDF which is based on the fpdf, but better. Allows the use of HTML tags for creation (greatly facilitates when assembling, mainly tables, merge contents, images, positioning, etc), allows styling with CSS, among other features.
See the official website:
1
When I needed something similar I used the method MultiCell
of the FPDF.
See the documentation here: http://www.fpdf.org/en/doc/multicell.htm
Edit: I found this tutorial that can help http://www.limelightonline.co.nz/blog/create-dynamic-pdf-with-php-tutorial/
Browser other questions tagged php pdf fpdf
You are not signed in. Login or sign up in order to post.
Thank you, I’ll take a look at the mPDF documentation.
– Rodrigo Mota Sousa