Read pdf files with php - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:39:06Zhttp://stackoverflow.com/feeds/question/1004478http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1004478/read-pdf-files-with-php1Read pdf files with phpRyan Doherty2009-06-16T23:56:46Z2009-11-20T10:29:32Z
<p>I have a large PDF file that is a floor map for a building. It has layers for all the office furniture including text boxes of seat location.</p>
<p>My goal is to read this file with PHP, search the document for text layers, get their contents and coordinates in the file. This way I can map out seat locations -> x/y coordinates.</p>
<p>Is there any way to do this via PHP? (Or even Ruby or Python if that's what's necessary)</p>
http://stackoverflow.com/questions/1004478/read-pdf-files-with-php/1004576#10045760Answer by Rado for Read pdf files with phpRado2009-06-17T00:39:46Z2009-06-17T00:39:46Z<p>Hmm ... not exactly php, but you could call a program from php to convert the pdf to a temporary html file and then parse the resulting file with php. I've done something similar for a project of mine and this is the program I used:</p>
<p><a href="http://pdftohtml.sourceforge.net/" rel="nofollow">PdfToHtml</a></p>
<p>What's cool about the program is that it will spit out the text elements in < div > tags with absolute position coordinates. It seems like this is exactly what you are trying to do. </p>
http://stackoverflow.com/questions/1004478/read-pdf-files-with-php/1582794#15827941Answer by J. for Read pdf files with phpJ.2009-10-17T17:49:46Z2009-10-17T17:49:46Z<p>Check out FPDF (with FPDI):</p>
<p><a href="http://www.fpdf.org/" rel="nofollow">http://www.fpdf.org/</a></p>
<p><a href="http://www.setasign.de/products/pdf-php-solutions/fpdi/" rel="nofollow">http://www.setasign.de/products/pdf-php-solutions/fpdi/</a></p>
<p>These will let you open an pdf and add content to it in PHP. I'm guessing you can also use their functionality to search through the existing content for the values you need.</p>
<p>Another possible library is TCPDF: <a href="http://www.tecnick.com/public/code/cp%5Fdpage.php?aiocp%5Fdp=tcpdf" rel="nofollow">http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf</a></p>
http://stackoverflow.com/questions/1004478/read-pdf-files-with-php/1769605#17696050Answer by Talvi Watia for Read pdf files with phpTalvi Watia2009-11-20T10:29:32Z2009-11-20T10:29:32Z<p>FPDF works quite well for me. Based on the decription I could do it in FPDF using PHP. </p>