PRB: CreateCompatibleBitmap() Behaves Differently on NT and 95Last reviewed: December 9, 1996Article ID: Q160522 |
The information in this article applies to:
SYMPTOMSWhen calling CreateCompatibleBitmap() on Windows NT, the operating system will return a bitmap where all of the pixels are initialized to BLACKNESS. On Windows 95, however, the operating system will not initialize the bits. This behavioral difference frequently shows up when software is developed on Windows NT and then later tested on Windows 95.
CAUSEWindows NT initializes the contents of the bitmap for security reasons. Windows 95 does not provide the same level of security as Windows NT and, therefore, does not initialize the bits. You should always treat newly-created memory bitmaps as though they were uninitialized. You should initialize them yourself prior to drawing on them.
RESOLUTIONFortunately, this behavioral difference is easy to work around. The simplest way is to PatBlt() the surface of the memory bitmap with BLACKNESS after it is created. For example, to alter the function below so it produces the same behavior on both Windows 95 and Windows NT, add the following line of code immediately after the call to SelectObject():
PatBlt(hdc, 0,0, rect.right, rect.bottom, BLACKNESS); STATUSThis behavior is by design.
REFERENCESThe following code fragment demonstrates the problem. When you run it on Windows NT, it will set the client area of the window corresponding to the HWND parameter to all black. When you run the same code on Windows 95, the window will be filled with whatever the image representing the uninitialized contents of the bitmap memory is:
void Test(HWND hWnd) { HDC hdcMem, hdc = GetDC(hWnd); HBITMAP hbm; RECT rect; // Get the extents of our drawing surface GetClientRect(hWnd, &rect); // Create a memory drawing surface hbm = CreateCompatibleBitmap(hdc, rect.right, rect.bottom); hdcMem = CreateCompatibleDC(hdc); SelectObject(hdcMem, hbm); // Uncomment next line to fix the problem // PatBlt(hdc, 0,0, rect.right, rect.bottom, BLACKNESS); // Draw from our memory surface to our device surface BitBlt(hdc, 0, 0, rect.right, rect.bottom, hdcMem, 0, 0, SRCCOPY); // Cleanup DeleteDC(hdcMem); DeleteObject(hbm); ReleaseDC(hWnd, hdc); } |
KBCategory: kbgraphic kbprb
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |