Click here to Skip to main content
Licence CPOL
First Posted 1 Mar 2006
Views 37,942
Downloads 1,048
Bookmarked 11 times

Function to load a bitmap on a dialog

By | 6 Apr 2006 | Article
Here is a function to load a bitmap on any dialog.

Sample Image - codepr.jpg

Introduction

Here, I am introducing a function SBitdraw(CDC *pDC, UINT nIDResource, int i) to load any bitmap to a dialog. There are so many ways by which we can load a bitmap. Here, I am giving a function which you can just add to your project and get the result. No need to add any other header files or .cpp files.

Using the function

First, bring the bitmap to your project.

  1. Put the function SBitdraw() as a member function of your main dialog class. Example: bool CSBitDialogDlg::SBitdraw(CDC *pDC, UINT nIDResource, int i).
  2. Add Messagemap ON_WM_ERASEBKGND() using the MFC ClassWizard.
  3. Then, call SBitdraw() from OnEraseBkgnd(CDC* pDC) to load any bitmap on the dialog.
  4. (Or, you can call from anywhere, and then you use OnEraseBkgnd() and Invalidate() to force refreshing your dialog.

-------------------------------------------------------
Parameters of the function::
SBitdraw(CDC *pDC, UINT nIDResource, int i);
1. pDC  take the device context obj.
2. nIDResource  is the ID of the bitmap.
3. Int i  will take integer 1-3  
   (1 for center, 2 for Stretch, And 3 for title) 
    to get how bitmap will load.
---------------------------------------------------------------------
Function defination:
 bool SBitdraw(CDC *pDC, UINT nIDResource, int i) 
{
            CBitmap* m_bitmap;
            m_bitmap=new CBitmap();
            m_bitmap->LoadBitmap(nIDResource);
            if(!m_bitmap->m_hObject)
                        return true;
    CRect rect;
            GetClientRect(&rect);
            CDC dc;
            dc.CreateCompatibleDC(pDC);    
            dc.SelectObject(m_bitmap);
            int bmw, bmh ;
            BITMAP bmap;
            m_bitmap->GetBitmap(&bmap);
            bmw = bmap.bmWidth;
            bmh = bmap.bmHeight;
            int xo=0, yo=0;
            switch(i){
            case 1:
            	pDC->StretchBlt(xo, yo, rect.Width(),
                                    rect.Height(), &dc,
                                    0, 0,bmw,bmh, SRCCOPY);
                break;
            case 2:
                if(bmw < rect.Width())
                    xo = (rect.Width() - bmw)/2;
                else 
                    xo=0;
                if(bmh < rect.Height())
                    yo = (rect.Height()-bmh)/2;
                else
                    yo=0;
                pDC->BitBlt (xo, yo, rect.Width(),
                            rect.Height(), &dc,
                            0, 0, SRCCOPY);
                break;
             case 3:
                for (yo = 0; yo < rect.Height(); yo += bmh)
                {
                    for (xo = 0; xo < rect.Width(); xo += bmw)
                    {
                        pDC->BitBlt (xo, yo, rect.Width(),
                                    rect.Height(), &dc,
                                    0, 0, SRCCOPY);
                    }
                }
            }
            return true;
 
}
---------------------------------------------------------------------

Note: In my demo project, UserId & Password both are "trek". First login and then change the background.

License

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

About the Author

Saday Sarkar

Web Developer

India India

Member

This is Saday Chand Sarkar , New in MFC world.
Working in Trek Technology Pte.Ltd.

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
GeneralAnother problem is memory leaks PinmemberJun Du3:25 3 Mar '06  
GeneralIssues PinmemberYoSilver5:57 2 Mar '06  

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
Web04 | 2.5.120517.1 | Last Updated 7 Apr 2006
Article Copyright 2006 by Saday Sarkar
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid