1个回答
展开全部
假设你的图片名为:“图片.bmp”。位于“d:\\picture\\图片.bmp”。
1、你用VC++建立一个MFC(exe)工程,命名为“My”,在弹出的“MFC应用程序向导-步骤1”中选“单文档”,然后点“完成”->“确定”。
2、在“MyView.h”文件中找到代码“CMyDoc* GetDocument();”在其下方添加如下代码:
LPBITMAPINFO bmi;
LPBYTE pBits;
BOOL Read(char* s);
3、然后打开“MyView.cpp”文件,在最下面写如下代码:
BOOL CMyView::Read(char* s)
{
CFile file;
BITMAPFILEHEADER bmfh;
//打开文件
if(!file.Open(s,CFile::modeRead))
{
AfxMessageBox("File cannot open!");
return FALSE;
}
//读文件信息头
file.Read( (LPVOID)&bmfh, sizeof(bmfh) );
if(bmfh.bfType != 0x4d42)
{
AfxMessageBox("This is not a bmp file!");
return FALSE;
}
//读位图信息头
int infoSize = bmfh.bfOffBits - sizeof(bmfh);
bmi = (LPBITMAPINFO)new BYTE[infoSize];
file.Read( (LPVOID)bmi, infoSize);
if(bmi->bmiHeader.biBitCount!=1 && bmi->bmiHeader.biBitCount!=4 && bmi->bmiHeader.biBitCount!=8 && bmi->bmiHeader.biBitCount!=24)
{
AfxMessageBox("The number of colors is not valid!");
return FALSE;
}
//读图像数据
pBits = new BYTE[bmi->bmiHeader.biSizeImage];
file.Read( (LPVOID)pBits, bmi->bmiHeader.biSizeImage);
return TRUE;
}
4、往上找,找到构造函数:CMyView::CMyView()
在其中添加代码:
Read("d:\\picture\\图片.bmp");
5、往下找,找到OnDraw函数,在该函数的第三行添加代码:
if(bmi && pBits)
{
::StretchDIBits(pDC->GetSafeHdc(),0,0,bmi->bmiHeader.biWidth,bmi->bmiHeader.biHeight,0,0,bmi->bmiHeader.biWidth,bmi->bmiHeader.biHeight,pBits,bmi,DIB_RGB_COLORS,SRCCOPY);
}
运行即可。我已试过,可以打开并显示。希望你一步一步照做,代码不要写错!
给你一些资料:
图像处理:
http://wenku.baidu.com/view/550a8fd049649b6648d7478a.html
http://wenku.baidu.com/view/fe8ff04ffe4733687e21aa95.html
http://wenku.baidu.com/view/c2438ceb6294dd88d0d26b95.html
http://wenku.baidu.com/view/685704a1284ac850ad024295.html
MFC:
http://wenku.baidu.com/view/9f656185ec3a87c24028c46d.html
http://wenku.baidu.com/view/9bd834c52cc58bd63186bdb4.html
图像处理讲座:
http://wenku.baidu.com/view/9b49d036a32d7375a417806d.html
http://wenku.baidu.com/view/c822e95c3b3567ec102d8a6d.html
http://wenku.baidu.com/view/e06d9dc69ec3d5bbfd0a746d.html
http://wenku.baidu.com/view/023e311ec5da50e2524d7f6d.html
http://wenku.baidu.com/view/dc4fa8e9856a561252d36f6d.html
给你推荐一本极好的书:
左飞, 万晋森, 刘航. Visual C++数字图像处理开发入门与编程实践[M]. 北京: 电子工业出版社. 2008,3.
1、你用VC++建立一个MFC(exe)工程,命名为“My”,在弹出的“MFC应用程序向导-步骤1”中选“单文档”,然后点“完成”->“确定”。
2、在“MyView.h”文件中找到代码“CMyDoc* GetDocument();”在其下方添加如下代码:
LPBITMAPINFO bmi;
LPBYTE pBits;
BOOL Read(char* s);
3、然后打开“MyView.cpp”文件,在最下面写如下代码:
BOOL CMyView::Read(char* s)
{
CFile file;
BITMAPFILEHEADER bmfh;
//打开文件
if(!file.Open(s,CFile::modeRead))
{
AfxMessageBox("File cannot open!");
return FALSE;
}
//读文件信息头
file.Read( (LPVOID)&bmfh, sizeof(bmfh) );
if(bmfh.bfType != 0x4d42)
{
AfxMessageBox("This is not a bmp file!");
return FALSE;
}
//读位图信息头
int infoSize = bmfh.bfOffBits - sizeof(bmfh);
bmi = (LPBITMAPINFO)new BYTE[infoSize];
file.Read( (LPVOID)bmi, infoSize);
if(bmi->bmiHeader.biBitCount!=1 && bmi->bmiHeader.biBitCount!=4 && bmi->bmiHeader.biBitCount!=8 && bmi->bmiHeader.biBitCount!=24)
{
AfxMessageBox("The number of colors is not valid!");
return FALSE;
}
//读图像数据
pBits = new BYTE[bmi->bmiHeader.biSizeImage];
file.Read( (LPVOID)pBits, bmi->bmiHeader.biSizeImage);
return TRUE;
}
4、往上找,找到构造函数:CMyView::CMyView()
在其中添加代码:
Read("d:\\picture\\图片.bmp");
5、往下找,找到OnDraw函数,在该函数的第三行添加代码:
if(bmi && pBits)
{
::StretchDIBits(pDC->GetSafeHdc(),0,0,bmi->bmiHeader.biWidth,bmi->bmiHeader.biHeight,0,0,bmi->bmiHeader.biWidth,bmi->bmiHeader.biHeight,pBits,bmi,DIB_RGB_COLORS,SRCCOPY);
}
运行即可。我已试过,可以打开并显示。希望你一步一步照做,代码不要写错!
给你一些资料:
图像处理:
http://wenku.baidu.com/view/550a8fd049649b6648d7478a.html
http://wenku.baidu.com/view/fe8ff04ffe4733687e21aa95.html
http://wenku.baidu.com/view/c2438ceb6294dd88d0d26b95.html
http://wenku.baidu.com/view/685704a1284ac850ad024295.html
MFC:
http://wenku.baidu.com/view/9f656185ec3a87c24028c46d.html
http://wenku.baidu.com/view/9bd834c52cc58bd63186bdb4.html
图像处理讲座:
http://wenku.baidu.com/view/9b49d036a32d7375a417806d.html
http://wenku.baidu.com/view/c822e95c3b3567ec102d8a6d.html
http://wenku.baidu.com/view/e06d9dc69ec3d5bbfd0a746d.html
http://wenku.baidu.com/view/023e311ec5da50e2524d7f6d.html
http://wenku.baidu.com/view/dc4fa8e9856a561252d36f6d.html
给你推荐一本极好的书:
左飞, 万晋森, 刘航. Visual C++数字图像处理开发入门与编程实践[M]. 北京: 电子工业出版社. 2008,3.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |