用VC编写一个程序调用一张图片,怎么编写?

2025-04-06 07:41:34
推荐回答(1个)
回答1:

DrawPicture(CRect Rect, int CurStatus) //第二参数用于选择是用那个图片
{
CBitmap bitmap, *pOldBitmap;
CDC SourceDC,*pDC;
pDC=GetDC(); //获得当前窗口的设备
if(pDC==NULL)
{
MessageBox("系统资源不足,请关闭程序!");
return;
}
switch(CurStatus)
{
case 1:
{
bitmap.LoadBitmap(IDB_YOURPICTUREID);//你加入的图片ID
}
break;
default:
break;
}
BITMAP bm;
bitmap.GetBitmap(&bm);
SourceDC.CreateCompatibleDC(pDC); //建立与显示设备兼容的位图
pOldBitmap=SourceDC.SelectObject(&bitmap); //将位图选入内存
pDC->SetStretchBltMode(COLORONCOLOR);
TransparentBlt(pDC->m_hDC,Rect.left,Rect.top,Rect.Width(),Rect.Height(),SourceDC.m_hDC, 0,0,bm.bmWidth,bm.bmHeight,SourceDC.GetPixel(1,1) );
SourceDC.SelectObject(pOldBitmap);
SourceDC.DeleteDC();
ReleaseDC(pDC);
return;
}