Jess McKenzie
Jess McKenzie

Reputation: 8385

PHP Using imagegrabscreen

How could I use imagegrabscreen to get a thumbnail image and a full size image of a specific website.

I was thinking that I could have an array that I feed the wanted uri's into but I am a bit stuck on how I would set the wxh of the image I need to grab. I also think that I would need a thumbnail class and a fullimage class and call them when required.

Any better Ideas?

Upvotes: 2

Views: 9891

Answers (1)

James Chevalier
James Chevalier

Reputation: 10874

Keep in mind that imagaegrabscreen is Windows-only. If you have multiple displays set up, this function will only grab the primary display. Also, for this to work, your Apache service must be set to Allow service to interact with desktop otherwise you will just get a blank image.

This discussion covers the use of imagegrabscreen pretty well: Getting imagegrabscreen to work

There are a lot of other discussions about saving webpages as images, too - here are a few:

Upvotes: 7

Related Questions