我正在尝试使用MFC应用程序显示位图图像。 我正在使用浏览按钮来选择正常工作的文件。但是,当我尝试通过双击文件来加载图像时,应用程序将启动,但图像不会显示。
这是我的浏览按钮和打开双击图像的功能的代码。
void COpenImageDlg::OnBnClickedButton1()
{
// TODO: Add your control notification handler code here
CString path;
CFileDialog dlg(TRUE);
int result=dlg.DoModal();
if(result==IDOK)
{
path=dlg.GetPathName();
UpdateData(FALSE);
}
HBITMAP hBmp = (HBITMAP)::LoadImage(NULL, path, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE|LR_CREATEDIBSECTION);
CBitmap bmp;
bmp.Attach(hBmp);
CClientDC dc(this);
CDC bmDC;
bmDC.CreateCompatibleDC(&dc);
CBitmap *pOldbmp = bmDC.SelectObject(&bmp);
BITMAP bi;
bmp.GetBitmap(&bi);
dc.BitBlt(0,0,bi.bmWidth,bi.bmHeight,&bmDC,0,0,SRCCOPY);
bmDC.SelectObject(pOldbmp);
}
void COpenImageDlg::OpenImage1(CString path)
{
//CString path;
CFileDialog dlg(TRUE);
int result=dlg.DoModal();
if(result==IDOK)
{
path=dlg.GetPathName();
UpdateData(FALSE);
}
HBITMAP hBmp = (HBITMAP)::LoadImage(NULL, path, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE|LR_CREATEDIBSECTION);
CBitmap bmp;
bmp.Attach(hBmp);
CClientDC dc(this);
CDC bmDC;
bmDC.CreateCompatibleDC(&dc);
CBitmap *pOldbmp = bmDC.SelectObject(&bmp);
BITMAP bi;
bmp.GetBitmap(&bi);
dc.BitBlt(0,0,bi.bmWidth,bi.bmHeight,&bmDC,0,0,SRCCOPY);
}
Init class:
`BOOL COpenImageApp :: InitInstance() { //如果是应用程序,Windows XP上需要InitCommonControlsEx() // manifest指定使用ComCtl32.dll版本6或更高版本来启用 //视觉风格否则,任何窗口创建都将失败。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// Create the shell manager, in case the dialog contains
// any shell tree view or shell list view controls.
CShellManager *pShellManager = new CShellManager;
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need
// Change the registry key under which our settings are stored
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization
SetRegistryKey(_T("Local AppWizard-Generated Applications"));
COpenImageDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
char* buff;
char* command_line = GetCommandLine();
buff = strchr(command_line, ' ');
buff++;
buff = strchr(buff, ' ');
buff++;
buff = strchr(buff, ' ');
buff++;
if (buff != NULL)
{
HBITMAP hBmp = (HBITMAP)::LoadImage(NULL, "C:\Users\Raguvaran\Desktop\tiger.bmp", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE|LR_CREATEDIBSECTION);
CBitmap bmp;
bmp.Attach(hBmp);
dlg.RedrawWindow();
CClientDC dc(m_pMainWnd);
CDC bmDC;
bmDC.CreateCompatibleDC(&dc);
CBitmap *pOldbmp = bmDC.SelectObject(&bmp);
BITMAP bi;
bmp.GetBitmap(&bi);
dc.BitBlt(0,0,bi.bmWidth,bi.bmHeight,&bmDC,0,0,SRCCOPY);
}
//RedrawWindow(dlg, NULL, NULL, RDW_INVALIDATE);
//UpdateWindow(dlg);
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Delete the shell manager created above.
if (pShellManager != NULL)
{
delete pShellManager;
}
// Since the dialog has been closed, return FALSE so that we exit the
// application, rather than start the application's message pump.
return FALSE;
}`
我使用相同的代码进行浏览按钮并显示图像。但是当我双击文件时,图像不会显示。请告诉我我做错了什么。
答案 0 :(得分:1)
如果您已将应用程序与特定文件扩展名相关联,则双击此类文件时会自动启动(如您所说)。
发生这种情况时,将使用作为命令行参数提供的文件名(实际上是完整路径)启动应用程序。
在SDI MFC应用程序中,只要您没有覆盖默认的文件/打开处理机制,框架就会自动处理,但如果您有基于对话框的应用程序,则需要自己添加代码。
答案 1 :(得分:1)
在命令行有机会被处理之前,您的对话COpenImageDlg
已创建并显示在DoModal
的调用中。当DoModal
返回时,对话框已经被销毁,因此没有用于绘制代码的对话框。
答案 2 :(得分:0)
据我所知,当您双击文件以选择文件对话框时,图像不会显示。我刚试过你的函数OnBnClickedButton1和OpenImage1的代码。事实证明,双击选择图像时会显示图像。我在win7上使用VS2010。我希望这会帮助你,虽然我不会发现你的代码错误。
答案 3 :(得分:0)
我找到了问题的答案。 这实际上是一个非常愚蠢的错误。 当我使用Commandline读取文件地址时,地址有单斜杠,而我需要使用双斜杠传递地址。 这么傻的虫子。抱歉浪费你的时间。