up vote 6 down vote favorite
3
share [g+] share [fb]

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.

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.

Is there any way to do this via PHP? (Or even Ruby or Python if that's what's necessary)

link|improve this question

Does the markup code contain "coordinates"? If not, you can search as long as you want. PHP can not locate pixels coordinates of a pdf file. Try to explain your "problem" a bit more detailed, maybe by using a picture, etc. – daemonfire300 Oct 21 '09 at 19:18
feedback

4 Answers

up vote 4 down vote accepted

Check out FPDF (with FPDI):

http://www.fpdf.org/

http://www.setasign.de/products/pdf-php-solutions/fpdi/

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.

Another possible library is TCPDF: http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf

link|improve this answer
Great library, thanks a bunch... – Braveyard Jul 5 '11 at 9:19
feedback

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:

PdfToHtml

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.

link|improve this answer
Hey Can you post a sample code how to achieve your results. I couldn't find proper documentation. It would be great. – Braveyard Jul 5 '11 at 9:25
feedback

FPDF works quite well for me. Based on the decription I could do it in FPDF using PHP.

link|improve this answer
feedback

FPDF is smaller in size compared to TCPDF. But, in functionalities, TCPDF wins. TCPDF has lots of features and functionalities.

If you want very advanced features in PDF creation then TCPDF is for you. And, if you want just minimal features of PDF creation and want a smaller in size class then FPDF is for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.