User Joshua Chavanne - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T19:41:11Zhttp://stackoverflow.com/feeds/user/14708http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/7364/pdf-editing-in-php/89052#890521Answer by Joshua Chavanne for PDF Editing in PHP?Joshua Chavanne2008-09-18T00:55:36Z2008-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/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/88836/pdf-imposition-in-php/88935#889350Answer by Joshua Chavanne for PDF Imposition in PHPJoshua Chavanne2008-09-18T00:35:24Z2008-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/484/how-do-you-test-layout-design-across-multiple-browsers-oss/79224#792241Answer by Joshua Chavanne for How do you test layout design across multiple browsers/OSs?Joshua Chavanne2008-09-17T02:19:56Z2008-09-17T02:19:56Z<p>I have a partition with OpenSuse for Konqueror testing. FF3/FF2 running on my Windows partition, with IE7 and Multiple IEs running (<a href="http://tredosoft.com/Multiple_IE" rel="nofollow">http://tredosoft.com/Multiple_IE</a>). I have Opera 9 and Google Chrome (which renders very close to Safari, as it uses Webkit).</p>
<p>Thats all for me. I also trace out EVERY major block element and compare results (Generally I target to make things IE6 compatible, ~shudder~ so I'll be able to see where the heck the deviations are coming from.)</p>