BMP文件格式及相应结构体

摘自:
https://blog.csdn.net/lk_luck/article/details/115122351
https://blog.csdn.net/wdykanq/article/details/7748837

BMP位图数据格式

在这里插入图片描述

文件信息结构体

typedef struct tag_bitmap_file_header{
	unsigned short 		file_type;	
	unsigned int 		file_size;		
	unsigned short 		reserved1;	
	unsigned short 		reserved2;	
	unsigned int 		offset_bits;	
} __attribute__((packed)) bitmap_file_header;

位图信息结构体

typedef struct tag_bitmap_info_header {
	unsigned int 		bitmap_info_size;
	int 				bitmap_width;
	int 				bitmap_height;
	unsigned short 		planes;
	unsigned short 		image_depth;
	unsigned int 		compression;
	unsigned int 		image_size;
	int 				x_pels_permeter;
	int 				y_pels_permeter;
	unsigned int 		color_used;
	unsigned int 		color_important;
} __attribute__((packed)) bitmap_info_header;

调色板信息结构体

typedef struct tag_bitmap_palette {
	unsigned char 		blue;
	unsigned char 		green;
	unsigned char 		red;
	unsigned char 		reserved;
} __attribute__((packed)) bitmap_palette;
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值