0
votes
2answers
42 views

reducing the size of generated pdf using FPDF

I'am generating pdf for every pages in a pdf file using FPDF. Its working properly. But the main problem is with the file size. Some files have size of more than 2Mb.I want to limit the size. Can i ...
0
votes
0answers
13 views

TCPDF cannot recognize some css parameters

TCPDF should be on of the best php to pdf library. But it can't recognize <style> div.table { font-family: Calibri; font-size: 9px; height:50px; width:100px; border:1px ...
4
votes
2answers
81 views

Is it possible to Generate a Pdf Design by using Fpdf

I want to Generate a Pdf in Php Using FDPF. can we draw a table in fpdf. I want to Design a Table In the Image given Using FPDF.Is it Possible. I am new to fpdf Please help me. I want Above table ...
0
votes
0answers
76 views

Getting data from the DB and converting it to PDF

I've a page which I want to generate a pdf file whenever someone adds data to the database. I have everything done but the pdf script. I Googled it, and I found a library called "FPDF". Downloaded ...
0
votes
1answer
90 views

How to pre-fill a PDF online?

I start with dynamic data, and an empty PDF file to be filled. How could I fill up the pdf using the dynamic data ? EDIT : I found a way to fill up the pdf with FPDF.org and a plugin. First, add ...
0
votes
1answer
181 views

FPDF email attachment and outlook

I am trying to work with FPDF and attach the resulting file to an email. I have seen this post Email PDF Attachment with PHP Using FPDF and the answer given works when sending an email to my self and ...
0
votes
0answers
91 views

How to convert CGridView into PDF

I tried the extension pdf-grid with FPDF, but cannot support for CSqlDataProvider completely, if i hide the header of the Grid then its works. But i wants to use with header. Is there any idea to get ...
0
votes
1answer
98 views

Using html2pdf to generate a report using php and mvc pattern

I have setup an application that somehow uses a front-controller. And I came across a library called html2pdf. This library converts html to pdf. Like this: <?php $content = " ...
0
votes
0answers
103 views

mPDF->SetTopMargin causes page break

I am automating pdf construction with mPDF (a php library). Several pages of the pdf need to have a top and bottom margins of different sizes. I am calling $mpdf -> WriteHTML($html_segment, 2) for ...
0
votes
0answers
82 views

how to generate a pdf from webservice on a linux server

I am on a shared hosting (dreamhost) server I need to generate a pdf from mysql data. I am accessing the data using php. I am currently emailing using javascript, phpmailer and html - but instead ...
0
votes
0answers
64 views

Color profiles (AdobeRGB, sRGB) and fpdf

I'm generating PDF vector graphics using the fpdf library with some extensions from http://bililite.com/blog/blogfiles/pdf/pdftest.php?which=GraphicsPDF&output=source (and various other extensions ...
0
votes
1answer
616 views

Export a web-page to a PDF with FPDF

Complicated question with a (hopefully) simple answer. I'm looking into FPDF to export a web-page to a PDF. The web-page has been formatted for Print media, but since print media can be kind of iffy ...
0
votes
1answer
137 views

Regarding footer issue in pdf file creation using php and fpdf library

I have created and successfully created my pdf file in php with fpdf library support. But the problem is my footer is showing more space. I want to reduce the space underneath my text. My output is ...
-2
votes
1answer
102 views

Merging PDF's memory

Im stumbled with this problem. Im merging multiple PDF-files into one depending on what PDF's the client choose. If i choose the smallest size PDF's and merge it works fine but as soon as its a lil ...
0
votes
0answers
520 views

fpdf, fpdi, fpdm & fpdf_merge with multi page pdf - php conflicts

Hoping for some help. I'm trying to use the php below to do 4 things. The 1st long chunk adds a signature image to my sig.pdf template. The 2nd chunk fills form fields in my template3.pdf template.The ...
0
votes
2answers
615 views

how do you make a table like this with FPDF using PHP?

how do you make a table like this with FPDF using PHP? I can't seem to figure out how to do this with $this->Cell
5
votes
3answers
804 views

How could you dynamically create a pdf within wordpress?

I'm using a Contact Form 7 to have the users enter data, then based on their data entry, I need to add different text to the pdf before outputting the entire pdf. For example, if the user says they ...
0
votes
3answers
2k views

FPDF error: Alpha channel not supported:

I am trying to generate PDF from HTML (output of a PHP file). I am using FPDF to generate the PDFs. I have three PNG transparent images (Alpha channel), that go on top of each other and it looks ...
2
votes
1answer
1k views

Inserting a manual page-break in a pdf document - PHP

I have 3 arrays ($PSA, $NP and $OP) which I use to generate a pdf. The function I use to generate the pdf is given below. The problem is, all the values in the arrays cannot be contained in one page ...
0
votes
1answer
2k views

How to use SetAutoPageBreak in fpdf

How do you use SetAutoPageBreak in fpdf if you want it to be enabled? On the net I've found all sorts of variants: $p->SetAutoPageBreak(1,20); $p->SetAutoPageBreak(true,20); ...
0
votes
1answer
1k views

