Converting pdf files to txt files with php - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T10:17:15Z http://stackoverflow.com/feeds/question/324436 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/324436/converting-pdf-files-to-txt-files-with-php 2 Converting pdf files to txt files with php bullettime 2008-11-27T18:28:49Z 2008-11-27T21:10:02Z <p>There's this program, pdftotext, that can convert a pdf file to a text file. To use it directly on the linux console:</p> <pre><code>pdftotext file.pdf </code></pre> <p>and it will generate a file.txt on the same directory as the pdf file. I was looking for a way to do it from inside a php program, and after some googling i ended with two commands that should work for me: <em>system()</em> and <em>exec()</em>. So i made a php file with this program:</p> <pre><code>&lt;?php system('pdftotext file.pdf'); ?&gt; </code></pre> <p>But when i run it code, it doesn't work. No txt file is created. So i tried to create a test file with another command:</p> <pre><code>&lt;?php system('touch test.txt'); ?&gt; </code></pre> <p>This worked fine. I've also used exec() and the results were the same. Why doesn't it work?</p> <p><strong>EDIT:</strong> following RoBorg advice, i added the 2>&amp;1 argument to the command, so:</p> <pre><code>&lt;?php system('pdftotext file.pdf 2&gt;&amp;1'); ?&gt; </code></pre> <p>it printed a error message:</p> <blockquote> <p>pdftotext: error while loading shared libraries: libfontconfig.so.1: cannot open shared object file: No such file or directory</p> </blockquote> <p>seems like something is missing on the server.</p> http://stackoverflow.com/questions/324436/converting-pdf-files-to-txt-files-with-php/324444#324444 0 Answer by Pim Jager for Converting pdf files to txt files with php Pim Jager 2008-11-27T18:31:54Z 2008-11-27T18:31:54Z <p>PHP has a build in PDF function library, that should be able to give you what you need:<br /> <a href="http://nl3.php.net/pdf" rel="nofollow">http://nl3.php.net/pdf</a></p> http://stackoverflow.com/questions/324436/converting-pdf-files-to-txt-files-with-php/324472#324472 3 Answer by Greg for Converting pdf files to txt files with php Greg 2008-11-27T18:52:58Z 2008-11-27T18:52:58Z <p>It's probably a permissions issue, but try this instead:</p> <pre><code>&lt;?php system('pdftotext file.pdf 2&gt;&amp;1'); ?&gt; </code></pre> <p>The <code>2&gt;&amp;1</code> redirects stderr to stdout, so any error messages will be printed. It should be pretty easy to fix from then on.</p>