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 Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
13 + 21 = ?
Subscribe to this entry?

 
 [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

Add a Patch

Pull Requests

Add a Pull Request

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: Sun May 19 13:01:33 2024 UTC