Click here to Skip to main content
15,881,089 members
Articles / Programming Languages / C++/CLI
Article

Screen and Form capture with Managed C++

Rate me:
Please Sign up or sign in to vote.
4.92/5 (39 votes)
3 Jul 2002CPOL2 min read 299.3K   2.6K   38   45
This is further demonstration of MC++ IJW capabilities

Image 1

Introduction

I was continuing to play around with IJW. And when I realized that there was no direct Screen Capture method in .NET, I thought I might as well try to make a simple Screen Capturing program. Of course since I knew as much about GDI programming as some of these Canadians seem to know about Cricket, you might as well have guessed that I found things more than a little difficult. Luckily Tom Archer, James Johnson and Neil Van Note promptly answered my questions.

The sample program allows you to capture the entire screen or only the current form and also allows you to save the image, though here I have hard coded the filename and path, as I was too lazy to show a save dialog. If you repeatedly click on the capture buttons, you get a weird effect of cascading screen captures, one on top of the other as shown in the screenshot of the sample program.

Quick Rundown

Using GetDC or GetWindowDC depending on whether we are capturing the screen or the current window, we get our HDC using which we call CreateCompatibleDC to create our memory DC. Using a call to GetSystemMetrics we get the size of the screen and then call CreateCompatibleBitmap to create a bitmap. Then we select this bitmap into the memory DC using a call to SelectObject and save the old bitmap. Using BitBlt we copy the screen or window contents into this bitmap which is now selected into the memory DC. Then we select the original bitmap back into the DC, delete the memory DC, release the DC, and delete the bitmap. To be frank, there is not much .NET stuff involved in the code, but imagine if you had to write all this using C#. Think of all the P/Invoke stuff you'd have to do and the ugly declarations you'd have had to write for the API calls. With MC++ you are saved all that bother.

Full Source Listing

The source code is self-explanatory. Notice how I have written my WinMain. This is because I am including windows.h where WinMain is already prototyped in that fashion.

MC++
#include "stdafx.h"

#using <mscorlib.dll>
#using <System.dll>
#using <System.Drawing.dll>
#using <System.Windows.Forms.dll>

#include <tchar.h>
#include <windows.h>

using namespace System;
using namespace System::ComponentModel;
using namespace System::Drawing;
using namespace System::Windows::Forms;

public __gc class NForm : public Form
{
public:
    Button *btn;
    Button *btn2;
    Button *btn3;
    PictureBox *pbox;
    void btn_Click(Object *sender, System::EventArgs* e); 
    void CaptureScreen(bool FullScreen);

    NForm()
    {
        this->StartPosition = FormStartPosition::CenterScreen;
        this->Text = "Capture screen - Nish for CodeProject -IJW";
        this->Size = Drawing::Size(750,550);
        this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedDialog; 

        btn=new Button();
        btn->Text="Capture Screen";
        btn->Location=Point(5,5);
        btn->Size=Drawing::Size(100,30);
        btn->add_Click(new EventHandler(this,&NForm::btn_Click)); 
        this->Controls->Add(btn);

        btn2=new Button();
        btn2->Text="Capture Form";
        btn2->Location=Point(125,5);
        btn2->Size=Drawing::Size(100,30);
        btn2->add_Click(new EventHandler(this,&NForm::btn_Click)); 
        this->Controls->Add(btn2);

        btn3=new Button();
        btn3->Text="Save C:\\Z.Jpg";
        btn3->Location=Point(250,5);
        btn3->Size=Drawing::Size(100,30);
        btn3->add_Click(new EventHandler(this,&NForm::btn_Click)); 
        this->Controls->Add(btn3);

        pbox = new PictureBox();
        pbox->Location=Point(5,45);
        pbox->Size=Drawing::Size(730,470);
        pbox->BorderStyle = BorderStyle::Fixed3D;
        pbox->SizeMode = PictureBoxSizeMode::StretchImage;


        this->Controls->Add(pbox);
    }
};

int __stdcall WinMain(HINSTANCE,HINSTANCE,LPSTR,int)
{
    Application::Run(new NForm());
    return 0;
}

void NForm::btn_Click(Object *sender, System::EventArgs *e)
{
    if(sender->Equals(btn))
        CaptureScreen(true);
    else
    {
        if(sender->Equals(btn2))
            CaptureScreen(false);
        else
            pbox->Image->Save("C:\\Z.Jpg",
                Drawing::Imaging::ImageFormat::Jpeg);
    }
}

