Tagged Questions

74
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 ...
7
votes
3answers
4k views

Changing or eliminating Header & Footer in TCPDF

AddPage() in tcpdf automatically calls Header and Footer. How do I eliminate/override this?
6
votes
3answers
265 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
281 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
131 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
277 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
1answer
86 views

TCPDF Browser Popup Title

EDIT in accordance with @Will suggestions here is a simplified question... Is there a tag I can use in the TCPDF PDF Creator file (example_003.php) to set the browser title to be anything other than ...
3
votes
2answers
500 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
696 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 ...
3
votes
3answers
647 views

PHP / TCPDF: Template Bug?

I have been using TCPDF for sometime. It's simple to use, outputs low size PDF and is under active development. Following is the code for a page which should only have Hello World and a footer ...
3
votes
2answers
619 views

eps image (from inkscape) not showing up in tcpdf

Using php and TCPDF to generate a pdf file. Everything works great except when I try to write an EPS image to the pdf using ImageEPS(). Nothing shows up. No errors (it can definitely find the ...
2
votes
1answer
43 views

TCPDF long links with no spaces not displayed in writeHTMLCell()

I am trying to generate a pdf from html that has this url ...
2
votes
2answers
77 views

PHP: converting html file to pdf

I have an html file named welcomemailtemplate.html and I need to convert that file to a PDF. I first read this file using the following method provided by Yii framework: $filename = ...
2
votes
2answers
151 views

How to use Arial in PDF using TCPDF without embedding

I have successfully added the font Arial to TCPDF, however the filesize is large due to it embedding the font. I would have thought Arial was a standard font on the vast majority of users machines, ...
2
votes
2answers
175 views

TCPDF - Keep h1, h2, etc. tags with content

I'm generating a PDF using TCPDF and lots of writeHTML() calls. Sometimes when I have header tags (h1, h2, etc.) in the HTML, the headers are at the bottom of a page and the corresponding content gets ...
2
votes
3answers
599 views

TCPDF - Pagenumbers not exactly right aligned

I am using TCPDF to generate a pdf. My issue is the following line from the Footer() method: $this->Cell(0, 10, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 'T', false, ...
2
votes
1answer
317 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
1answer
2k views

PHP MySQL: Saving PDF to Database

I am generating PDFs with TCPDF, I want to save the generated pdf as blob in a MySQL db. What data should I save to the db? Code for PDF page <?php require_once('../config/lang/eng.php'); ...
2
votes
1answer
288 views

tcpdf font ligatures (English)?

How do you generate ligatures in PHP tcpdf?
2
votes
1answer
1k views

Using TCPDF and FPDI with cake php

I have go TCPDF setup in my cake php install and am now trying to also use FPDI with it as i need to add a PDF to the start of the PDF that is being generated. WHen trying to do this i am using 3 ...
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 ...
1
vote
0answers
33 views

HTML setting in order to convert it properly into a PDF

I would like to get a html brochure designed and then converted into pdf via html to PDF library. I am trying to understand what size or how the html should be created in order for it to convert ...
1
vote
1answer
80 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
69 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
1answer
116 views

TCPDF ERROR: Error in 1D barcode string

Getting the following error while generating 1D barcode images in pdf document with array of barcodes using tcpdf module. "TCPDF ERROR: Error in 1D barcode string" if (file_exists("data1.txt")) ...
1
vote
1answer
41 views

Why is TCPDF Image smaller than it should be?

I have a 842 x 595 PDF, 72 dpi and i'm inserting a 1200x800 image, again with 72dpi. scaleFactor is 1, imageScale is 1 in theory, my pdf should show part of the image (the first 842px). In reality ...
1
vote
2answers
247 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
3answers
165 views

Repeat a table at the beginning of each page

I am using PHP to generate a report dynamically. TCPDF is used to generate a PDF. I want to repeat a particular table at the beginning of each page. How can I detect the page breaks and do this? ...
1
vote
1answer
306 views

TCPDF Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 25368 bytes)

I am using the TCPDF library to simultaneously download pdf's onto my local drive. PHP CODE: $text = //an array of id's $id = explode(',', $text); for ($i=0;$i<count($id);$i++){ if(//id[$i] ...
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
0answers
254 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
1answer
520 views

UTF-8 PDF generated with TCPDF showing up fine in Adobe Acrobat but corrupted in Illustrator and Google preview

I use PHP and TCPDF to generate online invoices encoded in utf8. I've created font definition files following the tutorial on the tcpdf website using PT-sans .ttf file. Generated pdf files look fine ...
1
vote
1answer
485 views

How to center image in header (TCPDF)

I have the code below and I am guessing what is the center of the page by eye. How would I center the image the proper way? class MYPDF extends TCPDF { //Page header public function ...
1
vote
1answer
573 views

TCPDF add line across page in header

I have created a custom header for my PDF in TCPDF and I would like to add a blue line about 2px width that goes across the page at the bottom of the header but cant figure out how? Please could ...
1
vote
1answer
506 views

Facing problem in TCPDF fonts style

some of the fonts like ArialMT, Arial-boldMT, PTSans-bold.. when i am using this font like $pdf->SetFont("ArialMT", "", 22); then i got error like.. TCPDF ERROR: Could not include font ...
1
vote
2answers
645 views

TCPDF - How to adjust height of header?

I am using TCPDF to convert html to pdf format. I am passing a string into the php script to be set as my header. I am having a hard time setting the height of my header. I have tried using ...
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
4answers
2k views

TCPDF - printing table from mysql

while($info3 = mysql_fetch_array($result3)){ $Name = $info3["Name"]; $Address = $info3["Address"]; $Age = $info3["Age"]; // ...
1
vote
1answer
614 views

TCPDF very slow generation of dynamic arabic PDF

I've been using a combination of nusoap & TCPDF to ping a web service and dynamically fill out a PDF with content. The PDF itself (in english) takes around 8-9 seconds to complete for about 36 ...
1
vote
2answers
292 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
111 views

Is there a full reference of supported style (CSS) statements in TCPDF

is ther anyone that has a full reference of working CSS statements in TCPDF? I tried to look on the site but i found nothing! Thx
1
vote
1answer
384 views

TCPDF write custom barcode in html template

instead of type below in action.class.php : $pdf->write1DBarcode('CODE 39', 'C39', '', '', '', 18, 0.4, '', 'N'); How can i make it custom so that i can write it in the template? the reason is when ...
1
vote
1answer
435 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
76 views

There in PDF not change the style which i have added in HTML?

In my site, I am using the TCPDF to generate the pdf from HTML ,and i also using the image in header but i can't show the style which i added in html. Ljubljana,'.date("d.m.Y").' ...
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
1k views

TCPDF HTML with Special Characters displays empty PDF file

I am using TCPDF Library Version: 5.9.011. I am trying to execute HTML layout as PDF. For which I tried with example provide with the site $html = '<h1>HTML Example</h1> ...
1
vote
2answers
333 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
720 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 2 3 4