Code for implementing the screenshot function in php

Source: Internet
Author: User

PHP uses the GD library for Screenshot capture

PHP5.2.2 and later versions of the GD Library implement two screenshot functionsImagegrabscreenAndImagegrabwindow
It is used to intercept the entire screen and intercept a window (same as ALT + PrintScreen.

1. Capture the whole screen Screenshot

<? Php
$ Im = imagegrabscreen ();
Imagepng ($ im, "myscreenshot.png ");
?>

2. Capture a window (IE for example)

<? Php
$ Browser = new COM ("InternetExplorer. Application ");
$ Handle = $ browser-> HWND;
$ Browser-> Visible = true;
$ Im = imagegrabwindow ($ handle );
$ Browser-> Quit ();
Imagepng ($ im, "iesnap.png ");
$ Im = imagegrabscreen ();
?>

3. Capture IE content Capture a window (IE for example) but with its content!

<? Php
$ Browser = new COM ("InternetExplorer. Application ");
$ Handle = $ browser-> HWND;
$ Browser-> Visible = true;
$ Browser-> Navigate ("http://www.21andy.com/blog ");
 
/* Still working? */
While ($ browser-> Busy ){
Com_message_pump (4000 );
}
$ Im = imagegrabwindow ($ handle, 0 );
$ Browser-> Quit ();
Imagepng ($ im, "iesnap.png ");
?>

4. Intercept IE in fullscreen mode

<? Php
$ Browser = new COM ("InternetExplorer. Application ");
$ Handle = $ browser-> HWND;
 
$ Browser-> Visible = true;
$ Browser-> FullScreen = true;
$ Browser-> Navigate ("http://www.111cn.net ");
 
/* Is it completely loaded? (Be aware of frames !) */
While ($ browser-> Busy ){
Com_message_pump (4000 );
}
$ Im = imagegrabwindow ($ handle, 0 );
$ Browser-> Quit ();
Imagepng ($ im, "iesnap.png ");
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.