码迷,mamicode.com
首页 > 编程语言 > 详细

【MFC相关】图片显示

时间:2016-02-12 23:19:06      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:

CPaintDC dc(this); 

if (!m_hBitmap) return;
image.Attach(m_hBitmap);
CRect rect;
GetClientRect(&rect);//获得控件所在的矩形区域
int width = rect.Width();
int height = rect.Height();
//......

CDC mDC;
mDC.CreateCompatibleDC(&dc);
CBitmap b;
b.CreateCompatibleBitmap(&dc, width, height);
mDC.SelectObject(&b);
mDC.SetStretchBltMode(HALFTONE);
mDC.FillSolidRect(0, 0, width, height, RGB(212, 208, 200));//设置背景颜色
image.StretchBlt(mDC.m_hDC, marginx, marginy, width-2*marginx, height-2*marginy);
BitBlt(dc.m_hDC, 0, 0, width, height, mDC.m_hDC, 0, 0, SRCCOPY);
mDC.DeleteDC();
::DeleteObject(&b);
m_hBitmap = image.Detach();

 

【MFC相关】图片显示

标签:

原文地址:http://www.cnblogs.com/imagezy/p/4569393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!