Click here to Skip to main content
Licence 
First Posted 15 Jun 2007
Views 27,849
Downloads 794
Bookmarked 14 times

Easy way to Load Image in MFC dialog

By | 15 Jun 2007 | Article
This artcle describes how to load image into dialogs easily

Introduction

This article tells how to link a bitmap image into dialog background.

How to do...?

Create a dialog based application, open the dialog.cpp file and go to OnPaint function, it looks like below coding...

void CLoad_ImageDlg::OnPaint() 
{
 if (IsIconic())
 {
  CPaintDC dc(this); // device context for painting
  SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  // Center icon in client rectangle
  int cxIcon = GetSystemMetrics(SM_CXICON);
  int cyIcon = GetSystemMetrics(SM_CYICON);
  CRect rect;
  GetClientRect(&rect);
  int x = (rect.Width() - cxIcon + 1) / 2;
  int y = (rect.Height() - cyIcon + 1) / 2;
  // Draw the icon
  dc.DrawIcon(x, y, m_hIcon);
 }
 else
 {
  CDialog::OnPaint();
 }
}

just erase the coding (if you dont need of icon for your dialog) which is available in the paint and modify the function as below

void CLoad_ImageDlg::OnPaint() 
{
    CPaintDC dc(this); // device context for painting
    HBITMAP m_Bmap;
    CRect rect;
    HDC memdc;
    CString path,m_ifilename1,m_ifilename2;

    path=AfxGetApp()->m_pszHelpFilePath;

    for(int i=1;i<=path.GetLength();i++)
    {    
        if(path.Mid(i,10)=="Load_Image")
        {
            path = path.Mid(0,i+10);
            break;
        }
    }
    m_ifilename1 = path + "<a href="file://"+"AK.bmp";GetClientRect(&rect);m_Bmap=(HBITMAP)::LoadImage(NULL,m_ifilename1,IMAGE_BITMAP,0,0,LR_LOADFROMFILE);memdc=::CreateCompatibleDC(dc.m_hDC);::SelectObject(memdc,m_Bmap);BitBlt(dc.m_hDC,0,0,rect.right,rect.bottom,memdc,0,0,SRCCOPY/">\\"+"AK.bmp";

    GetClientRect(&rect);

    m_Bmap=(HBITMAP)::LoadImage(NULL,m_ifilename1,IMAGE_BITMAP,0,0,LR_LOADFROMFILE);
    memdc=::CreateCompatibleDC(dc.m_hDC);
    ::SelectObject(memdc,m_Bmap);

    BitBlt(dc.m_hDC,0,0,rect.right,rect.bottom,memdc,0,0,SRCCOPY</a>); 

}

the above source will get the current path of application folder and load the image from that folad into dialog.

hope that this article helps you to link image into mfc dialog that you write.

This is my first article. If there is anything missing of explanation please mail me..

my email id : ak_from_cbe@yahoo.com

History

June 16 - 2007

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

Khathar

Software Developer (Senior)
VL Machine Vision Systems Pvt Ltd.,
India India

Member

Bachelor degree in Computer Aplications.
 
- 9+ years experience in C, C++, and Visual C++.
- Obssessed in OOP style design and programming.
- Desigining and developing Industrial Auotmation Products.
- Designing and writing code to build a Image processing algorithms VC++.
 
The summary of my skills:
BASIC, COBOL, C++ code, VC++, MFC, , SQL Server, MS Access, VB, FoxPro, Desktop Tools.

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
Generalmisc Pinmembermc_cappy22:46 13 Jul '10  
Generalresource leak PinmemberETA8:28 16 Jun '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.120517.1 | Last Updated 16 Jun 2007
Article Copyright 2007 by Khathar
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid