Click here to Skip to main content
6,822,123 members and growing! (18,973 online)
Email Password   helpLost your password?
Languages » C# » How To     Intermediate

Capturing the Desktop Screen with the Mouse Cursor Image

By Rashid.Mahmood

This artcile shows how to capture a desktop screenshot with the mouse cursor included.
C#.NET2.0, Win2K, WinXP, GDI+, VS2005, Dev
Posted:27 Jan 2006
Views:69,422
Bookmarked:57 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
16 votes for this article.
Popularity: 4.70 Rating: 3.90 out of 5
2 votes, 12.5%
1
1 vote, 6.3%
2

3
3 votes, 18.8%
4
10 votes, 62.5%
5

Sample Image - DesktopCaptureWithMouse.jpg

Introduction

This article shows how you can capture screen images including the mouse cursor.

Background

Screen capturing is a very useful way of resource sharing as used in applications like Remote Desktop, Virtual Network Computing (VNC), where a user can access, view, and interact with a remote desktop as his own desktop. Also, it is used in non ethical applications like hacking applications, where a hacker can hack a computer using some malicious server application, and the server then frequently takes screenshots of the prey machine and sends them to the clients. You will see a lot of source code resources over the internet discussing how to take screenshots of the desktop or an area of the desktop but none of them discuss how to capture the mouse cursor bitmap with the screenshot. Sometimes it becomes necessary to capture the mouse to see the whole activity of the hacked machine. First, we will discuss here what the actual problem is.

Problem

Most of us think that the mouse cursor image is a part of the desktop display but actually it works on an upper layer over the desktop. Windows always tracks mouse with a �Hot Spot�, the actual position seen by the Windows.

Currently, there are two common ways to capture and manipulate the desktop image:

  1. Copy the desktop bitmap data from Video Memory to the System Memory. Do processing and then again blit it back to the Video Memory. This can be easily done using the BitBlt() or the StretchBlt() APIs provided by Win32.
  2. Another way is to directly manipulate the desktop bitmap in the Video Memory if enough memory is available as provided by DirectDraw.

Both of these don�t provide us the facility to capture the mouse cursor image with the desktop image.

Solution

The solution to the problem of capturing the mouse cursor image with the desktop image is quite simple.

  1. First, get the bitmap of the screen using BitBlt(). I have provided a simple function named CaptureDesktop() in the CaptureScreen.cs file that captures the screen bitmap as almost all the codes available over the internet do.
  2. Then capture the mouse cursor bitmap as:

    Get Cursor Icon:

    First, get the cursor information using the Win32 GetCursorInfo(). The function fills the CURSORINFO structure provided as a parameter. Don't forget to initialize the cbSize member of the structure before passing it as an argument. Then we check whether the cursor is visible or not, by checking for the equality of the flags member of the filled structure with the CURSOR_SHOWING constant. If they are equal then we get the handle to the cursor icon using the CopyIcon() function that takes the hCursor member of the above filled structure.

    Get Cursor Position:

    Now, we have to get the Icon information so that we can get the hotspot position. This information is easily retrieved using the GetIconInfo() function. Here is the C# implementation of the mouse capturing function:

    static Bitmap CaptureCursor(ref int x, ref int y)
    {
       Bitmap bmp;
       IntPtr hicon;
       Win32Stuff.CURSORINFO ci = new Win32Stuff.CURSORINFO(); 
       Win32Stuff.ICONINFO icInfo;
       ci.cbSize = Marshal.SizeOf(ci);
       if(Win32Stuff.GetCursorInfo(out ci))
       {
           if (ci.flags == Win32Stuff.CURSOR_SHOWING)
           { 
               hicon = Win32Stuff.CopyIcon(ci.hCursor);
               if(Win32Stuff.GetIconInfo(hicon, out icInfo))
               {
                   x = ci.ptScreenPos.x - ((int)icInfo.xHotspot);
                   y = ci.ptScreenPos.y - ((int)icInfo.yHotspot);
                   Icon ic = Icon.FromHandle(hicon);
                   bmp = ic.ToBitmap(); 
    
                   return bmp;
               }
           }
       }
       return null;
    }
  3. We now have both the bitmaps, i.e., the desktop bitmap and the mouse cursor bitmap with its position on the screen. Now, it's time to place the mouse cursor bitmap on the desktop bitmap. I have provided the following function that places the mouse cursor image over the desktop bitmap at the proper position:
    public static Bitmap CaptureDesktopWithCursor()
    {     
       int cursorX = 0;
       int cursorY = 0;
       Bitmap desktopBMP;
       Bitmap cursorBMP;
       Bitmap finalBMP;
       Graphics g;
       Rectangle r;
       desktopBMP = CaptureDesktop();
       cursorBMP = CaptureCursor(ref cursorX, ref cursorY);
       if(desktopBMP != null)
       {
           if (cursorBMP != null)
           {
               r = new Rectangle(cursorX, cursorY, 
                       cursorBMP.Width, cursorBMP.Height);
               g = Graphics.FromImage(desktopBMP);
               g.DrawImage(cursorBMP, r);
               g.Flush();
               return desktopBMP;
           }
           else
               return desktopBMP;
       }
       return null;
    }
  4. The bitmap with the cursor is now ready to be rendered over a viewer surface (a PictureBox used here). Since the viewer's visible area is smaller than the desktop bitmap area, scaling has been used in the function that displays the cooked desktop image.
    // ssWithMouseViewer is the PictureBox control
    
    private void Display(Bitmap desktop)
    {
        Graphics g;
        Rectangle r;
        if(desktop != null)
        {
            r = new Rectangle(0,0,ssWithMouseViewer.Width, 
                                ssWithMouseViewer.Height);
            g = ssWithMouseViewer.CreateGraphics();
            g.DrawImage(desktop,r);
            g.Flush();
        }
    }

