Tagged Questions

0
votes
0answers
14 views

How to generate a PDF file for an array using the TCPDF library?

How can I generate a PDF file with images from the array below? [19]=> array(9) { ["id"]=> string(10) "5894178151" ["created_at"]=> int(1258736077) …
0
votes
1answer
67 views

Maual Page Break in TCPDF

I am using TCPDF to generate the PDF in one of my project. I simply create a HTML and give it to the TCPDF to handle the PDF generation. But now I have certain HTML where multiple …
0
votes
1answer
93 views

Creating a new Pdf by Merging Pdf documents using TCPDF [php]

How can I create a new document using other pdfs that I'm generating? I have methods to create some documents, and I want to merge them all in a big pdf, how can I do that with T …
0
votes
0answers
59 views

TCPDF Div Border doesn’t work

Hi, I tried to generate pdf using TCPDF with html content. My html code is <div style="border:1px solid #000; width:200px; height: 100px"> Test Border</div> But it …
0
votes
2answers
350 views

How to calculate the height of a MultiCell/writeHTMLCell in TCPDF?

I try to create a PDF with multiple pages and need to calculate the height of each individual element (MultiCell) in advance to prepare for a page break. According to the documenta …
0
votes
2answers
182 views

PHP / TCPDF library - Size an image in a PDF to a specific number of inches?

Does anyone know how to get TCPDF to output a .GIF file with a specific number of inches width x height? I am trying to get a GIF embedded in a PDF so that it will print at exact …
0
votes
1answer
25 views

text flowing out of border in pdf

I have created a pdf using tcpdf in php. i have a table with one row and one column. when i put the content from a form which is a textarea, the content in the form flows out of th …
5
votes
9answers
3k views

Which is the best PDF library for PHP?

I'm wondering which is the best PDF creation library for PHP, mainly for creating PDFs from scratch (not as much HTML to PDF)? I have worked with FPDF for quite a while now, but i …
0
votes
1answer
158 views

tcpdf - start with existing PDF document

I have several PDF templates that I would like to load and modify and output using tcpdf. Is it possible to load an existing PDF and use it as a starting point in tcpdf?