Partager via


AfxGetGrayBitmap

Copie une version grise d'une bitmap.

void AFXAPI AfxGetGrayBitmap( 
   const CBitmap &rSrc, 
   CBitmap *pDest, 
   COLORREF crBackground 
);

Paramètres

  • rSrc
    Le bitmap source.

  • pDest
    Le bitmap de destination.

  • crBackground
    La nouvelle couleur d'arrière-plan (généralement grise, par exemple COLOR_MENU).

Notes

Un bitmap copié avec AfxGetGrayBitmap aura l'apparence d'un contrôle désactivé.

Comparaison des versions d'icônes grises et d'origine

Exemple

CBitmap bm;
bm.LoadBitmap(IDB_BITMAP1);
CBitmap bmGray;
AfxGetGrayBitmap(bm, &bmGray, GetSysColor(COLOR_MENU));

Configuration requise

En-tête : afxwin.h

Voir aussi

Référence

AfxDrawGrayBitmap

AfxGetDitheredBitmap

Concepts

macro MFC et Globals

Autres ressources

Gris et fonctions de bitmap tramées