Tagged Questions

76
votes
18answers
42k views

Which is the best PDF library for PHP? [closed]

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 it's getting quite ...
6
votes
3answers
263 views

Print multipage PDF on different printer-trays

I am generating a PDF by PHP with FPDF. This works well. Now what I want: From a multipage PDF all pages expect the last one have to print with paper from tray1 and the last page from tray2. Now ...
5
votes
4answers
275 views

FPDF.php is ~20 times smaller filesize than TCPDF.php? Why?

I know there have been a lot of posts about these two but figured I'd address a glaring question I have. A designer of ours recently sent me a few files with TCPDF already tied in because a friend of ...
4
votes
2answers
130 views

Tooltips in PDFs: are they possible?

I'm using the tcpdf PHP class for creating PDFs. Is there any solution to add tooltips to links?
3
votes
1answer
271 views

TCPDF / FPDF - Page break issue

I'm trying to create a PDF file with a table of data.. But when a page break is met it jumps to a new page everytime a new multicell is added to the page at the break point level..!? I have tried to ...
3
votes
2answers
498 views

Download PDF in Chrome from TCPDF

When a downloading PDF file in Chrome 12.0.742.91 (either as an attachment and inline), the download is interrupted (at the beginning it shows 125KB, but later 127518/0 B and then it stops entirely). ...
3
votes
3answers
691 views

TCPDF page rotation

I'm trying to generate a PDF file containing labels which are 202mm wide by 50mm heigh. I have managed to do this and added the required text and a barcode but my problem is that the labels print out ...
3
votes
7answers
1k views

Emailing A Dynamically Created PDF Through PHP

I've recently created an online template for creating job postings for our website. Everything is all done, it formats correctly in a browser, automatically posts to our website, bla bla bla. The ...
2
votes
0answers
315 views

TCPDF page borders?

I'm trying to achieve simple 1px solid red border around each page generated in TCPDF. Previously using other PDF scripts I was forced to draw a rectangle after doing some rough calculations with ...
2
votes
2answers
401 views

TCPDF QR Code is different all the time

I've got TCPDF installed in CakePHP 1.3 and am using it to generate a PDF of a QR code. It's a very simple function that creates a A9 sized page, two strings and one QR code. The QR code is for a ...
2
votes
1answer
288 views

tcpdf font ligatures (English)?

How do you generate ligatures in PHP tcpdf?
2
votes
4answers
3k 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 TCPDF? I do not want ...
2
votes
6answers
6k views

Manual Page Break in TCPDF

I am using TCPDF to generate the PDF in one of my projects. I simply create a HTML file and give it to the TCPDF to handle the PDF generation. But now I have some HTML where multiple certificates are ...
1
vote
1answer
78 views

What is the most efficient way to create large PDFs with TCPDF?

I am working my way through implementing a report generation solution using TCPDF. Some of my reports are small (2-3 pages), but the user has the option to select many reports at once, and request ...
1
vote
1answer
68 views

Position h1,h2,h3 and other tags with TCPDF

I am trying to make a PDF document with TCPDF using HTML code. At the moment I use this code: // set font $pdf->SetFont('dejavusans', '', 36); // add a page $pdf->AddPage(); $html = ' ...
1
vote
2answers
244 views

How to get text position in PDF using PHP, TCPDF & FPDI?

