fpdf

fpdf - going back to the previous page

I am generating pdf invoice using fpdf. Some invoices containing many items, and details need to go into the second page. However, I need the total, and other details to be displayed on the first page. Right now, if I can add new page like this: $pdf->AddPage(); But, this put everything into the second page, whatever after this s...

asp FPDF -display text with different character encoding eg.chinese/hebrew/thai.

I am using FPDF library for ASP.I am trying to add chinese font to it, but its not displaying correct characters.I wrote copied php code and converted to ASP style as extension. Its adding font file but does not display correct characters.It works for russian/german but not for chinese/hebrew/thai. Set pdf=CreateJsObject("FPDF") pdf.Cre...

fpdf multicell issue

how we display fpdf multicell in equal heights having different amount of content ...

Facing issue generating pdf using fpdf

I am getting http500 for the code below,I am not sure what is wrong. I am new to php. I have checked that PDF.php is in the right directory and so does fonts <?php define('FPDF_FONTPATH','/home/php/File/PDF/fonts/'); require('/home/php/File/PDF.php'); $pdf=new FPDF('P', 'mm', array(100,150)); $pdf->AddPage(); $pdf->SetFont('times'); $pd...

FPDF Header Question - Driving me crazy!

I am trying to generate a PDF that outputs Item Names onto a template PDF (using FPDI) with the Username listed on the top of each page. Every user can have a different number of items (i.e. if there are 1-4 items, only output one page; if there 5-8 items, output two pages, etc.) Here is an example of what I am trying to do: http://www...

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 take up to a minute to generate I can't really afford to have this slowdown, but I'd really like to take advantage of some TCPDF features ...

Use PHP to bind fields to a PDF template

I have various clients each sending me many pdf templates of application forms. My clients want me to export user information from my database and bind it to the templates. So for example, I have a pdf called "Fitness Form" and in it are empty fields (text, checkboxes) such as first name, last name, height, weight etc... I need to take...

PHP MYSQL FPDF retrieving pdf string stored as blob.

Using the above technologies, I want to create a PDF, store it in my db, and email it. All with the click of one button. I also want to call it up and have it be able to display with a hyperlink. I am very new to FPDF. Therefore, I am trying to start off very slowly. I began with this link stackoverflow Q I put both parts of his c...

PDF Disable Anti-alias on Lines

I'm creating a dynamically generated PDF using FPDF. My PDF requires many exactly horizontal/vertical lines in a grid and when rendered they are anti-aliased and look very fuzzy and unacceptable to the client. I need to remove the anti-aliasing for these(or all) lines in the doc. I know this is possible because it's shown correctly in ...

FPDF Page Break Question

I am using PHP and FPDF to generate a PDF with a list of items. My problem is if the item list goes on to a second or third page, I want to keep the Item Name, Quantity and Description together. Right now, it will go to a second page, but it may split up all of the details for a particular item. PLEASE HELP! <?php require_once('auth....

Arabic script in PDF created by UFPDF

Hello, I have issues with Arabic script inside a PDF document created by UFPDF, that is an extension of FPDF that supports unicode fonts. I have correctly converted Arial font to the format waited by UFPDF, and I have no issue with Unicode special characters in other languages (e.g. French, Spanish, German, etc.) The single characters ...

PROBLEM WITH FPDF

Hello i'm trying to create a report using FPDF from a website using php, see i need to put a signature line at the en of the report, but I don't know how, can you help me?? ...

How to create a pdf with a colored border

I need to create a pdf using the fpdf class with a colored border that is 15mm thick on the top, right and left and 32mm thick at the bottom (border color is orange for the sake of argument) which leaves a white background in the middle for the text content. How can I best achieve this please ? ...

html2pdf is not recognizing space and not able to add margin.

I am having a html page with no style attribute.HTML tags i am using are "center,line break tag, bold tag".Html page doesnot contain any table. its a simple document.I need help for:- Adding margin of 1 inch on all sides of the pdf file. I want to start every para with space of two tabs. ("&nbsp" generate space in html file but not in ...

How to create a passsword protected pdf file

I'm using html2fpdf for creating PDF documents. Now once I have created that, I want to make sure that the PDF file is password protected. How can this be done in PHP? ...

Is there a way to use the transactions in TCPDF when extending it with FPDI?

I am using TCPDF with FPDI's bridge. The issue I'm having is that as soon as I use the startTransaction() I get the following error: TCPDF ERROR: Cannot access protected property FPDI:$numpages / Undefined property: FPDI::$numpages and the script ends (because of the die in the TCPDF::Error() method). Here is the code I'm using: $pd...

FPDF in PHP, setX just indents first row

I use FPDF to creat PDF from PHP and i have a problem with the Write() function i use the following code and i want to indent the text block not just the first row: $pdf->SetX(60); $pdf->Write(5,'' . str_repeat( ' This is a test of setX.', 30 )); but as you can understand it's just indents the first row, any idea on how to move the w...

fPDF: how to strikeout/strikethrough justified text in multicell?

Hi, I am generating a PDF with fPDF. I need to strikethrough a long text inside a MultiCell. The text is justified to left and right, which probably is the source of the problem. Here is my code: //get the starting x and y of the cell to strikeout $strikeout_y_start = $pdf->GetY(); $strikeout_x = $pdf->getX(); $strikeText = "Some te...

Generate multiple pdfs using FPDF class

Hi, I have added a link on a page clicking on which generates a pdf and asks for download for which i have used fpdf class. My new requirement is that clicking on the link should generate n number of pdf with different content and should ask for downloading these pdfs. I am unable to find out the method to accomplish the same. Please...

Dynamic pages using FPDF

Hi, I have a link on a page which generates a pdf. I am using fpdf for the same. My requirement is that we have to generate a single pdf with different pages each having footer and header. E.g. a students makes a payment through cash, cheques. I have to generate a pdf displaying payment mode , amount etc. I am running a loop for each i...