MFC:绘制图片
CString m_strSysPath; Project::Tools::GetSysPath(m_strSysPath);//获取运行地址 // TODO: 在此添加控件通知处理程序代码 //这里简单的绘制一下背景,就省略了一些 复杂的 操作 //获取到DC CDC* pDC = GetDC(); //你需要绘制的目标 CRect clientRect; GetClientRect(&clientRect); //载入你的图片 Gdiplus::Bitmap * lpBmp =Gdiplus::Bitmap::FromFile( m_strSysPath + L"\\Images\\backgroudImg\\backgroudImg_1.png" ); //绑定你 的DC Gdiplus::Graphics graph(pDC->m_hDC); //开始绘制操作 graph.DrawImage(lpBmp,0,0,140,37); graph.ReleaseHDC(pDC->m_hDC); delete lpBmp;