Is there any way to create a FDF file within PHP without using the dead FDF functions? I am aware that you can use pdftk to create a PDF from an existing FDF file, but I need to create the FDF file first with one field value set.

Or, is there a way to set one field in a PDF using PHP (skipping the FDF file creation) before allowing a user to download it?

For the heck of it, I tried creating an FDF file in PHP using fopen - did not work. I also know there is a generate_fdf operation within pdftk, but this does not allow me to set a specific value, at least not that I can see.

Does anybody know what an answer could be? I am pretty stuck. Unfortunately, I have no control over telling the client to scrap the full PDF (and instead use a webform).

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If I understand you correctly, you just don't want to use the FDF library in particular?

Have you tried TCPDF? See http://www.tcpdf.org/

If you want to use an existing PDF file as a template and only add some values, use the extending FPDI which extends TCPDF: http://www.setasign.de/products/pdf-php-solutions/fpdi/

link|improve this answer
I think this just might work! I did not want to use the FDF library because it is described on the PHP Manual as "considered unmaintained and dead". It looks like, however, that I should be able to use TCPDF and the FPDI extension to open the existing PDF, add form values/xhtml code to it using TCPDF, and then output the created PDF. Thank you very much!!! – Charx Mar 24 '11 at 17:28
I would use FPDF instead. Yes it is older, yes it does not have a lot of the classes included but the filesize is ~50KB versus 1 MB. Absurd if you ask me. – JM4 Sep 20 '11 at 19:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.