imagegrabwindow

(PHP 5 >= 5.2.2, PHP 7)

imagegrabwindowCaptures a window

Descrierea

imagegrabwindow ( int $window_handle [, int $client_area = 0 ] ) : resource

Grabs a window or its client area using a windows handle (HWND property in COM instance)

Notă:

This function is only available on Windows.

Parametri

window_handle

The HWND window ID.

client_area

Include the client area of the application window.

Valorile întoarse

Returns an image resource identifier on success, false on failure.

Erori/Excepții

E_NOTICE is issued if window_handle is invalid window handle. E_WARNING is issued if the Windows API is too old.

Exemple

Example #1 imagegrabwindow() example

Capture a window (IE for example)

<?php
$browser 
= new COM("InternetExplorer.Application");
$handle $browser->HWND;
$browser->Visible true;
$im imagegrabwindow($handle);
$browser->Quit();
imagepng($im"iesnap.png");
imagedestroy($im);
?>

Capture a window (IE for example) but with its content

<?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($handle0);
$browser->Quit();
imagepng($im"iesnap.png");
imagedestroy($im);
?>

A se vedea și

add a note add a note

User Contributed Notes 1 note

up
4
nico ->atdot
16 years ago
If you just want to take a screenshot of a website WITHOUT the ugly IE window around it, the easiest way is setting the "Fullscreen" property to TRUE.

$browser->Fullscreen = true;

This is basically the same as pressing F11 once the browser is open, so you just get the actual website.
To Top