Taking screenshos of websites is not a frequent requirement for developers but can come handy on many occasions. Although there are some nice solutions on the web, a particular one I found very good is wkhtmltoimage.
wkhtmltoimage is a simple shell utility which can be used to convert html to images using the webkitrendering engine, and qt.
Installation
To get started we need to first download and install the shell program wkhtmltoimage. Select the appropriate binaries for your platform. As I’m using Ubuntu 10, I downloaded the complied binary ‘wkhtmltoimage-0.10.0_rc2-static-i386.tar.bz2′. Extract it to a appropriate folder and you are ready to go.
Getting your first snapshot
The simplest way to get a snapshot of a url is through the following:
This will fetch the www.bbc.com index page and save it as a jpg image. Below are a few websites rendered using the wkhtmltoimage tool.
Customizing the output
wkhtmltoimage comes with a plethora of options, a few are shown below, more options can be found in the documentation.
The default output quality of the program is set to ’94’ which can make the size of some images a lot bigger, but you can change it to your liking using the below option.
Also by default all the images on a page are rendered in the final image, but you can disable images in the final screen-shot using the following:
You can also set the output height and width of the image (in pixels) as below.
or crop the image to a specified size;
Sometimes the JavaScript on the webpage you are rendering can cause problems during rendering, preventing the program from saving the screenshot or causing a huge delay. In such cases you can ask wkhtmltoimage to not run JavaScript on the page while rendering.
Using with PHP
Although this is not a pure PHP solution for taking screen shots, you can wrap the final command in ashell_exec function or download the ‘snappy’ PHP5 wrapper from below. The original library is locatedhere, but as the source keeps changing the examples given here do not work, so use the library given below.
Below is a short code using ‘snappy’ to take a screen-shot of bbc.com.
and with a few options added…
In my opinion you should play with the shell program first till you get to know the complete options and only than use the ‘snappy’ PHP wrapper.
In closing here is the snapshot of my site ,rendered at 50% quality (click to zoom).
Happy rendering!! http://www.codediesel.com/php/taking-screenshots-of-websites-in-php/