程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 在窗口中繪制設備相關位圖,圖標,設備無關位圖

在窗口中繪制設備相關位圖,圖標,設備無關位圖

編輯:關於C語言

 

在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						

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved