cs_6co
Messages postés114Date d'inscriptionlundi 27 janvier 2003StatutMembreDernière intervention 5 avril 20121 15 nov. 2004 à 17:24
si tu jettes un coup d'œil à win32sdk.hlp, tu trouveras ceci :
typedef struct tagBITMAP { // bm
LONG bmType;
LONG bmWidth;
LONG bmHeight;
LONG bmWidthBytes;
WORD bmPlanes;
WORD bmBitsPixel;
LPVOID bmBits;
} BITMAP;
la structure d'un bitmap...
la dernière variable bmBits est un pointeur vers tous les pixels de l'image (à raison de trois octets par pixel généralement -> image 24bits)