Click here to Skip to main content
Licence CPOL
First Posted 6 Sep 2007
Views 60,684
Downloads 2,567
Bookmarked 50 times

Screen Capture (Simple Win32 Dialog Based)

By | 11 Nov 2007 | Article
It's a simple dialog based Screen Capture that uses Global Mouse Hooks to capture the area selected by user, controls( i.e. Buttons, etc.), and any other Window.

Introduction

I have just started programming in VC++, and this is my first article on CodeProject. I have created this project after reading the materials from CodeProject itself.

Everybody knows about the Screen Capture (Prt Scr Button) utility that comes with each and every Microsoft Windows. So what is the necessity of another Screen Capture application. But the Screen Capture utility that ships with Windows is very simple, you can only capture the whole screen. But what if you have to capture the part of the screen or say only a particular control on other window. Don't worry; here is the application for that. Using this application, you can capture the Selected area rather than the whole window. You can also capture any window or control by just clicking on it. (You can even capture only the start button or clock on task bar). Isn't it good! And it uses a simple Win32 API function for that.

Background

This article uses the two main functions of the Win32 API:

  1. SetWindowsHookEx(): To Set the global Mouse Hook (see MSDN for more help about this.) Global Mouse Hook is necessary to capture the Mouse Event from outside of our window.
  2. BitBlt() (pronounced as Bitblit): Used to transfer color data between source device context and destination device context. It is used here to Capture the Screen.

Using the Code

MyMouseHook.cpp

Below is the code from MyMouseHook.cpp. Here we are sending MOUSE_DOWN message when user presses the left Mouse Button and MOUSE_UP when user leaves the left Mouse Button. Both of these are user messages.

LRESULT CALLBACK MyMouseHookProc(int nCode, WPARAM wParam, LPARAM lParam)
    {
     //Below Function will Return the Handle of window whose Caption is "Capture "
     //We will use this handle to send Message.(Handle is handle to Our Application )

            HWND hWndApp = FindWindow(0,L"Capture");
              //Wpram will contain which mouse event has been generated 
              // We will send the User Message for each event we require.
            if(wParam== WM_LBUTTONDOWN || wParam == WM_NCLBUTTONDOWN)
            {
                PostMessage(hWndApp,MOUSE_DOWN,0,0);
            } 
            if(wParam == WM_LBUTTONUP)
            {   
            PostMessage(hWndApp,MOUSE_UP,0,0);
            }
        }

ScreenCaptureDlg.cpp

Below is the part of the code used in ScreenCaptureDlg.cpp File. When the user first presses the Mouse Button after pressing the Capture button, we take that point as the starting point in Begpt as a starting point. And after dragging the Mouse when the user releases the button, we take the End points of the Selected Rectangle in Endpt. Then we capture the area between this Begpt and Endpt from Desktop to MemDC and send it to the SaveBitmap()function which will save DC into .bmp file. And then we will create a process to show the .bmp file into PAIN application. Don't worry about the other function I haven't explain here. I have explained all the things well in the code:

case MOUSE_DOWN:
    if(CaptureActWnd == TRUE)
        {   
        GetCursorPos(&Begpt);              	//Will take the Cursor Position
        hWndActWnd= WindowFromPoint(Begpt);	//Will get the Handle of Window 
					//Where Your Mouse is Currently
        CaptureActiveWindow();            	//Will Call the Function to Capture 
					//That Window    
        EndDialog(hWndDlg,LOWORD(lParam)); 	//Will End the Dialog
        PostQuitMessage(0);                 	//Will destroy Window
        }
        OutputDebugString( L"Desktop -GDI, MOUSE_DOWN");
        GetCursorPos(&Begpt);        	// Will Store the Current Cursor 
					// position in Begpt
        break;                        	// Mouse is Down Begpt.x = left, 
					// Begpt.y = Top     

