High-quality PDF to Word conversion in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T04:54:11Z http://stackoverflow.com/feeds/question/437716 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/437716/high-quality-pdf-to-word-conversion-in-php 1 High-quality PDF to Word conversion in PHP? cletus 2009-01-13T01:44:00Z 2009-02-05T13:45:32Z <p>What's the best way of converting PDF docs to Microsoft Word format in PHP? This can be either as a PHP script or calling a (Linux) executable (with proc_open()). It just needs to be relatively fast and produce quality Word documents (in 97/2000/2003 format).</p> <p>Commercial software is OK.</p> http://stackoverflow.com/questions/437716/high-quality-pdf-to-word-conversion-in-php/437863#437863 1 Answer by codelogic for High-quality PDF to Word conversion in PHP? codelogic 2009-01-13T03:23:19Z 2009-01-13T03:23:19Z <p>Openoffice has a <a href="http://wiki.services.openoffice.org/wiki/Pdf_Import_Extension" rel="nofollow">PDF import extension</a>. Most of OpenOffice is scriptable, so you should be able to write a command line interface to perform the conversion. There are many <a href="http://udk.openoffice.org/python/python-bridge.html#examples" rel="nofollow">examples</a> on the official UNO wiki.</p> http://stackoverflow.com/questions/437716/high-quality-pdf-to-word-conversion-in-php/515931#515931 1 Answer by Leo Bonnafé for High-quality PDF to Word conversion in PHP? Leo Bonnafé 2009-02-05T13:45:32Z 2009-02-05T13:45:32Z <p>By far the easiest way is with phpLiveDocx. It can load DOC, DOCX and RTF and save to PDF. It can be downloaded from <a href="http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/" rel="nofollow">http://www.phplivedocx.org/articles/brief-introduction-to-phplivedocx/</a> The download file contains a large number of sample applications, which illustrate all aspects of the PHP5 library. Leo</p>