PDF Imposition in PHP - Stack Overflow
most recent 30 from stackoverflow.com
2009-11-26T14:56:14Z
http://stackoverflow.com/feeds/question/88836
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/88836/pdf-imposition-in-php
3
PDF Imposition in PHP
Erin
2008-09-18T00:10:55Z
2009-02-05T13:16:13Z
<p>I'm looking for a PHP library that will allow me to create a print-ready PDF. The imposition should include 1-up, 4-up, 24-up, etc. layouts, and crop marks.</p>
<p>FPDF, TCPDF and PHP's included PDF libraries allow me to create an image and plop it on a PDF, but the more advanced layouts and crop marks are a bit beyond me.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/88836/pdf-imposition-in-php/88855#88855
1
Answer by cazlab for PDF Imposition in PHP
cazlab
2008-09-18T00:14:56Z
2008-09-18T00:14:56Z
<p><a href="http://www.pdflib.com/download/" rel="nofollow">http://www.pdflib.com/download/</a></p>
<p>Here is a library you didn't mention that will allow the creation of PDFs using php. Hope it's sufficient.</p>
http://stackoverflow.com/questions/88836/pdf-imposition-in-php/88862#88862
0
Answer by Mark Nold for PDF Imposition in PHP
Mark Nold
2008-09-18T00:16:25Z
2008-09-18T00:16:25Z
<p>I've had a lot of success with <a href="http://www.pdflib.com/" rel="nofollow">PDFLib</a> it's a very powerful library with PHP (and C, C#, Perl etc) bindings.</p>
http://stackoverflow.com/questions/88836/pdf-imposition-in-php/88935#88935
0
Answer by Joshua Chavanne for PDF Imposition in PHP
Joshua Chavanne
2008-09-18T00:35:24Z
2008-09-18T00:35:24Z
<p>FPDF has always worked out for me. There is a lot of robust functionality in there, and you just gotta keep at it to find it. </p>
<p>The ImageEPS class extension is VERY useful for making things print ready, though it is not without its issues (as its a rather old extension and doesn't support .ai and .eps files very well, save as backwards compatible as you can.) </p>
<p>You can use the drawing features to generate crop marks. </p>
<p>Header and footer set up is a bit counter-intuitive but it works. (<a href="http://www.fpdf.org/en/tutorial/tuto2.htm" rel="nofollow">http://www.fpdf.org/en/tutorial/tuto2.htm</a>) </p>
<p>The orientation of the pages and the sizing are pretty easy to set.(<a href="http://www.fpdf.org/en/doc/fpdf.htm" rel="nofollow">http://www.fpdf.org/en/doc/fpdf.htm</a>)</p>
<p>Multicell is a VERY useful function for dynamically generated content, though there is no way of handling overflow built it. You'll have to have some way of doing character counts and passing the data into blocks for complex layouts.</p>
<p>I believe there is an extension in the forums for pagination. (<a href="http://www.fpdf.org/en/script/script86.php" rel="nofollow">http://www.fpdf.org/en/script/script86.php</a>)</p>
<p>plus I'm a cheapskate :)</p>
http://stackoverflow.com/questions/88836/pdf-imposition-in-php/89096#89096
3
Answer by Alex for PDF Imposition in PHP
Alex
2008-09-18T01:06:35Z
2008-09-18T01:06:35Z
<p>We used DOMPDF <a href="http://www.digitaljunkies.ca/dompdf/" rel="nofollow">http://www.digitaljunkies.ca/dompdf/</a> successfully - just define what you want printed in regular HTML format, then pass the doc to DOMPDF, and it'll create a PDF from it. </p>
<p>Much more convenient than working with vector-based solutions that require you to essentially lay things out yourself on the page (like FPDF). Use HTML for layout! It's much easier. </p>
http://stackoverflow.com/questions/88836/pdf-imposition-in-php/445148#445148
2
Answer by kRON for PDF Imposition in PHP
kRON
2009-01-14T23:57:33Z
2009-01-14T23:57:33Z
<p>I'd highly recommend DOMPDF or PDFLib as others have mentioned.</p>
<p>DOMPDF supports XHTML and CSS2.1 and will allow you to render a PDF page from HTML.</p>
<p>PDFlib+PDI will allow you to merge PDF documents or append pages, place images, text, etc.</p>
http://stackoverflow.com/questions/88836/pdf-imposition-in-php/515845#515845
0
Answer by Leo Bonnafé for PDF Imposition in PHP
Leo Bonnafé
2009-02-05T13:16:13Z
2009-02-05T13:16:13Z
<p><strong>phpLiveDocx</strong> does exactly what you want. It is dead easy to use and allows you to populate templates created in a word processor with data in PHP. Learn more at <a href="http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/" rel="nofollow">http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/</a></p>