今日作业:用fwrite 和 fseek功能,将一张bmp格式的图片更改成 德国国旗
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
typedef unsigned char bgr[3];
int main(int argc, const char *argv[])
{
FILE* fp = fopen("./photo.bmp","r");
fseek(fp,2,SEEK_SET);
int bmp_size = 0;
fread(&bmp_size,4,1,fp);
printf("图片大小为:%d\nkb",bmp_size);
int bmp_w = 0;
int bmp_h = 0;
//从头往后偏移18个字节,定位存储宽度的的内存上
fseek(fp,18,SEEK_SET);
fread(&bmp_w,4,1,fp);
fread(&bmp_h,4,1,fp);
printf("图像分辨率为:%d*%d\n",bmp_w,bmp_h);
fclose(fp);
fp = fopen("./photo.bmp","r+");
//准备一个3字节内存,用来表示bgr像素点信息
bgr c1={0,0,0};
bgr c2={0,0,230};
bgr c3={0,200,230};
//偏移54个字节,让光标定位在存放像素点的首地址上
fseek(fp,54,SEEK_SET);
// int count=bmp_w*bmp_h/3;
// fwrite(c1,3,count,fp);
// fwrite(c2,3,bmp_w * bmp_h/3,fp);
// fwrite(c3,3,bmp_w * bmp_h/3,fp);
for(int i=0;i<bmp_w;i++)
{
for(int j=0;j<=bmp_h/3;j++){
fwrite(c3,3,1,fp);
}
}
for(int i=0;i<bmp_w;i++)
{
for(int j=0;j<=bmp_h/3;j++){
fwrite(c2,3,1,fp);
}
}
for(int i=0;i<=bmp_w;i++)
{
for(int j=0;j<bmp_h/3;j++){
fwrite(c1,3,1,fp);
}
}
fclose(fp);
return 0;
}