I am trying to take a screenshot of a page using GD library but as a result Screen capture only returns a black image.
<?php
header('Content-type: text/html; charset=windows-1251');
?>
<?php
header("Location:http://10.32.172.30:9080/RTOnline/b/p/115");
$img = imagegrabscreen();
imagepng($img, 'screenshot.png');
?>