Windows Scripting
  Home arrow Windows Scripting arrow Page 5 - Screen Capturing via GDI+ and GDI
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WINDOWS SCRIPTING

Screen Capturing via GDI+ and GDI
By: Xianzhong Zhu
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2008-08-06

    Table of Contents:
  • Screen Capturing via GDI+ and GDI
  • GDI’s Role in Screen Capturing
  • Developing a Screen Capture Application
  • Persisting the Captured Images via GDI
  • Adding a Reference to GDI and Visualizing the Result

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Screen Capturing via GDI+ and GDI - Adding a Reference to GDI and Visualizing the Result


    (Page 5 of 5 )

    VC++ is different from VC# (which provides built-in support for GDI+). A VC++ based project has to first add a proper reference to the GDI+ library in order to leverage all the functions in GDI+. In this case, we should consider the following steps:

    (1) Open the head file stdafx.h and append the three lines below to the end of it:


    #include <gdiplus.h>

    #pragma comment(lib, "gdiplus.lib")

    using namespace Gdiplus;


    (2) Define a variable member for the CscreenCaptureApp class as follows:


    ULONG_PTR m_gdiplusToken;


    (3) Initialize the GDI+ library within the InitInstance() method of the CscreenCaptureApp class before using it:


    Gdiplus::GdiplusStartupInput gdiplusStartupInput;

    Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);


    (4) Perform the necessary cleanup within the ExitInstance() method of the CscreenCaptureApp class with the related info used in GDI+:

    Gdiplus::GdiplusShutdown(m_gdiplusToken);

    Now, with everything ready you can leverage all the above functions provided in GDI+. Let’s start the demo application and see what happens. Press F5 to launch the application. You will see a common dialog, as is shown in Figure 1.


    Figure 1— the initial running-time snapshot of the screen capturing application

    Just press the left button of the mouse and try to drag; there will be a red rectangle appearing around the window the current cursor points to. When the user releases the left button, the image of the present window will be copied into the system clipboard and a dialog will appear to prompt you to specify the path to persist the image. Figure 2 gives a running-time snapshot when the mouse moves over the window of the FireFox browser.

    Figure 2—move the mouse cursor and capture some window in the red rectangle

    Because of the shortage of the tool I used to capture the screenshot, it seems the camera shaped mouse cursor is not in Figure 2. Never mind—you can surely catch sight of it in the real sample application.

    Summary

    In this article, we examined the core module of a screen capture application under Windows via GDI and GDI+. Readers should now have a clearer understanding when composing graphic applications.

    On the other hand, GDI+ is expected to become the new graphic engine for the next generation.

    -DOWNLOAD SOURCE-


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · All the comments and some message boxes seem to be garbled, or else in some foreign...
     

    WINDOWS SCRIPTING ARTICLES

    - More Windows Scripting Workarounds from Nilpo
    - Overloading Methods and More in VBScript
    - Improving MFC for Windows Vista
    - Regular Expressions in VBScript
    - Working with Dates in WMI
    - Completing Calendars with VBScript Date Func...
    - Building Calendars with VBScript Date Functi...
    - Working With Dates and Times in VBScript
    - Designing WCF DataContract Classes Using the...
    - Understanding Dates and Times in VBScript
    - Working With Arrays in VBScript
    - Compressed Folders in WSH
    - Using .NET Interops in VBScript
    - Nilpo`s Scripting Secrets, Vol I
    - Database operations using Silverlight 2.0 WC...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek