MFC加载图像问题 5
最开始加载一副图像,调用showImage是可以的,然后最图像做了一下处理,在别的函数中在此调用showImage,就会报错,此处贴出部分代码CMy3dSceneReco...
最开始加载一副图像,调用showImage是可以的,然后最图像做了一下处理,在别的函数中在此调用showImage,就会报错,此处贴出部分代码
CMy3dSceneRecoverDlg dlg;
dlg.showImage (pImage,IDC_PIC);
void CMy3dSceneRecoverDlg::showImage(IplImage* img, UINT ID)
{
CDC *pDC=GetDlgItem(ID)->GetDC ();
HDC hDC=pDC->GetSafeHdc (); //获取HDC(设备句柄)来进行绘图操作
CRect rect;
GetDlgItem(ID)->GetClientRect (&rect);
CvvImage cimg;
cimg.CopyOf(img);
cimg.DrawToHDC(hDC,&rect);
ReleaseDC(pDC);
}
断电调试错误在这里
CWnd* CWnd::GetDlgItem(int nID) const
{
ASSERT(::IsWindow(m_hWnd));
发现m_hWnd的值是0x00000000,感觉不正确,但是不知道怎么解决这个问题 展开
CMy3dSceneRecoverDlg dlg;
dlg.showImage (pImage,IDC_PIC);
void CMy3dSceneRecoverDlg::showImage(IplImage* img, UINT ID)
{
CDC *pDC=GetDlgItem(ID)->GetDC ();
HDC hDC=pDC->GetSafeHdc (); //获取HDC(设备句柄)来进行绘图操作
CRect rect;
GetDlgItem(ID)->GetClientRect (&rect);
CvvImage cimg;
cimg.CopyOf(img);
cimg.DrawToHDC(hDC,&rect);
ReleaseDC(pDC);
}
断电调试错误在这里
CWnd* CWnd::GetDlgItem(int nID) const
{
ASSERT(::IsWindow(m_hWnd));
发现m_hWnd的值是0x00000000,感觉不正确,但是不知道怎么解决这个问题 展开
2个回答
展开全部
说明你的ID不存在了啊。
检查一下在调用别的函数的时候,ID是否还存在,找找不存在的原因。
检查一下在调用别的函数的时候,ID是否还存在,找找不存在的原因。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
http://msdn.microsoft.com/en-us/library/windows/desktop/ms648045(v=vs.85).aspx
If the fuLoad parameter includes the LR_LOADFROMFILE value, lpszName is the name of the file that contains the stand-alone resource (icon, cursor, or bitmap file). Therefore, set hinst to NULL.
以上回答你满意么?
If the fuLoad parameter includes the LR_LOADFROMFILE value, lpszName is the name of the file that contains the stand-alone resource (icon, cursor, or bitmap file). Therefore, set hinst to NULL.
以上回答你满意么?
追问
没看懂,“set hinst to NULL
”能否用中文直接告诉怎么改
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询