Filling PDF Forms with PHP - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T16:19:28Zhttp://stackoverflow.com/feeds/question/77873http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/77873/filling-pdf-forms-with-php5Filling PDF Forms with PHPmno2008-09-16T22:19:08Z2009-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#779301Answer by pix0r for Filling PDF Forms with PHPpix0r2008-09-16T22:28:20Z2008-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#779500Answer by foxxtrot for Filling PDF Forms with PHPfoxxtrot2008-09-16T22:29:58Z2008-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#780101Answer by Ciaran for Filling PDF Forms with PHPCiaran2008-09-16T22:36:07Z2008-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#783004Answer by bmb for Filling PDF Forms with PHPbmb2008-09-16T23:21:41Z2009-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>...
<< /T(f1-1) /V(text of field) >>
<< /T(f1-2) /V(text of another field) >>
...
</code></pre>
<p>--<br />
bmb</p>
http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/89023#890230Answer by Joshua Chavanne for Filling PDF Forms with PHPJoshua Chavanne2008-09-18T00:49:54Z2008-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> <?php
require('fpdf.php');
$pdf=new PDF();
$pdf->AddPage();
$pdf->SetY(30);
$pdf->SetX(100);
$pdf->MultiCell(10,4,$_POST['content'],0,'J');
$pdf->Output();
?>
</code></pre>
<p>and the you could have something like this.</p>
<pre><code> <form action="fooPDF.php" method="post">
<p>PDF CONTENT: <textarea name="content" ></textarea></p>
<p><input type="submit" /></p>
</form>
</code></pre>
<p>This skeletal example ought to help ya get started. </p>
http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/112712#1127120Answer by Chris Dolan for Filling PDF Forms with PHPChris Dolan2008-09-22T00:55:08Z2008-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#7374880Answer by Zahar for Filling PDF Forms with PHPZahar2009-04-10T12:30:33Z2009-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#10785770Answer by proofy for Filling PDF Forms with PHPproofy2009-07-03T09:30:07Z2009-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>