Click here to Skip to main content
15,868,016 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 250K   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

 
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 

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.