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");?>