资源简介
读bmp图片,将rgb存入txt 并再输出bmp图片
代码片段和文件信息
#include
#include
#define BITMAPFILEHEADERLENGTH 14 // The bmp FileHeader length is 14
#define BM 19778 // The ASCII code for BM
/* Test the file is bmp file or not */
void bmpFileTest(FILE* fpbmp);
/* To get the OffSet of header to data part */
void bmpHeaderPartLength(FILE* fpbmp);
/* To get the width and height of the bmp file */
void BmpWidthHeight(FILE* fpbmp);
//get rgb data
void bmpDataPart(FILE* fpbmp);
// output data to corresponding txt file
void bmpoutput(FILE *fpout);
unsigned int OffSet = 0; // OffSet from Header part to Data Part
long width ; // The Width of the Data Part
long height ; // The Height of the Data Part
unsigned char r[2000][2000]output_r[2000][2000];
unsigned char g[2000][2000]output_g[2000][2000];
unsigned char b[2000][2000]output_b[2000][2000];
int main(int argc char* argv[])
{
/* Open bmp file */
unsigned char *fp_temp;
FILE *fpbmp;
FILE *fpout;
fpbmp= fopen(“1.bmp“ “rb“);
if (fpbmp == NULL)
{
printf(“Open bmp failed!!!\n“);
return 1;
}
fpout= fopen(“out.bmp“ “wb+“);
if (fpout == NULL)
{
printf(“Open out.bmp failed!!!\n“);
return 1;
}
bmpFileTest(fpbmp); //Test the file is bmp file or not
bmpHeaderPartLength(fpbmp); //Get the length of Header Part
BmpWidthHeight(fpbmp); //Get the width and width of the Data Part
//
fseek(fpbmp 0L SEEK_SET);
fseek(fpout 0L SEEK_SET);
fp_temp=(unsigned char*)malloc(OffSet);
fread(fp_temp 1 OffSet fpbmp);
fwrite(fp_temp1OffSetfpout);
bmpDataPart(fpbmp); //Reserve the data to file
/*
如果您想对图片进行处理,请您再这里插入处理函数!!!!!!!!!!!!!!!!!!
*/
bmpoutput(fpout);
fclose(fpbmp);
fclose(fpout);
return 0;
}
void bmpoutput(FILE* fpout)
{
int i j=0;
int stride;
unsigned char* pixout=NULL;
stride=(24*width+31)/8;
stride=stride/4*4;
pixout=(unsigned char*)malloc(stride);
fseek(fpout OffSet SEEK_SET);
for(j=0;j {
for(i=0;i {
pixout[i*3+2]=output_r[j][i];
pixout[i*3+1]=output_g[j][i];
pixout[i*3] =output_b[j][i];
// pixout[i*3+2]=output_r[height-1-j][i];
// pixout[i*3+1]=output_g[height-1-j][i];
// pixout[i*3] =output_b[height-1-j][i];
}
fwrite(pixout
相关资源
- 二维码生成BMP
- Bmp图像处理.zip
- EAN13条码生成(C语言+VS2010)[包含EA
- MFC画图板,可以画一些基本图形,如
- 基于MFC的bmp图像处理268237
- 计算BMP24位真彩色图像PSNR的C++小程序
- mfc打开并显示BMP图片
- VC打开多种图像格式bmpjpggiftifraw
- 24位BMP图像用C++实现平移、旋转、镜像
- VC6基于对话框的BMP灰度图片显示和轮
- 数字图像处理 MFC bmp格式图片打开与保
- DICOM图片转换BMP的C++代码
- VC实现虚拟打印机的框架源代码
- [毕业分享] MFC实现数字图像处理软件
- VC++单文档视图打开bmp图片
- 在内存中将bmp转JPG
- vc++调用usb摄像头,进行拍照,保存为
- Bmp2jpeg图片格式转换
- C语言读取BMP图像,并进行反色操作
- BMP180气压计STM32例程+51例程+数据手册
- 经典数字图像测试图灰度图,jpg,b
- 图像直方图均衡算法的实现 bmp格式
- bmp24位彩色图像转8位灰度图像纯C++
- 用VC++实现打开并显示bmp图片
- C++生成二维码并保存成BMP图片
- MFC 图像处理之灰度直方图显示BMP图片
- MFC动态加载和静态加载bmp类型图片
- MFC显示BMP格式图片
- 基于MFC实现BMP的显示24色变灰
- C语言的png和jpeg图片格式转换为bmp格式
评论
共有 条评论