Click here to Skip to main content
Click here to Skip to main content

CreateRegionFromFile

By , 10 Dec 2001
 

Introduction

This very simple function creates a region from a bitmap (.bmp) file. 8, 16, 24 and 32 bit color modes are supported.

The function takes two parameters:

  • hBmp - a handle to the bitmap image.
  • color - transparent color.
HRGN CreateRgnFromFile( HBITMAP hBmp, COLORREF color );

Using the function is very simple. For example, if you wish to set the window shape of your dialog, then in your OnInitDialog handler, do this:

BOOL CFileRgnDlg::OnInitDialog()
{
    CDialog::OnInitDialog();

    // load image
    HBITMAP hBmp = (HBITMAP)LoadImage( AfxGetInstanceHandle(), 
                     "Rgn.bmp", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE );
    // if fail - nothing to do
    if ( hBmp == NULL ) return TRUE;
    // create region, let the RED color be transparent

    HRGN hRgn = CreateRgnFromFile( hBmp, RGB(255,0,0) );

    // build memory dc for background
    CDC* dc = GetDC();
    m_dcBkGrnd = CreateCompatibleDC( dc->m_hDC );
    ReleaseDC( dc );
    // select background image
    SelectObject( m_dcBkGrnd, hBmp );
    // set window size the same as image size
    SetWindowPos( NULL, 0, 0, m_dwWidth, m_dwHeight, 
                           SWP_NOZORDER | SWP_NOMOVE );
    // assign region to window
    SetWindowRgn( hRgn, FALSE );

    return TRUE;
}

History

  • December 08 2001

    * cut & paste bug for 16-bit mode (white color as transparent did not work).

    * pixels in a last column has not been used.

    + Now you can use non-aligned (by width) images.

  • June 11 2001

    * ExtCreateRegion NT-problem (personal thanks to Martin for reporting about it).

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

Yuriy Zaporozhets
Canada Canada
Member
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralNot working on Windows SevenmemberDom306 May '11 - 21:19 
GeneralRe: Not working on Windows SevenmemberMember 112345026 May '11 - 10:01 
GeneralMy vote of 5memberryan20fun9 Feb '11 - 20:15 
GeneralRotated Edit BoxsussZAKIR2 Sep '04 - 3:57 
GeneralCreateRgnFromFile questionsussrioan31 Jul '04 - 10:23 
GeneralRe: CreateRgnFromFile questionmemberYuriy_Zaporozhets5 Oct '04 - 13:59 
GeneralCustom controls ...memberAdrian Datcu10 Jun '04 - 0:58 
GeneralFantastic !!!sussHarleyDude28 Apr '04 - 16:37 
GeneralGreat examplememberUbersnack10 Jun '03 - 0:42 
GeneralAdapting thismemberJudd11 Dec '02 - 3:27 
Generalfinally found itmemberKevin Smith1 Nov '02 - 9:10 
GeneralLarge FontsmemberMatt Philmon5 Feb '02 - 11:11 
GeneralRegionToBitmap class...membersaturn5 Feb '02 - 1:53 
GeneralArticle screwed up... no linksmemberMatt Philmon11 Dec '01 - 4:44 
GeneralRe: Article screwed up... no linksmemberChris Maunder11 Dec '01 - 10:44 
Generaldoesn't work in 16bits, look at this valid code ...memberF.Julien20 Sep '01 - 0:28 
Generaldoesn't work when you want white as transparent colormemberbene29 Aug '01 - 3:47 
GeneralI found here how to load HBITMAP from file...memberPavel Kurochkin26 Aug '01 - 12:42 
Questionit's not working .... why?memberscwpark30 Jul '01 - 20:15 
QuestionWhat it taje to get ::ExtCreateRegion work in NTsussAndy9 Oct '00 - 17:01 
AnswerRe: What it taje to get ::ExtCreateRegion work in NTmemberAnonymous1 Mar '01 - 23:04 
GeneralRe: What it taje to get ::ExtCreateRegion work in NTmemberAnonymous2 Apr '01 - 18:46 
Generalbuggy, slow codesussFeng Yuan www,fengyuan.com8 Sep '00 - 19:37 
GeneralRe: buggy, slow codesussLance Gordon29 Sep '00 - 4:04 
GeneralI need some help here... (rookie!)sussMatuX19 Jul '00 - 17:27 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 11 Dec 2001
Article Copyright 2000 by Yuriy Zaporozhets
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid