Guys, any idea, do you know if there is a server script that will download an entire web site and then make an IMAGE of that web site in the form of a JPG. Some sort of configuration management system. Thanks, Mike
Yes. <?php $browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $browser->Navigate("http://www.libgd.org"); /* Still working? */ while ($browser->Busy) { com_message_pump(4000); } $im = imagegrabwindow($handle, 0); $browser->Quit(); imagejpeg($im, "iesnap.jpeg"); ?> PHP: www.php.net/imagegrabwindow BUT: It only works on Windows, and you need a few other things to be configured as well.
Hi nico_swd, Thanks for the quick help. By the way, have you saw or anyone here a site that downloads an entire web site and then make an IMAGE of that web site in the form of a JPG. i mean that is now existing. Thanks, Mike
Guys, any idea on how i can start, something like this one webshotspro.com, the thumbs came from screenshot. Thanks, Mike
Guys i really need your help badly, im already stack. My server is windows 2003 Server then i have apach 2 and php5 installed. BUt unfortunately my script doesnt work <?php $browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $browser->Navigate("http://www.libgd.org"); /* Still working? */ while ($browser->Busy) { com_message_pump(4000); } $im = imagegrabwindow($handle, 0); $browser->Quit(); imagepng($im, "iesnap.png"); ?> I think http://www.webshotspro.com/ and http://www.thumbalizr.com/ is calling an executable file like concept of ffmpeg Please guys, im begging for help Thanks, Mike