要用C++读取bmp图片文件,首先要弄清楚bmp图片文件的结构。可以参考这篇文章:http://blog.csdn.net/xiajun07061225/article/details/5813726
我采用的编译环境是VS2008.但是先前本程序有一点问题是,保存bmp的功能没有实现,始终出现绘图失败的错误。现在终于调试好了。
上代码:分两个文件:ReadBmp.h和ReadBmp.cpp
ReadBmp.h:
- typedef
unsigned char BYTE; - typedef
unsigned short WORD; - typedef
unsigned int DWORD; - typedef
long LONG; -
- //位图文件头定义;
- //其中不包含文件类型信息(由于结构体的内存结构决定,
- //要是加了的话将不能正确读取文件信息)
- typedef
struct tagBITMAPFILEHEADER{ -
//WORD bfType;//文件类型,必须是0x424D,即字符“BM” -
DWORD bfSize;//文件大小 -
WORD bfReserved1;//保留字 -
WORD bfReserved2;//保留字 -
DWORD bfOffBits;//从文件头到实际位图数据的偏移字节数 - }BITMAPFILEHEADER;
-
- typedef
struct tagBITMAPINFOHEADER{ -
DWORD biSize;//信息头大小 -
LONG biWidth;//图像宽度 -
LONG biHeight;//图像高度 -
WORD biPlanes;//位平面数,必须为1 -
WORD biBitCount;//每像素位数 -
DWORD biCompression; //压缩类型 -
DWORD biSizeImage; //压缩图像大小字节数 -
LONG biXPelsPerMeter; //水平分辨率 -
LONG biYPelsPerMeter; //垂直分辨率 -
DWORD biClrUsed; //位图实际用到的色彩数 -
DWORD biClrImportant; //本位图中重要的色彩数 - }BITMAPINFOHEADER;
//位图信息头定义 -
- typedef
struct tagRGBQUAD{ -
BYTE rgbBlue; //该颜色的蓝色分量 -
BYTE rgbGreen; //该颜色的绿色分量 -
BYTE rgbRed; //该颜色的红色分量 -
BYTE rgbReserved; //保留值 - }RGBQUAD;//调色板定义
-
- //像素信息
- typedef
struct tagIMAGEDATA - {
-
BYTE red; -
BYTE green; -
BYTE blue; - }IMAGEDATA;
ReadBmp.cpp:
- #include
<stdio.h> - #include
"ReadBmp.h" - #include
"stdlib.h" - #include
<iostream> - using
namespace std; -
- //变量定义
- BITMAPFILEHEADER
strHead; - RGBQUAD
strPla[256];//256色调色板 - BITMAPINFOHEADER
strInfo; - IMAGEDATA
imagedata[256][256];//存储像素信息 -
- //显示位图文件头信息
- void
showBmpHead(BITMAPFILEHEADER pBmpHead){ -
cout<<"位图文件头:"<<endl; -
//cout<<"bfType value is "<<hex<<pBmpHead.bfType<<endl; -
cout<<"文件大小:"<<pBmpHead.bfSize<<endl; -
//printf("文件大小:%d\n",pBmpHead.bfSize); -
cout<<"保留字_1:"<<pBmpHead.bfReserved1<<endl; -
cout<<"保留字_2:"<<pBmpHead.bfReserved2<<endl; -
cout<<"实际位图数据的偏移字节数:"<<pBmpHead.bfOffBits<<endl<<endl; - }
-
- void
showBmpInforHead(tagBITMAPINFOHEADER pBmpInforHead){ -
cout<<"位图信息头:"<<endl; -
cout<<"结构体的长度:"<<pBmpInforHead.biSize<<endl; -
cout<<"位图宽:"<<pBmpInforHead.biWidth<<endl; -
cout<<"位图高:"<<pBmpInforHead.biHeight<<endl; -
cout<<"biPlanes平面数:"<<pBmpInforHead.biPlanes<<endl; -
cout<<"biBitCount采用颜色位数:"<<pBmpInforHead.biBitCount<<endl; -
cout<<"压缩方式:"<<pBmpInforHead.biCompression<<endl; -
cout<<"biSizeImage实际位图数据占用的字节数:"<<pBmpInforHead.biSizeImage<<endl; -
cout<<"X方向分辨率:"<<pBmpInforHead.biXPelsPerMeter<<endl; -
cout<<"Y方向分辨率:"<<pBmpInforHead.biYPelsPerMeter<<endl; -
cout<<"使用的颜色数:"<<pBmpInforHead.biClrUsed<<endl; -
cout<<"重要颜色数:"<<pBmpInforHead.biClrImportant<<endl; - }
-
- tagRGBQUAD*
ReadFile(char *strFile){ -
FILE *fpi,*fpw; -
fpi=fopen(strFile,"rb"); -
if(fpi!=NULL){ -
//先读取文件类型 -
WORD bfType; -
fread(&bfType,1,sizeof(WORD),fpi); -
if(0x4d42!=bfType){ -
cout<<"the file is not a bmp file!"<<endl; -
return NULL; -
} -
//读取bmp文件的文件头和信息头 -
fread(&strHead,1,sizeof(tagBITMAPFILEHEADER),fpi); -
showBmpHead(strHead);//显示文件头 -
fread(&strInfo,1,sizeof(tagBITMAPINFOHEADER),fpi); -
showBmpInforHead(strInfo);//显示文件信息头 -
-
//读取调色板 -
for(int nCounti=0;nCounti<strInfo.biClrUsed;nCounti++){ -
//存储的时候,一般去掉保留字rgbReserved -
fread((char *)&strPla[nCounti].rgbBlue,1,sizeof(BYTE),fpi); -
fread((char *)&strPla[nCounti].rgbGreen,1,sizeof(BYTE),fpi); -
fread((char *)&strPla[nCounti].rgbRed,1,sizeof(BYTE),fpi); -
cout<<"strPla[nCounti].rgbBlue"<<strPla[nCounti].rgbBlue<<endl; -
cout<<"strPla[nCounti].rgbGreen"<<strPla[nCounti].rgbGreen<<endl; -
cout<<"strPla[nCounti].rgbRed"<<strPla[nCounti].rgbRed<<endl; -
} -
-
//读出图片的像素数据 -
memset(imagedata,0,sizeof(IMAGEDATA) * 256 * 256); -
//fseek(fpi,54,SEEK_SET); -
fread(imagedata,sizeof(struct tagIMAGEDATA) * strInfo.biWidth,strInfo.biHeight,fpi); -
//for(int i = 0;i < strInfo.biWidth;++i) -
for(int i = 0;i < 1;++i)//只输出第一行数据 -
{ -
for(int j = 0;j < strInfo.biHeight; ++j){ -
printf("%d ", imagedata[i][j].green); -
// cout<<imagedata[0][j].green+ " "; -
if((i * strInfo.biHeight+j+1) % 5 == 0) -
cout<<endl; -
} -
} -
-
fclose(fpi); -
} -
else{ -
cout<<"file open error!"<<endl; -
return NULL; -
} -
-
//保存bmp图片 -
if((fpw=fopen("b.bmp","wb"))==NULL){ -
cout<<"create the bmp file error!"<<endl; -
return NULL; -
} -
WORD bfType=0x4d42; -
fwrite(&bfType,1,sizeof(WORD),fpw); -
//fpw +=2; -
fwrite(&strHead,1,sizeof(tagBITMAPFILEHEADER),fpw); -
fwrite(&strInfo,1,sizeof(tagBITMAPINFOHEADER),fpw); -
//保存调色板数据 -
for(int nCounti=0;nCounti<strInfo.biClrUsed;nCounti++){ -
fwrite(&strPla[nCounti].rgbBlue,1,sizeof(BYTE),fpw); -
fwrite(&strPla[nCounti].rgbGreen,1,sizeof(BYTE),fpw); -
fwrite(&strPla[nCounti].rgbRed,1,sizeof(BYTE),fpw); -
} -
//保存像素数据 -
for(int i =0;i < strInfo.biWidth;++i){ -
for(int j = 0;j < strInfo.biHeight;++j){ -
fwrite( &imagedata[i][j].blue,1,sizeof(BYTE),fpw); -
fwrite( &imagedata[i][j].green,1,sizeof(BYTE),fpw); -
fwrite( &imagedata[i][j].red,1,sizeof(BYTE),fpw); -
} -
} -
-
fclose(fpw); - }
-
- int
main(){ -
char strFile[30];//bmp文件名 -
cout<<"请输入所要读取的文件名:"<<endl; -
cin>>strFile; -
ReadFile(strFile); -
system("pause"); - }
#include<math.h>
#include <iomanip.h>
#include <stdlib.h>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream.h>
#include <fstream.h>
//---------------------------------------------------------------------------------------
//以下该模块是完成BMP图像(彩色图像是24bit RGB各8bit)的像素获取,并存在文件名为xiang_su_zhi.txt中
unsigned char *pBmpBuf;//读入图像数据的指针
int bmpWidth;//图像的宽
int bmpHeight;//图像的高
RGBQUAD *pColorTable;//颜色表指针
int biBitCount;//图像类型,每像素位数
//-------------------------------------------------------------------------------------------
//读图像的位图数据、宽、高、颜色表及每像素位数等数据进内存,存放在相应的全局变量中
bool readBmp(char *bmpName)
{
FILE *fp=fopen(bmpName,"rb");//二进制读方式打开指定的图像文件
if(fp==0) return 0;
//跳过位图文件头结构BITMAPFILEHEADER
fseek(fp, sizeof(BITMAPFILEHEADER),0);
//定义位图信息头结构变量,读取位图信息头进内存,存放在变量head中
BITMAPINFOHEADER head;
fread(&head, sizeof(BITMAPINFOHEADER), 1,fp); //获取图像宽、高、每像素所占位数等信息
bmpWidth = head.biWidth;
bmpHeight = head.biHeight;
biBitCount = head.biBitCount;//定义变量,计算图像每行像素所占的字节数(必须是4的倍数)
int lineByte=(bmpWidth * biBitCount/8+3)/4*4;//灰度图像有颜色表,且颜色表表项为256
if(biBitCount==8)
{
//申请颜色表所需要的空间,读颜色表进内存
pColorTable=new RGBQUAD[256];
fread(pColorTable,sizeof(RGBQUAD),256,fp);
}
//申请位图数据所需要的空间,读位图数据进内存
pBmpBuf=new unsigned char[lineByte * bmpHeight];
fread(pBmpBuf,1,lineByte * bmpHeight,fp);
fclose(fp);//关闭文件
return 1;//读取文件成功
}
//-----------------------------------------------------------------------------------------
//给定一个图像位图数据、宽、高、颜色表指针及每像素所占的位数等信息,将其写到指定文件中
bool saveBmp(char *bmpName, unsigned char *imgBuf, int width, int height,
int biBitCount, RGBQUAD *pColorTable)
{
//如果位图数据指针为0,则没有数据传入,函数返回
if(!imgBuf)
return 0;
//颜色表大小,以字节为单位,灰度图像颜色表为1024字节,彩色图像颜色表大小为0
int colorTablesize=0;
if(biBitCount==8)
colorTablesize=1024;
//待存储图像数据每行字节数为4的倍数
int lineByte=(width * biBitCount/8+3)/4*4;
//以二进制写的方式打开文件
FILE *fp=fopen(bmpName,"wb");
if(fp==0) return 0;
//申请位图文件头结构变量,填写文件头信息
BITMAPFILEHEADER fileHead;
fileHead.bfType = 0x4D42;//bmp类型
//bfSize是图像文件4个组成部分之和
fileHead.bfSize= sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER)
+ colorTablesize + lineByte*height;
fileHead.bfReserved1 = 0;
fileHead.bfReserved2 = 0;
//bfOffBits是图像文件前3个部分所需空间之和
fileHead.bfOffBits=54+colorTablesize;
//写文件头进文件
fwrite(&fileHead, sizeof(BITMAPFILEHEADER),1, fp);
//申请位图信息头结构变量,填写信息头信息
BITMAPINFOHEADER head;
head.biBitCount=biBitCount;
head.biClrImportant=0;
head.biClrUsed=0;
head.biCompression=0;
head.biHeight=height;
head.biPlanes=1;
head.biSize=40;
head.biSizeImage=lineByte*height;
head.biWidth=width;
head.biXPelsPerMeter=0;
head.biYPelsPerMeter=0;
//写位图信息头进内存
fwrite(&head, sizeof(BITMAPINFOHEADER),1, fp);
//如果灰度图像,有颜色表,写入文件
if(biBitCount==8)
fwrite(pColorTable, sizeof(RGBQUAD),256, fp);
//写位图数据进文件
fwrite(imgBuf, height*lineByte, 1, fp);
//关闭文件
fclose(fp);
return 1;
}
//----------------------------------------------------------------------------------------
//以下为像素的读取函数
void xiang_su_du_qu()
{
//读入指定BMP文件进内存
char readPath[]="nv.BMP";
readBmp(readPath);
//输出图像的信息
cout<<"width="<<bmpWidth<<" height="<<bmpHeight<<" biBitCount="<<biBitCount<<endl;
//循环变量,图像的坐标
//每行字节数
int lineByte=(bmpWidth*biBitCount/8+3)/4*4;
//循环变量,针对彩色图像,遍历每像素的三个分量
int m=0,n=0,count_xiang_su=0;
//将图像左下角1/4部分置成黑色
ofstream outfile("图像像素.txt",ios::in|ios::trunc);
if(biBitCount==8) //对于灰度图像
{
//------------------------------------------------------------------------------------
//以下完成图像的分割成8*8小单元,并把像素值存储到指定文本中。由于BMP图像的像素数据是从
//左下角:由左往右,由上往下逐行扫描的
int L1=0;
int hang=63;
int lie=0;
//int L2=0;
//int fen_ge=8;
for(int fen_ge_hang=0;fen_ge_hang<8;fen_ge_hang++)//64*64矩阵行循环
{
for(int fen_ge_lie=0;fen_ge_lie<8;fen_ge_lie++)//64*64列矩阵循环
{
//--------------------------------------------
for(L1=hang;L1>hang-8;L1--)//8*8矩阵行
{
for(int L2=lie;L2<lie+8;L2++)//8*8矩阵列
{
m=*(pBmpBuf+L1*lineByte+L2);
outfile<<m<<" ";
count_xiang_su++;
if(count_xiang_su%8==0)//每8*8矩阵读入文本文件
{
outfile<<endl;
}
}
}
//---------------------------------------------
hang=63-fen_ge_hang*8;//64*64矩阵行变换
lie+=8;//64*64矩阵列变换
//该一行(64)由8个8*8矩阵的行组成
}
hang-=8;//64*64矩阵的列变换
lie=0;//64*64juzhen
}
}
//double xiang_su[2048];
//ofstream outfile("xiang_su_zhi.txt",ios::in|ios::trunc);
if(!outfile)
{
cout<<"open error!"<<endl;
exit(1);
}
else if(biBitCount==24){//彩色图像
for(int i=0;i<bmpHeight;i++)
{
for(int j=0;j<bmpWidth;j++)
{
for(int k=0;k<3;k++)//每像素RGB三个分量分别置0才变成黑色
{
//*(pBmpBuf+i*lineByte+j*3+k)-=40;
m=*(pBmpBuf+i*lineByte+j*3+k);
outfile<<m<<" ";
count_xiang_su++;
if(count_xiang_su%8==0)
{
outfile<<endl;
}
//n++;
}
n++;
}
}
cout<<"总的像素个素为:"<<n<<endl;
cout<<"----------------------------------------------------"<<endl;
}
//将图像数据存盘
char writePath[]="nvcpy.BMP";//图片处理后再存储
saveBmp(writePath, pBmpBuf, bmpWidth, bmpHeight, biBitCount, pColorTable);
//清除缓冲区,pBmpBuf和pColorTable是全局变量,在文件读入时申请的空间
delete []pBmpBuf;
if(biBitCount==8)
delete []pColorTable;
}
void main()
{
xiang_su_du_qu();
}

被折叠的 条评论
为什么被折叠?