I have an issue: I need to upload some PDF template with data and then change it. For example, in PDF file is string: NAME: I need get position of this string and insert some text (username ...
1
vote
4answers
91 views

How to create PDF documents from image files, using PHP

With PHP application, I have to generate single PDF documents, from set of images. Which is best way to achieve this? Can I use TCPDF library, and can you give me some example?
1
vote
1answer
242 views

TCPDF font conversion results in missing glyphs

I'm using the TCPDF library to generate server-side PDFs daily in a cronjob. This library takes UTF8 strings from the DB and writes them into a PDF using the Arial Unicode MS font (also embedding it ...
1
vote
0answers
253 views

Problem with size of the imported PDF template with FPDI+TCPDF

I am stuck in a very complex situation. I am working on a PHP Web apps for Greeting card. For this, I am using some Linux tools and TCPDF and FPDI. Let me tell you how it all works: there is 4 page ...
1
vote
0answers
115 views

PDF password as URL parameter?

I am generating password protected PDF files on the fly on my web server. I was wondering if there was a way to pass the password as url parameter so the user is not prompted for password and it is ...
1
vote
0answers
360 views

tcpdf: poor image quality

I am using TCPDF to create PDF files converted from HTML input using it's writeHTML() function. However, images within the PDF have poor quality, while the original images have a high quality (as ...
1
vote
4answers
2k views

TCPDF UTF-8 problem

Im using latest TCPDF version(5.9). But have some strange problems with encoding. I need Lithuanian language symbols like: ąčęėįšųūž. But get only few of it. Other remain like ????? So what should I ...
1
vote
2answers
291 views

TCPDF - weird issue with footers

Check out the source code here: http://www.savvissl.com/demo1/showcode.php check out the script here http://www.savvissl.com/demo1/testPDF.php Here is the issue... the footer prints fine on every ...
1
vote
1answer
434 views

tcpdf and digital signature certification

I'm trying to do a simple pdf certificate signing in php with tcpdf. I'm running [example 52] (http://www.tcpdf.org/examples/example_052.phps) but the info on my pdf reader (osx preview) says: ...
1
vote
3answers
1k views

Getting text height to know fill height as in TCPDF

I'm trying to go through the code of TCPDF to understand how it calculates the height of the text to be rendered, but it's too much for me to handle without asking. What I want to know: in the PDF ...
1
vote
1answer
291 views

TCPDF keep together function to keep content on 1 page (PDF generation)

I'm wondering if there's a keep together function for TCPDF. I have one for FPDF, but I can't get it to work in TCPDF. Here's how I see it working within the PDF generation code: // ... PDF ...
1
vote
2answers
331 views

What do you think about “TCPDF like” PHP solutions to generate a PDF?

Don't you think the TCPDF solution force you to reivent the wheel, in term of layout rendering? I think TCPDF doesn't allow a good separation of concerns, and is just too limited when you try to ...
1
vote
1answer
716 views

Alternative to TCPDF for large-volume pdf generation

I generate pdf documents with TCPDF. It's fairly easy to setup and very good for creating pdf files with <10 pages. I can generate 50 pages long PDF files within the 60 seconds default php ...
1
vote
1answer
523 views

Need some help getting a pdf export to work properly

I'm using a 3rd party tool (TCPDF) to export data to PDF. If I use a form and post the data to the export php page it works fine. However, I have another need to call the same exporter page and pass ...
1
vote
1answer
465 views

I have two problems about tcpdf

Hi i am using tcpdf in my application and i have two question about that.I am able to get pdf output of a html page when i click specified button. My first question is:How can i download that html's ...
1
vote
1answer
236 views

TCPDF grey background for few cells?

I'm using TCPDF in CakePHP and trying to make some background (grey) for few cells. Well here the idea: so the grey thing would somehow have to be define outside of the cells containg text. Any ...
1
vote
4answers
3k views

TCPDF twice as slow as FPDF with same code

I currently use FPDF to create some fairly complicated reports and am trying to upgrade to TCPDF, but I've found that my same code running through TCPDF is about twice as slow. Because my PDFs already ...
1
vote
1answer
5k 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?
0
votes
2answers
38 views

HTML Rendering with TCPDF(PHP)

I am using TCPDF's writeHtml function for a page that renders properly in the browser. In the output PDF, the fonts are too small. I've tried with setFont, but it doesn't seem to have an effect. Does ...
0
votes
0answers
49 views

How to save dynamically generated PDF files into a zip file?

I am using the TCPDF library to create PDFs on the fly. For my application, I'd like the user to be able to batch download these documents into a ZIP file containing individual PDF documents. Any ...
0
votes
1answer
31 views

How to export MySQL image blobs into a PDF document?

I am currently using the TCPDF library to create PDFs on the fly. As part of my application, I store multiple image files (png, jpg, gif) in a MySQL database, in blob format. I'd like to use the ...
0
votes
1answer
35 views

PHP and importing pdf with forms

I'm having trouble importing an existing pdf file with forms (text fields, radio buttons...) with some php libraries like TCPDF, FPDI and PDFlib. When I import pdf file with forms, do some text print ...
0
votes
0answers
79 views

TCPDF: multiple WriteCell on a line

I need to port a complex report to PHP with TCPDF. The report is vertically divided in several sections. Every section consists of 2-3 blocks of text, of different heights. I implemented this using ...
0
votes
0answers
44 views

Marathi Font in TCPDF

I want to integrate marathi font in TCPDF. TCPDF is a PHP class for generating PDF documents. Is there any specific marathi (.ttf) font which works with TCPDF. Looking forward for reply Thanks in ...
0
votes
0answers
41 views

How to scale content to 1 pagein tcpdf

I am using TCPDF library to generate my PDF's from an HTML page. In this page, there is a table grid of 3 columns and 8 rows containing images. Currently, my last row is being shifted to page 2. I ...
0
votes
0answers
112 views

tcpdf configuration issue

I set up the main path for tcpdf like this: define ('K_PATH_MAIN', '/MAMP/htdocs/tcpdf/'); and the url path like this: define ('K_PATH_URL', 'http://localhost:8888/tcpdf/'); I'm using MAMP in ...
0
votes
2answers
108 views

Pound sign (£) missing from font in PDF using tcpdf & PHP

I have used the addTTFfont() method within the latest version of tcpdf (5.9.134) to convert the Arial font. However it does not print the British pound sign (£) and appears as though it skipped ...
0
votes
2answers
79 views

Text getting clipped when generating PDF using FPDF/FPDI/TCPDF

I have a PHP project where I am opening up a premade PDF, and filling it out with data via PHP. The problem I am having is that one of the text elements isn't showing up. I am positioning it towards ...
0
votes
0answers
27 views

TCPDF display header and footer on 2nd page

Does anyone knows how to display header and footer in selected pages only? Thanks
0
votes
0answers
141 views

Speed Up TCPDF File Generation

I've been using TCPDF in order to convert HTML to pdf. I noticed that single page invoice is generated in 5 seconds while a 7 page invoice is generated in 55 seconds, for a reason I can't tell. I'm ...
0
votes
0answers
88 views

manipulate pdf form with fill-able form fields and keep them fillable by user?

I got a form with fill-able form fields made by Acrobat, it is rather complex. Via PHP I want to "simply" attach another page, add a barcode to the form page and add meta info. Currently I do not ...
0
votes
2answers
346 views

PHP TCPDF Multiple WriteHTML() Not Working

I've written some code which created reports and then exports it to .PDF using TCPDF. I want to send different parts of the report to mail , therefor I need to use the function WriteHTML() more than ...
0
votes
1answer
39 views

Minimum list fo files for tcpdf to work

I'm experimenting with tcpdf as it seems to have a lot of behaviour built in which I was hand coding in fpdf. I've got the examples working on my server but the package does seem bloated with files ...
0
votes
0answers
201 views

PHP TCPDF Display Blank Page

I wrote a some queries which get data from DB and then display it in a table. I'm successfully displying the data, but when I'm trying to convert it to PDF using TCPDF all I can see is the header, ...
0
votes
0answers
55 views

Blank result when passing too much text on TCPDF

I'm making a PDF file using PHP and TCPDF, I need to create a contract out of some data on my database but, that's fine, the trouble I'm havign is, the PDF goes blank if I pass too much text in the ...

1 2