1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
//加载图标 CPaintDC dc(this); // device context for painting HICON hIcon=AfxGetApp()->LoadIcon(IDI_ICON1); if (hIcon && hIcon!=(HICON)-1) dc.DrawIcon(10,10,hIcon); //加载位图 CPaintDC dc(this); //在对话框中直接显示图像 BITMAP bm; CBitmap bmp;//定义CBitmap 类的对象 bmp.LoadBitmap(IDB_BITMAP1);//装入ID号为IDB_BITMAP1的位图 CDC memdc;//定义CDC类的对象 CRect rect; memdc.CreateCompatibleDC(&dc);//创建与显示DC相兼容的内存DC bmp.GetBitmap(&bm); CBitmap *bmpold=memdc.SelectObject(&bmp);//将选定的位图选入内存DC GetClientRect(&rect); //从内存DC向显示DC复制,rect.left,rect.top为图像左上角的坐标,SRCCOPY表示直接将源位图拷贝到目的位图,不作修改 dc.BitBlt(rect.left,rect.top,bm.bmWidth,bm.bmHeight,&memdc,0,0,SRCCOPY); memdc.SelectObject(bmpold); memdc.DeleteDC(); bmp.DeleteObject(); |
发表评论
要发表评论,您必须先登录。