void NForm::CaptureScreen(bool FullScreen)
{
    HDC hDC;
    if(FullScreen)
        hDC = GetDC(NULL); //Get full screen
    else
    {
        HWND hWnd=(HWND)this->Handle.ToInt32(); //Get HWND of form
        hDC = GetWindowDC(hWnd); //Now get it's DC handle 
    }
    HDC hMemDC = CreateCompatibleDC(hDC);
    RECT r;
    GetWindowRect((HWND)this->Handle.ToInt32(),&r); //need this for Form
    SIZE size;
    if(FullScreen)
    { 
        size.cx = GetSystemMetrics(SM_CXSCREEN);
        size.cy = GetSystemMetrics(SM_CYSCREEN);
    } 
    else
    {
        size.cx = r.right-r.left;
        size.cy = r.bottom-r.top;
    }

    //most of the remaining code is normal GDI stuff

    HBITMAP hBitmap = CreateCompatibleBitmap(hDC, size.cx, size.cy);
    if (hBitmap)
    {
        HBITMAP hOld = (HBITMAP) SelectObject(hMemDC, hBitmap);
        BitBlt(hMemDC, 0, 0, size.cx, size.cy, hDC, 0, 0, SRCCOPY);
        SelectObject(hMemDC, hOld);
        DeleteDC(hMemDC);
        ReleaseDC(NULL, hDC);
        pbox->Image = Image::FromHbitmap(hBitmap); 
        DeleteObject(hBitmap);
    }
}

History

  • May 7 02 - Posted the article
  • Jul 4 02 - Added sample VC++ project

License

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


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
GeneralMy vote of 5 Pin
Aziz Yosofi6-Feb-13 22:25
Aziz Yosofi6-Feb-13 22:25 
Questionexcuse me, i have a problem in capturing when i play the video Pin
zhmx_love21-Aug-12 22:47
zhmx_love21-Aug-12 22:47 
GeneralMy vote of 5 Pin
Member 923867912-Jul-12 22:27
Member 923867912-Jul-12 22:27 
QuestionQuestions regarding your article Pin
Olariu Bogdan25-May-10 1:23
Olariu Bogdan25-May-10 1:23 
AnswerRe: Questions regarding your article Pin
Nish Nishant25-May-10 1:29
sitebuilderNish Nishant25-May-10 1:29 
GeneralRe: Questions regarding your article Pin
Olariu Bogdan25-May-10 23:39
Olariu Bogdan25-May-10 23:39 
Questionhow to get the image containing total content of entire form in .net windows application Pin
m.raghu18-Jun-07 19:13
m.raghu18-Jun-07 19:13 
QuestionHow CreateDIBSection Work??? Pin
javad_200524-Sep-06 9:32
javad_200524-Sep-06 9:32 
QuestionC++/CLI Image::FromHBitmap Pin
Coder2k25-Jun-06 8:35
Coder2k25-Jun-06 8:35 
QuestionRe: C++/CLI Image::FromHBitmap Pin
Coder2k25-Jun-06 10:01
Coder2k25-Jun-06 10:01 
AnswerRe: C++/CLI Image::FromHBitmap Pin
Coder2k25-Jun-06 10:15
Coder2k25-Jun-06 10:15 
Generalproblem Pin
mr_ander5on6-Jun-05 10:58
mr_ander5on6-Jun-05 10:58 
Questionhow SetDIBitsToDevice work??? Pin
Jagdish Vasani17-Mar-05 18:23
Jagdish Vasani17-Mar-05 18:23 
GeneralBlack Screen Pin
someone3214824-Apr-04 14:10
someone3214824-Apr-04 14:10 
AnswerRe: Black Screen [modified] Pin
damn_tiby27-Apr-07 6:39
damn_tiby27-Apr-07 6:39 
Generala question Pin
yediyildiz1-Aug-02 23:02
yediyildiz1-Aug-02 23:02 
GeneralRe: a question Pin
Nish Nishant1-Aug-02 23:11
sitebuilderNish Nishant1-Aug-02 23:11 
GeneralRe: a question Pin
yediyildiz2-Aug-02 1:24
yediyildiz2-Aug-02 1:24 
Generaldoh Pin
Maurizio Pisano4-Jul-02 15:07
Maurizio Pisano4-Jul-02 15:07 
GeneralGood work but.. Pin
Rama Krishna Vavilala8-May-02 4:09
Rama Krishna Vavilala8-May-02 4:09 
GeneralRe: Good work but.. Pin
Nish Nishant8-May-02 8:56
sitebuilderNish Nishant8-May-02 8:56 
GeneralRe: Good work but.. Pin
Rama Krishna Vavilala8-May-02 8:57
Rama Krishna Vavilala8-May-02 8:57 
GeneralRe: Good work but.. Pin
Nish Nishant8-May-02 9:08
sitebuilderNish Nishant8-May-02 9:08 
GeneralRe: Good work but.. Pin
James T. Johnson8-May-02 9:38
James T. Johnson8-May-02 9:38 
GeneralRe: Good work but.. Pin
Nish Nishant8-May-02 9:42
sitebuilderNish Nishant8-May-02 9:42 

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

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