case MOUSE_UP:
    if(CaptureActWnd == FALSE)
        {
        GetCursorPos(&Endpt);	//As the Mouse is UP We will get Out Bottom 
				//Right Points in EndPt.
        DrawBox();            	//Will Draw the Rectangle Around selected area
        // Create a memory device context Compatible with Dialog DC
        MemDC = CreateCompatibleDC(DlgDC);
        // Create a compatible bitmap 
        hBitmap = CreateCompatibleBitmap(DlgDC,width,height);
        // Select the bitmap into the memory context
        SelectObject(MemDC,hBitmap);
        // This will copy the our Selected Area into MemDC
        BitBlt(MemDC,0,0,width,height ,DeskDC,Begpt.x,Begpt.y,SRCCOPY);    
        //Will Save the Device Context into Sample.bmp
        SaveBitmap(MemDC, hBitmap,"Sample.bmp");
         //Will show you the Capture Area Into MSPAINT
        ShowImage();                                
         //Send Message to Quit the Window.
        SendMessage(hWndDlg,WM_COMMAND,(WPARAM)IDC_Exit,0);
        }
        break;  

Points of Interest

I tried to capture WM_MOUSEMOVE event to draw the rectangle on screen rather than capture only WM_LBUTTONDOWN and WM_LBUTTONUP but it was making the application very sluggish. So I left it and took only Starting Point and End Points to draw the rectangle and capture the screen. So you will not be able to see the rectangle when you will be selecting the area, but the rectangle will appear when you will complete your selection.

Special Thanks

To Arun Krishnan for his nice article on Desktop Calendar from where I came to know how to save the DC(Device Context)in .bmp file.

To Mumtaz Zaheer for his nice project about Sweep the Minesweeper from where I came to know about global hook.

History

There was a little flaw in the previous version of the application. When it was capturing the Window, it was failing to capture the Title bar which is also important. I have fixed the problem in the updated version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

GauranG Shah

Tester / Quality Assurance

India India

Member

His name is Gaurang Shah. He has completed his bachelor in computer science.Has worked as a System programmer. Currently working as QA Analyst in Pune.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questioncapture Pinmemberzeppp20:06 24 Apr '12  
GeneralBLOWUP.C -- Video Magnifier Program by Charles Petzold, is very very better!!! Pinmembermerdaig1210:07 11 Jul '10  
GeneralThank you share PinmemberJoshuaTsai21:19 2 Dec '09  
QuestionDid you test your updated version ? PinmemberMember 427768212:01 26 Jun '09  
GeneralDraw Rectangle PinmemberRender Plus13:04 9 May '09  
GeneralRe: Draw Rectangle PinmemberGauranG Shah2:29 24 Jun '09  
GeneralFirst straightforward code Pinmemberbulg12:24 23 Oct '08  
GeneralThank you for share! Pinmembercigogo17:34 1 Jul '08  
GeneralThank you Pinmemberwenzis16:07 6 May '08  
Question::FindWindow problem.. Pinmembershizu looi21:21 16 Dec '07  
QuestionSave Bitmap to another format Pinmemberdubbele onzin22:06 21 Nov '07  
QuestionHow can I modify this to Capture the Desktop? Pinmemberdubbele onzin1:08 16 Nov '07  
AnswerRe: How can I modify this to Capture the Desktop? PinmemberGauranG3319:34 19 Nov '07  
Yes. Its simple. Just take the handle of the dc to desktop.
 
HDC dc = GetDC(NULL)
 
and use BitBlt() function to capture the screen.
 
Take the screen size of the desktop.in BitBlt() function.
 

GeneralRe: How can I modify this to Capture the Desktop? Pinmemberdubbele onzin22:07 21 Nov '07  
AnswerRe: How can I modify this to Capture the Desktop? PinmemberManikandan17:49 22 Sep '08  
GeneralVery good Pinmembernirdhar23:04 22 Oct '07  
GeneralRe: Very good PinmemberGauranG332:51 23 Oct '07  
GeneralCapture the active window in windows PinmemberGurliGebis23:00 6 Sep '07  
GeneralRe: Capture the active window in windows PinmemberGaurang Shah 03319:31 7 Sep '07  
GeneralNice Work !!! PinmemberDharmeshC3:39 6 Sep '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 12 Nov 2007
Article Copyright 2007 by GauranG Shah
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid