php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #52859 Using this function,i am unable to take the full screen snapshop.
Submitted: 2010-09-16 09:05 UTC Modified: 2013-02-18 00:34 UTC
From: payal dot awachate at gmail dot com Assigned:
Status: No Feedback Package: GD related
PHP Version: 5.3.3 OS: windows
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: payal dot awachate at gmail dot com
New email:
PHP Version: OS:

 

 [2010-09-16 09:05 UTC] payal dot awachate at gmail dot com
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.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [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
Be sure you gave the web server user the desktop interaction permission, check the PHP documentation for more details.
 [2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Dec 26 13:01:30 2024 UTC