Click here to Skip to main content
15,878,814 members
Articles / Desktop Programming / MFC
Article

Bitmap usage extension library

Rate me:
Please Sign up or sign in to vote.
4.67/5 (5 votes)
3 Apr 2001 250.3K   6.5K   62   44
MFC extension DLL including advanced bitmap usage features

Fake Screenshot :))

Introduction

Needless to say that a bitmap is the gateway between different raster image formats and GDI image representation. Device Independent Bitmaps or DIBs are important objects that allow us to save, load and draw images without thinking of display mode in device context - independent way. OS will do its best to output them as close to original, as it is able, because DIBs contain all necessary color usage, color depth, and image resolution information. There are many, or better say, numerous classes that support DIB operations through wrapping Windows API functions. This MFC extension DLL contains such class and a bit more to make bitmap usage easier and more flexible.

Classes included

All class declarations are included in the bmpext.h header.

Device dependent bitmap (DDB) extension class CDDBDrawEx:

This class is intended for on-stack allocation and usage within the single scope, as it has no default constructor and no "real" data members, only pointers to externally defined ones.

It exposes public methods as follows:

// Inplace constructor. pDC - pointer to drawing context, pbmSrc - pointer to DDB to render
// on pDC, pbmBack - optional pointer to background bitmap, that pbmSrc to blend with during transparent draw.
CDDBDrawEx(CDC* pDC, CBitmap* pbmSrc, CBitmap* pbmBack = NULL);

// Wraps around source DDB filling on pDC within rDest rectangle.
void Fill(CRect& rDest);

// Wrapper around BitBlt API function. Blitting source bitmap to pDC into rDest rectangle.
void Draw(CRect& rDest, CPoint& pntSrc);

// Perform transparent DDB draw, assuming crMask color stands for transparent pixels
// in source DDB. It uses modified routine taken from flicker-free drawing example on
// <A HREF="http://www.codeguru.com">www.codeguru.com</A>. It uses optional pbmBack if supplied in constructor to do this flicker - free drawing.
void DrawTransparent(CRect& rDest, CPoint& pntSrc, COLORREF crMask);

// Constructs complex region from source bitmap using cTransparentColor and cTolerance
// for defining transparent (hollow) region areas. Internally, it uses modified region
// builder code by Jean-Edouard Lachand-Robert <A HREF="http://www.geocities.com/Paris/LeftBank/1160/resume.htm">http://www.geocities.com/Paris/LeftBank/1160/resume.htm</A>).
// It's extremely useful when playing with ::SetWindowRgn function to create windows with
// non-rectangular shape.
HRGN MakeRgn(COLORREF cTransparentColor = 0, COLORREF cTolerance = 0x101010);

DIBitmap encapsulation class CDib:

This class and the Frankenstein monster have much in common :) Part of its code was taken from samples shipped with MFC 4.0 book, partially from CodeGuru and other sources. I have modified it, put it together, and said "It's alive... ALIVE!" :)

It exposes public methods as follows:

<CODE>// Default constructor.
CDib();

// Several self-explanatory methods.
DWORD Width();
DWORD Height();
WORD  NumColors(  BITMAPINFOHEADER& bmiHeader );

// Object validation checking method.
BOOL  IsValid();

// Frees internal DIB member data, making object invalid. (IsValid returns false)
void Invalidate();

// Drawing method, automatically invokes DIB stretching.
BOOL  Draw(CDC*, CRect& rectDC, CRect& rectDIB);

// Direct DIB pixel access methods.
void SetPixel( int iX, int iY, RGBQUAD& rgbPixel );
RGBQUAD GetPixel(int iX, int iY);

// Save DIB to disk file.
DWORD Save(CFile& file);

// Read DIB from file, support resource reading. If bFromResource = TRUE,
// then it just skips DIB file marker read phase.
DWORD Read(CFile& file, BOOL bFromResource = FALSE );

// Reads DIB from resource, basing on its nResID. Internally invokes previous Read method.
DWORD ReadFromResource(UINT nResID);

// Next two methods create DDB from DIB object.
HBITMAP CreateDDBitmap(CDC* pDC);
HBITMAP CreateDDBitmap( HDC hDC );

// Tries to compress DIB first making it DDB, then changing compression attribute and
// converting it back to DIB.
BOOL Compress(CDC* pDC, BOOL bCompress );

// Assignment operator
CDib& operator = (CDib& dib);</CODE>

Extension Classes Usage

CDDBDrawEx class usage:

<CODE>{
....
// CDC* pDC, CBitmap* bmImg, CRect rDest, and COLORREF crImgMask are declared and initialized elsewhere
....
// inplace construction
CDDBDrawEx ddbDrawEx(pDC, bmImg);

// Do transparent drawing
ddbDrawEx.DrawTransparent(rDest, CPoint(0), crImgMask );

// Do bitmapped fill
ddbDrawEx.Fill( rDest )
}

