⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bmp.h

📁 是经典的UNIX的部分源代码
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -