Converting pdf files to txt files with php - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T10:17:15Zhttp://stackoverflow.com/feeds/question/324436http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/324436/converting-pdf-files-to-txt-files-with-php2Converting pdf files to txt files with phpbullettime2008-11-27T18:28:49Z2008-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><?php
system('pdftotext file.pdf');
?>
</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><?php
system('touch test.txt');
?>
</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>&1 argument to the command, so:</p>
<pre><code><?php
system('pdftotext file.pdf 2>&1');
?>
</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#3244440Answer by Pim Jager for Converting pdf files to txt files with phpPim Jager2008-11-27T18:31:54Z2008-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#3244723Answer by Greg for Converting pdf files to txt files with phpGreg2008-11-27T18:52:58Z2008-11-27T18:52:58Z<p>It's probably a permissions issue, but try this instead:</p>
<pre><code><?php
system('pdftotext file.pdf 2>&1');
?>
</code></pre>
<p>The <code>2>&1</code> redirects stderr to stdout, so any error messages will be printed. It should be pretty easy to fix from then on.</p>