PHP.nl

imagegrabscreen

imagegrabscreen

Captures the whole screen

 **imagegrabscreen**

Grabs a screenshot of the whole screen.

Opmerking: > This function is only available on Windows.

Returns an image object on success, false on failure.

Voorbeeld: example

This example demonstrates how to take a screenshot of the current screen and save it as a png image.

<?php
$im = imagegrabscreen();
imagepng($im, "myscreenshot.png");
?>

imagegrabwindow