VC如何问题集锦(不断更新中...)

1.在MFC中如何获得一个CBitmap的宽和高?

BITMAP bmp;
bmpIamge.GetBitmap(&bmp);
int nWidth = bmp.bmWidth;
int nHeight = bmp.bmHeight;

2.如何修改这个CBitmap的大小?

CBitmap是不能重复使用CreateCompatibleBitmap创建的,需要先释放原来的Bitmap   Object 。

 

你可能感兴趣的:(VC如何问题集锦(不断更新中...))