I want to take a snapshot of a web page. The image should show the full content of the browser window (without the scroll bar I mean).

I want to do this dynamically using a PHP script.

link|improve this question

69% accept rate
1  
Why your question is tagged 'php'? – Silver Light Jan 20 '11 at 9:05
1  
look at superuser.com/questions/39988/… – Haim Evgi Jan 20 '11 at 9:06
3  
tagged php, because my requirement is to take snapshot of the pages dynamically using script – Rajasekar Jan 20 '11 at 9:08
Sorry, but as I understand you, you want to take a screencap of a site, using PHP? – Nanne Jan 21 '11 at 13:06
feedback

1 Answer

One option would be to invoke something like CutyCapt. It does require an X server, but as indicated in the docs you can use Xvfb (a headless, virtual X server) to fill in that position. Try to recycle the same Xvfb instance each time though, to save resources.

There are also various web service providers offering services like this - eg, webthumb. This may be worth considering as well, depending on how much resources you have, and how much CutyCapt takes.

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.