Tagged Questions
A PHP class which allows to generate PDF files with pure PHP without using the PDFlib library.
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
742 views
Displaying values in FPDF
This is my code for generating pdf using FPDF in php. I want to display the semester, bill month and the billyear in the PDF file. I dont want to display the values in the table.
I want to display at ...
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
279 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 ...
5
votes
3answers
4k views
Is there a way to make FPDF/FPDI or Zend_Pdf support the parsing of PDFs greater than 1.4?
I am trying to add an existing PDF (created otherwise) to a PDF created with FPDF using FPDI. It seems to work find for most PDFs, but I get the following error:
FPDF error: Unable to find xref ...
4
votes
2answers
188 views
Sending an email with a PDF Files attachment using PHP
Ok guys, this is my first thread, and I have searched online but with no luck.
I'm doing an internship, and I'm working on a project that requires me to create a webpage that generates a pdf file when ...
3
votes
1answer
133 views
FPDF and TV/Film Screenplay formatting
I would like to create a PHP script which formats XML into a TV/Film Screenplay, this has proved somewhat more difficult than anticipated. I have created some of the code, however, there are ...
3
votes
1answer
147 views
PHP: How to combine these two classes?
Just like the title says I am having problems combining two classes. Altough this is about FPDF, i do think this is a regular question, since the question could have been about any script.
I am using ...
3
votes
1answer
276 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
131 views
Working with large images
I am trying to convert a large jpeg around (1200 x 100) to a PDF document.
I currently am using FPDF and am using this following code:
<?php
require('fpdf.php');
$pdf =& new ...
2
votes
0answers
112 views
Using FPDF - not working on XP laptop
I'm trying to use FPDF on my server and part of that is downloading an image file that is placed in the PDF. The code is working perfectly on one machine and a server, however when using another XP ...
2
votes
1answer
128 views
What is the algorithm solve this in FPDF?
I am going to generate report by using FPDF.
My Problem Like this the horizontal data is too long to display in A4 or A3 :
V -> H1 -> H2 -> H3............> HTotal
v1 -> 1 ...
2
votes
1answer
1k views
FPDF error: Could not include font metric file
I have a app which was done by someone else and now i am asked to look into one issue.
When a pdf report is generated it throws an error. This app uses FPDF to generate the PDF
FPDF error: Could not ...
2
votes
1answer
151 views
php edit interactive pdf form
I have an interactive pdf that has a few forms with input fields and checkboxes. I need to open this pdf with php and complete the fields. Is there a way to do that with php? If yes can anyone ...
2
votes
1answer
56 views
How to make tabular layout in pdf?
I am using fpdf to generate pdf in php.
I want following layout :
Red area denotes logo while the black area denotes text.
I have used header function to generate header that is logo and the text. ...
2
votes
2answers
447 views
How to make an FPDF's generated pdf non cacheable?
I'm checking an app written in raw php, without any framework. In a module there are reports generated with FPDF and working fine, except that the pdfs gets cached. The original invocation of the ...
2
votes
1answer
392 views
PHP PDF generation problem
i have used FPDF for creating pdf in PHP.
I used session variable to pass the variable between one form to another form. When i provide a value in the
Report.php
<?php
...
2
votes
3answers
1k views
wrong symbol exported in fpdf… ñ as ñ ..?
I dont know whats the problem but whenever I call the letter ñ from $_POST function it puts it in my fpdf as ñ .. any idea why?
2
votes
1answer
769 views
Edit existing PDF file using FPDF
I have been search throughly on Google and stackoverflow, but it looks like I don't find any "clear" information regarding edit existing PDF file using FPDF ...
So, what I wan't to do is add a ...
2
votes
5answers
1k views
FPDF Fatal error: Allowed memory size of 33554432 bytes exhausted (PHP)
This is a often discussed issue but so far no solution seems to fit for my problem.
I'm generating a pdf with $pdf = new FPDF(); . This works fine. But now I want to have a footer with the page ...
2
votes
2answers
2k views
Make text wrap in a cell with FPDF?
Right now when I use a cell with text, it all stays on one line. I know I could use the write function, but I want to be able to specify the height and width.
This is what I have now, but as I said ...
2
votes
1answer
275 views
Why this strange behavior in google chrome and IE?
I am using fpdf library and generating pdfs... What happens when i click ExportToPdf button in firefox it opens the Save as dialogbox but google chrome and IE just opens the pdf file in browser, the ...
2
votes
6answers
7k views
Save a PDF created with FPDF php library in a MySQL blob field
I need to create a pdf file with the fpdf library and save it in a blob field in my MySQL database.
The problem is, when I try to retrieve the file from the blob field and send it to the browser for ...
2
votes
5answers
497 views
How To Generate PDFs with PHP [closed]
I have some HTML that includes bolding, italics, small tag, big tag, blockquote tag, bullets, and numbered items. I need to convert it to PDF via PHP. I tried FPDF, but it was entirely too complex. I ...
2
votes
2answers
4k views
Can FPDF/FPDI use a PDF in landscape format as a template?
I am trying to import an existing PDF as a template with FPDI. The template is in landscape format. If I import the template into a new document the template page is inserted in portrait form with ...
1
vote
2answers
51 views
FPDF insert text but with dynamic fields
I'm using this solution to give users the option to create more fields.
It's limited in 25 fields.
I create the option to print this form, I'm using FPDF.
But as the form can have until 15 fields I ...
1
vote
0answers
57 views
How to change pagesize in FPDF or mPDF after creating the instance
How can i change the size of the page after creating it? I need to scale the page to the size of the PDF-template i want to place on it. For now, i need to create a page, place template, read size of ...
1
vote
2answers
60 views
use preg_split instead of split
I'm using FPDF v. 1.53. Now I switched to a newer PHP version. The function split is now deprecated. I had on line 108 the following code in fpdf_eps.php:
$lines = split ("\r\n|[\r\n]", $data);
I ...
1
vote
1answer
67 views
FPDF refuses to collaborate through inheritance
I have two code examples below. One works, but the second (using extend to create a new class wrapper) doesn't.
Note, I've greatly simplified the following examples.
Approach #1
page.php:
<?php
...
1
vote
1answer
67 views
FPDF image under layout
I import a PDF file with 2 pages using fpdi, it works.
I need to insert an image in my imported pdf but its in under the original pdf layout so I cant see the image that i want to insert.
By the way, ...
1
vote
1answer
68 views
What is the best way to generate pdf or other file type like xls on php?
I usualy use fpdf to do that , but i feel confuse and not simple enough . is there any php framework except that .
1
vote
1answer
203 views
wkhtmltopdf vs fpdf and questions regarding use and performance (HTML to PDF)
I have not been able to find answers to my questions on the several posts about the same topic, that is why I will be asking more specific questions here.
My questions are about wkhtmltopdf and fpdf. ...
1
vote
0answers
98 views
Search pdf and extract page when found
Does anyone know how to search through a multiple page pdf for some text (e.g., an invoice number) and then extract that page to a separate file? I see how I can use FPDI to extract a particular page ...
1
vote
2answers
188 views
FPDF Image from Dynamic Source. php/png/pdf. Can't get image to work
http://babymoments.co/preview/highres%20preview/5_357/
According to the FPDF documentation here: http://www.fpdf.org/en/doc/image.htm
You are supposed to be able to use an Image from a dynamic ...
1
vote
0answers
124 views
Why can imagemagick save out image previews but fpdf not save out pdf files to server side folders
I tried the sample codes for imagemagick and it was able to save out document previews to the folder on the server.
I tried sample code for fpdf and it was able to render the PDF file fine when it is ...
1
vote
0answers
336 views
Display MultiLine in Different X position using FPDF MultiCell Function
Hi everybody,
i am struggle with MultiCell function. what i am trying to say is i want to print 3 or 4 line content.so i used MultiCell like this
$pdf->SetXY(34,139);
...
1
vote
1answer
266 views
Why is there a left padding in a cell using FPDF in php?
I am printing a cell using the FPDF(http://www.fpdf.org/) class in php. The cell should be placed into the top left corner.
Everything works great, except that a left padding is added inside the ...
1
vote
1answer
212 views
FPDF Error: Error while decompressing stream
I've built a web application incorporating the fpdf library which allows clients to upload pdf files which my system then combines into a monthly report (adding a cover, contents page etc.).
Last ...
1
vote
1answer
433 views
FPDF utf-8 encoding (HOW-TO)
Does anybody know how to set the encoding in FPDF package to utf-8? Or at least to ISO-8859-7 (Greek) that support greek characters?
Basically I want to create a pdf file containing greek characters.
...
1
vote
0answers
281 views
fpdf basic table question
Im using FPDF (generate PDF from PHP), so my question is, what is wrong in my basic code, I want to show all the items in my array in the table titles, but only some get shown,
like the list is to ...
1
vote
1answer
79 views
Separate base class(template) and derive classes (data).?
General
require('fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
I want to separate it two ...
1
vote
1answer
780 views
FPDF Background Images: what size for a good A4 background
I've been struggling for a while now trying to add a good looking background to my PDF created using the FPDF class. I tried a photoshop document based on international A4 paper, but this was too big. ...
1
vote
1answer
346 views
fpdf alignment of cells
I'm trying to generate a PDF using fpdf and I'm having a small problem
I need to have 2 cells, like the following:
------------------------- -------------------------
| Address Line 1 | ...
1
vote
1answer
829 views
Cannot Save File to directory using FPDF
I won't break out or show the lengthy code in actually building the PDF itself because I know the file generation is working fine.
When I try the following:
$pdf->Output('abc.pdf', 'F');
I ...
1
vote
1answer
358 views
Sending fpdf attachments does not work on my linux suse server but it does on my shared hosting account
I have a php program i have developed on the internet. So far i have used a shared hosting package. Everything worked until i moved to a vps (apache2 suse 9.1 plesk) . I have found certain php ...
1
vote
2answers
576 views
How to get the exact modified PDF using FPDF/FPDI?
i have a task to modify the PDF and add an image into it, for which I Have used the FPDF and FPDI libraries.. whose action code is given below:
<?php
require_once('fpdf.php');
...
1
vote
2answers
131 views
converting a given file to PDF
hey all,
is there any way to convert a given file (this could be of any type) in to a pdf file in .net or php?
eg: suppose there is a upload link to upload your file of any ...
1
vote
0answers
262 views
PHP securing PDF appears corrupt with Adobe Reader X
I've had a probelm turn up that is dumbfounding me. We have developed a PHP module, to take an existing PDF (PDF version 1.3) document and add a programmatically generated 'image', update the ...
1
vote
1answer
340 views
Trying to download “Hello world” using JS and PHP
I'm trying to download a pdf when i click a link.
These are my codes:
function issue_bill(order_id){
$.post('orders/issueBilll?id_order='+order_id,
order_id,
function()
{
...
1
vote
3answers
136 views
How can I create an online pdf merger for my website?
Here are a couple of website examples:
http://www.pdfmerge.com/
http://www.pdfmerger.org/en/
Is this simple or difficult coding? Can this be accomplished with fpdf?