CBITMAP与BITMAP

CBitmap是一个类,封装了Windows图形设备接口(GDI)中的位图,并且提供了操纵位图的成员函数。

BITMAP是个结构:
typedef   struct   tagBITMAP   {
    LONG       bmType;  
    LONG       bmWidth;  
    LONG       bmHeight;  
    LONG       bmWidthBytes;  
    WORD       bmPlanes;  
    WORD       bmBitsPixel;  
    LPVOID   bmBits;  
}   BITMAP,   *PBITMAP;  




CBitmap   include   BITMAP
CBitmap   is   in   MFC
BITMAP   is   in   SDK


你可能感兴趣的:(windows,struct,mfc,include,图形)