Filling PDF Forms with PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T16:19:28Z http://stackoverflow.com/feeds/question/77873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php 5 Filling PDF Forms with PHP mno 2008-09-16T22:19:08Z 2009-07-03T09:30:07Z <p>Is there a way to fill PDF forms and then save (flatten) them to PDF files from within PHP? Which library would you recommend?</p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/77930#77930 1 Answer by pix0r for Filling PDF Forms with PHP pix0r 2008-09-16T22:28:20Z 2008-09-16T22:28:20Z <p>Looks like this has been <a href="http://stackoverflow.com/questions/7364/pdf-editing-in-php">covered before</a>. Click through for relevant code using Zend Framework PDF library.</p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/77950#77950 0 Answer by foxxtrot for Filling PDF Forms with PHP foxxtrot 2008-09-16T22:29:58Z 2008-09-16T22:29:58Z <p>We use <a href="http://www.pdflib.com/" rel="nofollow">PDFLib</a> at work. The paid version isn't very expensive, and there is a more limited open source edition, if you are unable to shell out for the paid version.</p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/78010#78010 1 Answer by Ciaran for Filling PDF Forms with PHP Ciaran 2008-09-16T22:36:07Z 2008-09-16T22:36:07Z <p>Try using <a href="http://www.htmldoc.org" rel="nofollow">HTMLDOC</a>, there is a free/opensource version available</p> <p>There is more info on how to create a pdf using HTMLDOC with PHP:</p> <p><a href="http://www.htmldoc.org/documentation.php/CallingHTMLDOCfromPHP.html" rel="nofollow">http://www.htmldoc.org/documentation.php/CallingHTMLDOCfromPHP.html</a></p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/78300#78300 4 Answer by bmb for Filling PDF Forms with PHP bmb 2008-09-16T23:21:41Z 2009-01-07T22:07:24Z <p>The libraries and frameworks mentioned here are good, but if all you want to do is fill in a form and flatten it, I recommend the command line tool called pdftk (PDF Toolkit).</p> <p>See <a href="http://www.accesspdf.com/pdftk/" rel="nofollow">http://www.accesspdf.com/pdftk/</a></p> <p>You can call the command line from php, and the command is</p> <p>pdftk <em>formfile.pdf</em> fill_form <em>fieldinfo.fdf</em> output <em>outputfile.pdf</em> flatten</p> <p>You will need to find the format of an FDF file in order to generate the info to fill in the fields. Here's a good link for that:</p> <p><a href="http://www.tgreer.com/fdfServe.html" rel="nofollow">http://www.tgreer.com/fdfServe.html</a></p> <p>[Edit: The above link seems to be out of commission. Here is some more info...]</p> <p>The pdftk command can generate an FDF file from a PDF form file. You can then use the generated FDF file as a sample. The form fields are the portion of the FDF file that looks like</p> <pre><code>... &lt;&lt; /T(f1-1) /V(text of field) &gt;&gt; &lt;&lt; /T(f1-2) /V(text of another field) &gt;&gt; ... </code></pre> <p>--<br /> bmb</p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/89023#89023 0 Answer by Joshua Chavanne for Filling PDF Forms with PHP Joshua Chavanne 2008-09-18T00:49:54Z 2008-09-18T00:49:54Z <p>I've had plenty of success with using a form that submits to a php script that uses fpdf and passes in the form fields as get variables (maybe not a great best-practice, but it works). </p> <pre><code> &lt;?php require('fpdf.php'); $pdf=new PDF(); $pdf-&gt;AddPage(); $pdf-&gt;SetY(30); $pdf-&gt;SetX(100); $pdf-&gt;MultiCell(10,4,$_POST['content'],0,'J'); $pdf-&gt;Output(); ?&gt; </code></pre> <p>and the you could have something like this.</p> <pre><code> &lt;form action="fooPDF.php" method="post"&gt; &lt;p&gt;PDF CONTENT: &lt;textarea name="content" &gt;&lt;/textarea&gt;&lt;/p&gt; &lt;p&gt;&lt;input type="submit" /&gt;&lt;/p&gt; &lt;/form&gt; </code></pre> <p>This skeletal example ought to help ya get started. </p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/112712#112712 0 Answer by Chris Dolan for Filling PDF Forms with PHP Chris Dolan 2008-09-22T00:55:08Z 2008-09-22T00:55:08Z <p>I wrote a Perl library, <a href="http://search.cpan.org/dist/CAM-PDF/" rel="nofollow">CAM::PDF</a>, with a <a href="http://search.cpan.org/dist/CAM-PDF/bin/fillpdffields.pl" rel="nofollow">command-line interface</a> that can solve this. I tried using an FDF solution years ago, but found it way too complicated which is why I wrote CAM::PDF in the first place. My library uses a few heuristics to replace the form with the desired text, so it's not perfect. But it works most of the time, and it's fast, free and quite straightforward to use.</p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/737488#737488 0 Answer by Zahar for Filling PDF Forms with PHP Zahar 2009-04-10T12:30:33Z 2009-04-10T12:30:33Z <p>We use <a href="http://www.koders.com/php/fid7E5A44427C2FBD7BBBF6E22770DFB12E1FC8D42D.aspx" rel="nofollow">phppdflib</a> library. </p> http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/1078577#1078577 0 Answer by proofy for Filling PDF Forms with PHP proofy 2009-07-03T09:30:07Z 2009-07-03T09:30:07Z <p>generating fdf File with php: see <a href="http://www.php.net/manual/en/book.fdf.php" rel="nofollow">http://www.php.net/manual/en/book.fdf.php</a></p> <p>then fill it into a pdf with pdftk (see above)</p>