PDF Editing in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:20:09Z http://stackoverflow.com/feeds/question/7364 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7364/pdf-editing-in-php 7 PDF Editing in PHP? kaybenleroll 2008-08-10T21:58:24Z 2009-10-21T20:56:21Z <p>Does anyone know of a good method for editing PDFs in PHP? Preferably open-source/zero-license cost methods. :)</p> <p>I am thinking along the lines of opening a PDF file, replacing text in the PDF and then writing out the modified version of the PDF?</p> <p>I have programmatically created PDF files in the past using FPDF, but found it a little unwieldy at times.</p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/7377#7377 1 Answer by Orion Edwards for PDF Editing in PHP? Orion Edwards 2008-08-10T22:41:00Z 2008-08-10T22:41:00Z <p>We use <a href="http://www.pdflib.com/pdflib-gmbh/" rel="nofollow">pdflib</a> to create PDF files from our rails apps. It has bindings for PHP, and a ton of other languages.</p> <p>We use the commmercial version, but they also have a <a href="http://www.pdflib.com/download/pdflib-family/pdflib-lite/" rel="nofollow">free/open source version</a> which has some limitations.</p> <p>Unfortunately, this only allows creation of PDF's. </p> <p>If you want to open and 'edit' existing files, pdflib do provide <a href="http://www.pdflib.com/products/pdflib-family/pdi/" rel="nofollow">a product which does this this</a>, but costs a <a href="http://www.pdflib.com/products/pdflib-family/prices-licensing/" rel="nofollow">LOT</a></p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/7402#7402 3 Answer by Juan for PDF Editing in PHP? Juan 2008-08-10T23:16:39Z 2008-08-10T23:16:39Z <p>Zend Framework can load and edit existing PDF files. I think it supports revisions too.</p> <p>I use it to create docs in a project, and it works great. Never edited one though.</p> <p>Check out the doc <a href="http://framework.zend.com/manual/en/zend.pdf.create.html" rel="nofollow" title="Reading List: Fog Creek Software Management Training Program">here</a></p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/7455#7455 11 Answer by grom for PDF Editing in PHP? grom 2008-08-11T00:49:58Z 2008-08-11T00:54:22Z <p>If you are taking a 'fill in the blank' approach, you can precisely position text anywhere you want on the page. So it's relatively easy (if not a bit tedious) to add the missing text to the document. For example with Zend Framework:</p> <pre><code>&lt;?php require_once 'Zend/Pdf.php'; $pdf = Zend_Pdf::load('blank.pdf'); $page = $pdf-&gt;pages[0]; $font = Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_HELVETICA); $page-&gt;setFont($font, 12); $page-&gt;drawText('Hello world!', 72, 720); $pdf-&gt;save('zend.pdf'); </code></pre> <p>If you're trying to replace inline content, such as a "[placeholder string]," it gets much more complicated. While it's technically possible to do, you're likely to mess up the layout of the page.</p> <p>A PDF document is comprised of a set of primitive drawing operations: line here, image here, text chunk there, etc. It does not contain any information about the layout intent of those primitives.</p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/20407#20407 2 Answer by Ross for PDF Editing in PHP? Ross 2008-08-21T16:15:39Z 2008-08-21T16:15:39Z <p>The PDF/pdflib extension documentation in PHP is sparse (something that has been noted in bugs.php.net) - I reccommend you use the Zend library.</p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/29835#29835 2 Answer by AdamTheHutt for PDF Editing in PHP? AdamTheHutt 2008-08-27T09:59:34Z 2008-08-27T09:59:34Z <p>If you need really simple PDFs, then Zend or <a href="http://www.fpdf.org/" rel="nofollow">FPDF</a> is fine. However I find them difficult and frustrating to work with. Also, because of the way the API works, there's no good way to separate content from presentation from business logic.</p> <p>For that reason, I use <a href="http://www.digitaljunkies.ca/dompdf/" rel="nofollow">dompdf</a>, which automatically converts HTML and CSS to PDF documents. You can lay out a template just as you would for an HTML page and use standard HTML syntax. You can even include an external CSS file. The library isn't perfect and very complex markup or css sometimes gets mangled, but I haven't found anything else that works as well.</p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/53075#53075 1 Answer by Darryl Hein for PDF Editing in PHP? Darryl Hein 2008-09-09T22:46:40Z 2008-09-09T22:46:40Z <p>Don't know if this is an option, but it would work very similar to Zend's pdf library, but you don't need to load a bunch of extra code (the zend framework). It just extends FPDF.</p> <p><a href="http://www.setasign.de/products/pdf-php-solutions/fpdi/" rel="nofollow">http://www.setasign.de/products/pdf-php-solutions/fpdi/</a></p> <p>Here you can basically do the same thing. Load the PDF, write over top of it, and then save to a new PDF. In FPDI you basically insert the PDF as an image so you can put whatever you want over it.</p> <p>But again, this uses FPDF, so if you don't want to use that, then it won't work.</p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/89052#89052 1 Answer by Joshua Chavanne for PDF Editing in PHP? Joshua Chavanne 2008-09-18T00:55:36Z 2008-09-18T00:55:36Z <p>I really had high hopes for dompdf (it is a cool idea) but the positioning issue are a major factor in my using fpdf. Though it is tedious as every element has to be set; it is powerful as all get out. </p> <p>I lay an image underneath my workspace in the document to put my layout on top of to fit. Its always been sufficient even for columns (requires a tiny bit of php string calculation, but nothing too terribly heady).</p> <p>Good luck.</p> http://stackoverflow.com/questions/7364/pdf-editing-in-php/1598933#1598933 0 Answer by Nitin for PDF Editing in PHP? Nitin 2009-10-21T05:49:12Z 2009-10-21T20:56:21Z <pre><code>&lt;?php //getting new instance $pdfFile = new_pdf(); PDF_open_file($pdfFile, " "); //document info pdf_set_info($pdfFile, "Auther", "Ahmed Elbshry"); pdf_set_info($pdfFile, "Creator", "Ahmed Elbshry"); pdf_set_info($pdfFile, "Title", "PDFlib"); pdf_set_info($pdfFile, "Subject", "Using PDFlib"); //starting our page and define the width and highet of the document pdf_begin_page($pdfFile, 595, 842); //check if Arial font is found, or exit if($font = PDF_findfont($pdfFile, "Arial", "winansi", 1)) { PDF_setfont($pdfFile, $font, 12); } else { echo ("Font Not Found!"); PDF_end_page($pdfFile); PDF_close($pdfFile); PDF_delete($pdfFile); exit(); } //start writing from the point 50,780 PDF_show_xy($pdfFile, "This Text In Arial Font", 50, 780); PDF_end_page($pdfFile); PDF_close($pdfFile); //store the pdf document in $pdf $pdf = PDF_get_buffer($pdfFile); //get the len to tell the browser about it $pdflen = strlen($pdfFile); //telling the browser about the pdf document header("Content-type: application/pdf"); header("Content-length: $pdflen"); header("Content-Disposition: inline; filename=phpMade.pdf"); //output the document print($pdf); //delete the object PDF_delete($pdfFile); ?&gt; </code></pre>