Bits of a Bitmap
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Hi, could some one help me here!! i want to acces to the bits of my Bitmap Picture but i dont know how? i made those: CBitmap m_bmpBitmap; HBITMAP hBitmap // handler. So!! Thank you Verry Much:wtf:
GetDIBits will give you a DIB. then use a bit of pointer arithmetic (and a whole lot of accounting for different bit depths) to get at the actual pixels. Cleek | Image Toolkits | Thumbnail maker
-
Hi, could some one help me here!! i want to acces to the bits of my Bitmap Picture but i dont know how? i made those: CBitmap m_bmpBitmap; HBITMAP hBitmap // handler. So!! Thank you Verry Much:wtf:
maybe it is some helpful to you http://www.codeproject.com/bitmap/jscdibdata.asp[^]