fpdf page break issue

I have this loop that prints 6 rows (multicell) for about 30 times. The issue is that when it reaches the bottom page it prints 2 or 3 rows from the multicell and on the next page it prints the other ...
0
votes
1answer
72 views

SQL: cannot echo result when row is empty

$pdf->Table('select @N:=@N+1 AS no, A.department as "DEPARTMENT", A.no as "ASSET NUMBER" , A.total as "ASSET TOTAL PRICE" , ...
0
votes
1answer
289 views

FPDF: Printing the text from another PHP echo

I'm trying to figure out how to print out dynamic content without creating a physical TXT file to print the data from. In other words, I'm calling mytext.php and writing the contents out ... ...
0
votes
1answer
214 views

FPDF class - Too large columns not manageable in single row

I used inbuilt FPDF to generate a PDF. I was facing a problem to display approx. 40 columns in a single row. The columns neither get displayed i next row nor they get wrapped, they got cut at the end ...
1
vote
1answer
466 views

Best PHP to PDF library for mailing labels/price tags/custom page sizes

I'm planning a PHP project that will be replacing the basic (off-line) templates used to generate some Dymo label formats as well as Avery 5160 mailing label sheets. I've seen numerous mentions of ...
1
vote
2answers
226 views

Clean up after creating the pdf

I'm generating a pdf file with html2fpdf. $pdf = new HTML2FPDF(); $pdf->HTML2FPDF("P","mm","A4"); $pdf->AddPage(); $pdf->WriteHTML($html); $pdf->output('sample.pdf'); This sample ...
0
votes
1answer
283 views

fpdf works properly if i call the controller and doesnt work if i call it through jquery

I am able to get the output of a pdf using fpdf, the problem is that i am not to generate it if the call the function through jquery... rather the pdf is display in firebug?How to solve this issue ...
0
votes
0answers
122 views

After generation pdf filehow to convert a word using php

I have really big problem. Previously, I used FPDF to generate PDF file. Now, customer's request has change so he wants to change format, I need to generate doc file. but as long as I have pdf file, ...
0
votes
1answer
338 views

unable to print a greek character in pdf using php script & fpdf

while trying to print a greek character 'φ' I get the following character printed on the pdf 'φ'
0
votes
1answer
215 views

FPDF including a php file?

I want to send a dynamic page for printing to labels using Fpdf, however I'm not entirely sure how to get Fpdf to display the contents of my php file. The php file renders a page with the users url, ...
0
votes
3answers
440 views

php code for creating .pdf file is not working on server

I am using PHP code for creating .pdf file and I am filing forms values in that .pdf file. On localhost the code is working fine it creates .pdf ,edit .pdf file .... But when i am putting same code ...
0
votes
0answers
288 views

Keeping form fields after FPDF/FPDI generation

I've scoured the forums/web for this answer, but I've failed to come up with a solution. I have a PHP based form that inputs form data onto a PDF generated by FPDF/FPDI (utilizing a pre-made ...
5
votes
1answer
750 views

Disable auto-rotate and center in PDF files

I have a PHP script that uses FPDF to create PDF files with exact dimensions (mailing labels). Problem is, when they are printed, the default options throw off all the margins and shrink everything. ...
1
vote
1answer
486 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 .
7
votes
4answers
3k 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 ...
0
votes
1answer
363 views

How to embed dynamic PDFs?

I have a website that dynamically generates PDFs using FPDF (from fpdf.org) based on an HTML form passed to a PHP script. As of right now, it all works fine to the point where the information passes ...
7
votes
4answers
9k 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 ...
1
vote
4answers
3k 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
2answers
1k views

Sending variables from jQuery to FPDF

I'm trying to send the contents of a form with jQuery to FPDF. The variables aren't showing but the pdf isn't giving an error either; it's just blank. I have only one variable so far for brevity. Any ...
1
vote
1answer
656 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
1k 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 ...
0
votes
1answer
3k views

How to create pdf file with mysql data?

Can anyone give me simple example, how to create pdf file with mysql data? Im using fpdf http://www.fpdf.org/ for pdf creation. I want to print these data: $result = mysql_query("SELECT Name, ...
2
votes
1answer
485 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 ...
4
votes
1answer
7k 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 | ...
0
votes
1answer
302 views

PDF to PDF converter

It may sound but I'm looking for PDF to PDF converter in linux, preferably command line tool. The problem is that I've got lots of PDF documents with MRC (Mixed Rasted Content, ...
8
votes
3answers
2k 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 ...
1
vote
2answers
528 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
416 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 ...
0
votes
4answers
5k views

How to Center Text in FPDF?

How can I have this generated text appear centered in the page. Generated = $_POST method ... so I don't know how long will the text in input be. I need to have a pre-determined center parameter ...
0
votes
2answers
498 views

PDF Manipulation with Adobe's Form Input Fields

I am trying to simplify a process where I currently use my hand calculations of X & Y Co-Ordinates of each value. Which works fine, but is causing me a lot of pain as I have to do quite a number ...

1 2