Is there any way of taking a screenshot of a website in PHP, then saving it to a file?
|
Sure you can, but you'll need to render the page with something. If you really want to only use php, i suggest you HTMLTOPS, wich render the page and output it in a ps file (ghostscript), then, convert it in a .jpg, .png, .pdf.. can be little slower with complex pages (and dont support all the CSS). Else, you can use wkhtmltopdf to output a html page in pdf, jpg, whaterver.. Accept CSS2.0, use the webkit (safari's wrapper) to render the page.. so should be fine. You have to install it on your server, as well.. UPDATE Now, with new HTML5 and JS feature, is also possible to render the page into a canvas object using Javascript. Here a nice library to do that: Html2Canvas and here is an implementation by the same author to get a feedback like G+. Once you have rendered the dom into the canvas, you can then send to the server via ajax and save it as a jpg. EDIT: You can use the imagemagick tool for transforming pdf to png. My version of wkhtmltopdf does not support images. E.g. EDIT: This small shell script gives a simple / but working usage example on linux with php5-cli and the tools mentioned above. EDIT: i noticed now that the wkhtmltopdf team is working on another project: wkhtmltoimage, that gives you the jpg directly |
|||||||||||||||||||
|
|
Since PHP 5.2.2 it is possible, to capture a website with PHP solely!
Edit: Note, these functions are available on Windows systems ONLY! |
|||||||
|
|
It's in Python, but going over the documentation and code you can see exactly how this is done. If you can run python, then it's a ready-made solution for you: Note that everything can run on one machine for one platform, or one machine with virtual machines running the other platforms. Free, open source, scroll to bottom of page for links to documentation, source code, and other information. |
|||||||||||||||
|
|
This ought to be good for you: http://code.google.com/p/wkhtmltopdf/ Make sure you download the wkhtmltoimage distribution! |
|||||||||||
|
|
Yes. You will need some things tho: See khtmld(aemon) on *nx. See Url2Jpg for Windows but since it is dotNet app you should also chek Url2Bmp Both are console tools that u can utilise from your web app to get the screenshot. There are also web services that offer it. Check this out for example. Edit: This link is useful to. |
||||
|
|
|
A website has to be rendered. PHP does not have website (HTML, CSS, JavaScript, etc) rendering capabilities. So no. |
|||||||
|
|
Yes it is. If you only need image of URL try this
Pass the url as argument and you'll get the image for more details check this link http://zenithwebtechnologies.com.au/auto-thumbnail-generation-from-url.html |
||||
|
|
|
I have had to do this before for a client and from experience one of the easiest ways of doing this is to use a free, third-party service called GrabzIt. They are really reliable, fast and have APIs for five different languages including PHP.
|
|||||
|
|
|
I've been digging for something that can handle this and I came across this simple PHP class that's absolutely amazing! |
|||
|
|
|
You can use wimg.ca example: http://wimg.ca/http://stackoverflow.com/questions/757675/website-screenshots-using-php :D |
|||||
|
|
Not directly. Software such as Selenium have features like this and can be controlled by PHP but have other dependencys (such as running their java-based server on the computer with the browser you want to screenshot) |
|||
|
|
|
I'm on Windows so I was able to use the imagegrabwindow function after reading the tip on here from stephan. I added in cropping (to get rid of the Browser header, scroll bars, etc.) and resizing to get a final image. Here's my code. Hope that helps someone. |
|||
|
|
|
It all depends on how you wish to take the screenshot. You could do this via PHP, using a webservice to get the image for you grabz.it has a webservice to do just this, here's an article showing a simple example of using the service. |
|||
|
|
|
webkit2html works on Mac OS X and Linux, is quite simple to install and to use. See this tutorial. For Windows, you can go with CutyCapt, which has similar functionality. |
|||||
|
|
I used bluga. The api allows you to take 100 snapshots a month without paying, but sometimes it uses more than 1 credit for a single page. I just finished upgrading a drupal module, Bluga WebThumbs to drupal 7 which allows you to print a thumbnail in a template or input filter. The main advantage to using this api is that it allows you to specify browser dimensions in case you use adaptive css, so I am using it to get renderings for the mobile and tablet layout as well as the regular one. There are api clients for the following languages: PHP, Python, Ruby, Java, .Net C#, Perl and Bash (the shell script looks like it requires perl) |
|||
|
|
|
Shrink the web has always been what I've used. I think they have a nice API. |
|||
|
|
protected by Yi Jiang Jun 14 '12 at 14:49
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.