|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2010-09-16 09:07 UTC] aharvey@php.net
 
-Package: *General Issues
+Package: GD related
  [2010-09-16 10:05 UTC] pajoye@php.net
 
-Status: Open
+Status: Feedback
  [2010-09-16 10:05 UTC] pajoye@php.net
  [2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 12:00:01 2025 UTC | 
Description: ------------ Using this function,i am unable to take the full screen snapshop. Test script: --------------- <?php $browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $browser->Fullscreen = true; $browser->Navigate("http://aoba/imagegrab/test.html"); /* Still working? */ while ($browser->Busy) { com_message_pump(4000); } $im = imagegrabwindow($handle, 0); $browser->Quit(); imagepng($im, "iesnap.png"); imagedestroy($im); ?> Expected result: ---------------- Using this function,i am unable to take the full screen snapshop. Actual result: -------------- Using this function,i am unable to take the full screen snapshop.