vc++6.0急求住,关于对话框的图片控件的问题
在vc++6.0的对话框的应用中我加入一个图片控件后怎么操作才能让资源里的图片自动适应图片控件的大小,每次图片都是大,我直接办不了了!!!!...
在vc++6.0的对话框的应用中我加入一个图片控件后怎么操作才能让资源里的图片自动适应图片控件的大小,每次图片都是大,我直接办不了了!!!!
展开
1个回答
展开全部
直接LoadBitmap然后调用StretchBlt就可以任意缩放了。
BOOL StretchBlt(
HDC hdcDest, // handle to destination DC
int nXOriginDest, // x-coord of destination upper-left corner
int nYOriginDest, // y-coord of destination upper-left corner
int nWidthDest, // width of destination rectangle
int nHeightDest, // height of destination rectangle
HDC hdcSrc, // handle to source DC
int nXOriginSrc, // x-coord of source upper-left corner
int nYOriginSrc, // y-coord of source upper-left corner
int nWidthSrc, // width of source rectangle
int nHeightSrc, // height of source rectangle
DWORD dwRop // raster operation code
);
追问
该怎么用这个stretchbit?直接写这个就行还是有什么别的格式?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询