bmp.h
来自「pyos is a teach operater system build by」· C头文件 代码 · 共 30 行
H
30 行
#ifndef _PYOS_BMP_H_
#define _PYOS_BMP_H_
/******************************************************
* bmp 格式处理文件 *
* 现只支持 16位色(5:6:5) 非压缩 Windows 标准 bmp 格式 *
******************************************************/
/******************************************************
* 下面是说明部分 *
******************************************************/
struct bmp_bmp_info_head_struct{
int the_struct_size ;
int width ;
int height ;
// 下面还有数据,但目前 pyos 只处理 16 位真彩位图,因此下面的数据不要了
} ;
struct bmp_bmp_head_struct{
short type ; // 类型
int size_file ; // 大小
short reserved_0 ;
short reserved_1 ;
int offset ; // 位图阵列的起始位置
struct bmp_bmp_info_head_struct info_head ;
} ;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?