// Region creation. CBitmap bmSkin is declared and initialized elsewhere
{
....
CDDBDrawEx ddbDrawEx(NULL, &m_bmSkin );

return ddbDrawEx.MakeRgn( m_crTransparent, m_crTolerance );
}</CODE>

CDib class usage:

<CODE>CDib dibTemp;
CDC* pDC = CDC::FromHandle( ::GetDC( NULL ) );

....
// nResID is declared and initialized elsewhere
dibTemp.ReadFromResource( nResID );
....
}</CODE>

Demo project implementing these extensions also includes class template for customizing dialog frame. I'm going to describe this template in detailed review which I plan to publish in a week. It will cover the window frames customization technique and will be supplemented with couple of helper template class. That's all so far, but I will supply several useful control and animation class libs packaged as MFC extension DLL in the nearest future. Additions, corrections and suggestions are always welcomed, as I often haven't enough time to optimize my source or make it more elegant. Mail me at: gromov@eti.co.ru.

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


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalgeneral: Windows with buttons Pin
sekolaphakoe4-Feb-07 8:56
sekolaphakoe4-Feb-07 8:56 
GeneralRe: general: Windows with buttons Pin
Christian Graus4-Feb-07 12:26
protectorChristian Graus4-Feb-07 12:26 
QuestionHow to create images in c++ Pin
sekolaphakoe4-Feb-07 8:47
sekolaphakoe4-Feb-07 8:47 
AnswerRe: How to create images in c++ Pin
Christian Graus4-Feb-07 9:03
protectorChristian Graus4-Feb-07 9:03 
You should ask this in the C++ forum, after you use google a bit to find your own info. CBitmap is the class in MFC for an image. If you google that, you should find heaps of info.

You'd also need to define 'use'. Do you want to draw on an image ? Process it somehow ?


Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog

GeneralRe: How to create images in c++ Pin
sekolaphakoe4-Feb-07 9:15
sekolaphakoe4-Feb-07 9:15 
GeneralRe: How to create images in c++ Pin
Christian Graus4-Feb-07 12:25
protectorChristian Graus4-Feb-07 12:25 
Generalmorphing coding Pin
Caroline Tan4-Jan-04 7:07
Caroline Tan4-Jan-04 7:07 
GeneralRe: morphing coding Pin
tome,renato24-May-04 22:29
tome,renato24-May-04 22:29 
GeneralFaster Set/GetPixel method Pin
Angelina Cheng22-Dec-03 7:00
Angelina Cheng22-Dec-03 7:00 
QuestionHow to get the data info of image? Pin
jinglebelll6-Nov-03 0:15
jinglebelll6-Nov-03 0:15 
QuestionHow To Set picture bacground of scrolling window Pin
Member 5948607-Oct-03 19:39
Member 5948607-Oct-03 19:39 
GeneralBitmap editor Pin
codexxxxx22-Nov-02 19:44
codexxxxx22-Nov-02 19:44 
GeneralRe: Bitmap editor Pin
Anonymous2-Nov-03 12:13
Anonymous2-Nov-03 12:13 
GeneralGetPixel throws an exception Pin
27-Jun-02 15:15
suss27-Jun-02 15:15 
GeneralRotate a CDC object's some portion by given degrees Pin
17-Jun-02 23:32
suss17-Jun-02 23:32 
GeneralRotating a CDC object Pin
17-Jun-02 22:44
suss17-Jun-02 22:44 
GeneralRe: Rotating a CDC object Pin
Christian Graus17-Jun-02 23:33
protectorChristian Graus17-Jun-02 23:33 
GeneralError when using CDIB please help!! Pin
yair2428-Apr-02 1:19
yair2428-Apr-02 1:19 
GeneralRe: Error when using CDIB please help!! Pin
28-Apr-02 1:39
suss28-Apr-02 1:39 
QuestionHow to get / load CDib from CStatic Control (capture) Pin
AndIosJavaC++27-Apr-02 2:41
AndIosJavaC++27-Apr-02 2:41 
Generalgrayscale bitmap, etc Pin
28-Jan-02 17:05
suss28-Jan-02 17:05 
GeneralRe: grayscale bitmap, etc Pin
Christian Graus17-Jun-02 23:34
protectorChristian Graus17-Jun-02 23:34 
Generalbitmapinfoheader of CDib Pin
3-Aug-01 2:23
suss3-Aug-01 2:23 
GeneralRe: bitmapinfoheader of CDib Pin
Vsevolod7-Aug-01 21:11
professionalVsevolod7-Aug-01 21:11 
Generala new user Pin
3-Jul-01 5:06
suss3-Jul-01 5:06 

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.