嵌入式3-29

今日作业:用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;
}

相关推荐
cg501718 小时前
Spring Boot 的配置文件
java·linux·spring boot
似水এ᭄往昔18 小时前
【C语言】文件操作
c语言·开发语言
暮云星影18 小时前
三、FFmpeg学习笔记
linux·ffmpeg
rainFFrain18 小时前
单例模式与线程安全
linux·运维·服务器·vscode·单例模式
GalaxyPokemon18 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
蒙奇D索大19 小时前
【数据结构】第六章启航:图论入门——从零掌握有向图、无向图与简单图
c语言·数据结构·考研·改行学it
mingqian_chu19 小时前
ubuntu中使用安卓模拟器
android·linux·ubuntu
烂蜻蜓20 小时前
C 语言中的递归:概念、应用与实例解析
c语言·数据结构·算法
GalaxyPokemon20 小时前
Muduo网络库实现 [十] - EventLoopThreadPool模块
linux·服务器·网络·c++