How to convert documents to PDF on a Linux/PHP stack? - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-06T05:42:39Z
http://stackoverflow.com/feeds/question/377135
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/377135/how-to-convert-documents-to-pdf-on-a-linux-php-stack
2
How to convert documents to PDF on a Linux/PHP stack?
acidzombie24
2008-12-18T07:46:33Z
2009-02-17T12:23:25Z
<p>I want to display documents on my website. The server is hosted on a Debian machine. I was thinking I can allow the upload of support documents then use a Linux app or PHP app to convert the doc into PDF and display that in an HTML page. Are there any APIs or binaries that allow me to do this?</p>
http://stackoverflow.com/questions/377135/how-to-convert-documents-to-pdf-on-a-linux-php-stack/377210#377210
1
Answer by frankodwyer for How to convert documents to PDF on a Linux/PHP stack?
frankodwyer
2008-12-18T08:34:32Z
2008-12-18T08:34:32Z
<p>If it is an office document, one option would be to use openoffice in headless mode. See here for a python script that shows how: <a href="http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html" rel="nofollow">http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html</a> </p>
<p>If it is any other kind of document (e.g. your own XML document), then you would need to do a bit more work. I have had some success using XSL to define a translation to docbook format, then using docbook tools to generate the PDF (and various other formats). You could also use XSL to go straight to PDF if you need more precise control over how things look. </p>
http://stackoverflow.com/questions/377135/how-to-convert-documents-to-pdf-on-a-linux-php-stack/378184#378184
0
Answer by Nathacof for How to convert documents to PDF on a Linux/PHP stack?
Nathacof
2008-12-18T15:27:37Z
2008-12-18T15:27:37Z
<p>Pear has a PHP PDF class:</p>
<p><a href="http://pear.php.net/package/File_PDF" rel="nofollow">http://pear.php.net/package/File_PDF</a></p>
<p><a href="http://pear.php.net/package/File_PDF/docs/latest/apidoc/File_PDF/File_PDF.html" rel="nofollow">http://pear.php.net/package/File_PDF/docs/latest/apidoc/File_PDF/File_PDF.html</a></p>
<p>Nathan Coffield, Support Engineer, <a href="http://www.hostmysite.com/support" rel="nofollow">HostMySite.com</a></p>
http://stackoverflow.com/questions/377135/how-to-convert-documents-to-pdf-on-a-linux-php-stack/378194#378194
0
Answer by Mike for How to convert documents to PDF on a Linux/PHP stack?
Mike
2008-12-18T15:30:45Z
2008-12-18T15:30:45Z
<p>An alternative method is to generate an HTML file that contains what you need in the pdf. Then use htmldoc to convert it to a PDF.</p>
<p><a href="http://www.easysw.com/htmldoc/" rel="nofollow">http://www.easysw.com/htmldoc/</a></p>
<p>It actually is much easier than directly manipulating the objects in a PDF doc.</p>
http://stackoverflow.com/questions/377135/how-to-convert-documents-to-pdf-on-a-linux-php-stack/378262#378262
0
Answer by jjclarkson for How to convert documents to PDF on a Linux/PHP stack?
jjclarkson
2008-12-18T15:50:54Z
2008-12-18T15:50:54Z
<p>You can create a PDF print-to-file printer and send any number of documents to the printer via lpr.</p>
<pre><code> function lpr($STR,$PRN,$TITLE) {
$prn=(isset($PRN) && strlen($PRN))?"$PRN":C_DEFAULTPRN ;
$title=(isset($TITLE))?"$TITLE":"stdin" . rand() ;
$CMDLINE="lpr -P $prn -T $title";
$pipe=popen("$CMDLINE" , 'w');
if (!$pipe) {print "pipe failed."; return ""; }
fwrite($pipe,$STR);
pclose($pipe);
} // lpr()
//open document...
//read into $source
lpr($source, "PDF", $title); //print to device
exit();
</code></pre>
<p>Also <a href="http://www.easysw.com/htmldoc/" rel="nofollow">HTMLDOC</a> can convert your HTML into a PDF.</p>
http://stackoverflow.com/questions/377135/how-to-convert-documents-to-pdf-on-a-linux-php-stack/378327#378327
1
Answer by milianw for How to convert documents to PDF on a Linux/PHP stack?
milianw
2008-12-18T16:07:59Z
2008-12-18T16:07:59Z
<p>You might also want to take a look at <a href="http://www.fpdf.org/" rel="nofollow">http://www.fpdf.org/</a>.</p>
http://stackoverflow.com/questions/377135/how-to-convert-documents-to-pdf-on-a-linux-php-stack/556576#556576
0
Answer by Leo Bonnafé for How to convert documents to PDF on a Linux/PHP stack?
Leo Bonnafé
2009-02-17T12:23:25Z
2009-02-17T12:23:25Z
<p>A relatively new project, called phpLiveDocx can convert DOC to PDF (in addition to a number of other formats). It is a SOAP based service and can be used completely free of charge. For sample code to convert a DOC to PDF using phpLiveDocx, take a look at this recent blog post:</p>
<p><a href="http://www.phplivedocx.org/2009/02/06/convert-doc-to-pdf-in-php/" rel="nofollow">http://www.phplivedocx.org/2009/02/06/convert-doc-to-pdf-in-php/</a></p>
<p>Of course, as it is SOAP based, it can be used on all operating systems that support PHP :-)</p>