在Windows中可以將預先准備好的圖像復制到顯示區域中,這種內存拷貝執行起來是非常快的。在Windows中提供了兩種使用圖形拷貝的方法:通過設備相關位圖(DDB)和設備無關位圖(DIB)。
DDB可以用MFC中的CBitmap來表示,而DDB一般是存儲在資源文件中,在加載時只需要通過資源ID號就可以將圖形裝入。BOOL CBitmap::LoadBitmap( UINT nIDResource )可以裝入指定DDB,但是在繪制時必須借助另一個和當前繪圖DC兼容的內存DC來進行。通過CDC::BitBlt( int x, int y, int nWidth, int nHeight, CDC* pSrcDC, int xSrc, int ySrc, DWORD dwRop )繪制圖形,同時指定光柵操作的類型。BitBlt可以將源DC中位圖復制到目的DC中,其中前四個參數為目的區域的坐標,接下來是源DC指針,然後是源DC中的起始坐標,由於BitBlt為等比例復制,所以不需要再次指定長寬,(StretchBlt可以進行縮放)最後一個參數為光柵操作的類型,可取以下值:
- BLACKNESS 輸出區域為黑色 Turns all output black.
- DSTINVERT 反色輸出區域 Inverts the destination bitmap.
- MERGECOPY 在源和目的間使用AND操作 Combines the pattern and the source bitmap using the Boolean AND operator.
- MERGEPAINT 在反色後的目的和源間使用OR操作 Combines the inverted source bitmap with the destination bitmap using the Boolean OR operator.
- NOTSRCCOPY 將反色後的源拷貝到目的區 Copies the inverted source bitmap to the destination.
- PATINVERT 源和目的間進行XOR操作 Combines the destination bitmap with the pattern using the Boolean XOR operator.
- SRCAND 源和目的間進行AND操作 Combines pixels of the destination and source bitmaps using the Boolean AND operator.
- SRCCOPY 復制源到目的區 Copies the source bitmap to the destination bitmap.
- SRCINVERT 源和目的間進行XOR操作 Combines pixels of the destination and source bitmaps using the Boolean XOR operator.
- SRCPAINT 源和目的間進行OR操作 Combines pixels of the destination and source bitmaps using the Boolean OR operator.
- WHITENESS 輸出區域為白色 Turns all output white.
下面用代碼演示這種方法:
CYourView::OnDraw(CDC* pDC)
{
CDC memDC;//定義一個兼容DC
memDC.CreateCompatibleDC(pDC);//創建DC
CBitmap bmpDraw;
bmpD