비트맵 이미지 크기를 알아 낼 수 있다. 가로, 세로... 즉, 이미지 사이즈.
[Source Code] :
CBitmap m_bitmap;
m_bitmap.LoadBitmap(IDB_BITMAP1); // 비트맵 로드...
:
BITMAP bmp;
m_bitmap.GetObject(sizeof(BITMAP), &bmp); // 비트맵 오브젝트
// bmp.bmWidth, bmp.bmHeight 이용하여 가로, 세로 크기 알수 있다....
//CString str; // 확인을 위해서.... 메세지 박스로... 여기서 부터는 사실상 필요 없는 코드...
//str.Format("%d, %d", bmp.bmWidth, bmp.bmHeight);
//AfxMessageBox(str);
출처 : http://i0nucleus.egloos.com/2737113