Note

The binary image provided is compiled with Visual Studio .NET 2005 so you have to install .NET Framework 2.0.

Known problems

I have tested the application on my machine with no known problems, so I expect the same behavior on your machine.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Rashid.Mahmood


Member
He is always interested to write technical articles that address the problems of the programmers community.

He loves to develope softares using C++, VC++ and C#. He also likes programming in Java due to its high portability. His area of interest is Graphics side esp. Games.

Occupation: Web Developer
Location: Pakistan Pakistan

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 27 (Total in Forum: 27) (Refresh)FirstPrevNext
QuestionCopy using BitBlt? PinmemberLone Developer23:40 2 Sep '08  
QuestionRemote Desktop Monitoring in C#.Net PinmemberMember 37145124:15 27 Dec '07  
QuestionVC++ :( PinmemberSobaan18:43 12 Jan '07  
QuestionText Cursor PinmemberFornazin10:29 11 Jan '07  
AnswerRe: Text Cursor PinmemberFornazin8:07 24 Jan '07  
QuestionIT is not rendering me desktop image with mouse Pinmembergabrousman6:17 8 Jan '07  
QuestionHow can i control the remote Desktop Through Mouse and Key Board PinmemberMe the Lover9:26 29 Dec '06  
GeneralHave you solved the IBeam cursor problem? PinmemberGlobulus2:44 15 Mar '06  
GeneralRe: Have you solved the IBeam cursor problem? Pinmemberssheldon18:31 7 Mar '07  
GeneralLeak in CaptureCursor found and fixed! PinmemberGlobulus5:51 14 Mar '06  
GeneralRe: Leak in CaptureCursor found and fixed! Pinmemberham-z18:01 9 Sep '07  
GeneralExcellent Pinmembermrsnipey0:39 14 Mar '06  
GeneralLeak in CaptureCursor? PinmemberGlobulus8:07 12 Mar '06  
GeneralRe: Leak in CaptureCursor? PinmemberRashid.Mahmood21:22 12 Mar '06  
GeneralRe: Leak in CaptureCursor? PinmemberGlobulus22:42 12 Mar '06  
GeneralRe: Leak in CaptureCursor? [modified] PinmemberTwiggy Ramirez5:13 13 Jul '09  
GeneralWin32 and GDI PinsupporterScott Elder18:03 5 Mar '06  
GeneralRe: Win32 and GDI PinmemberRashid.Mahmood19:54 5 Mar '06  
GeneralRe: Win32 and GDI PinsupporterScott Elder20:06 5 Mar '06  
AnswerRe: Win32 and GDI PinmemberRazi Al-Sayed10:09 9 Apr '06  
GeneralSelected areas PinmemberMichael J. Collins5:10 31 Jan '06  
Questionanother question :) Pinmemberketan1423:05 30 Jan '06  
AnswerRe: another question :) PinmemberRashid.Mahmood20:32 31 Jan '06  
GeneralRe: another question :) Pinmemberketan141:10 13 Mar '06  
GeneralRe: another question :) PinmemberDaniel Repich12:04 31 May '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

PermaLink | Privacy | Terms of Use
Last Updated: 27 Jan 2006
Editor: Smitha Vijayan
Copyright 2006 by Rashid.Mahmood
Everything else Copyright © CodeProject, 1999-2010
Web18 | Advertise on the Code Project