awtk/docs/manual/bitmap_format_t.md
2019-11-15 11:33:43 +08:00

20 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## bitmap\_format\_t
### 概述
位图格式常量定义。
### 常量
<p id="bitmap_format_t_consts">
| 名称 | 说明 |
| -------- | ------- |
| BITMAP\_FMT\_NONE | 无效格式。 |
| BITMAP\_FMT\_RGBA8888 | 一个像素占用4个字节RGBA占一个字节按内存地址递增。 |
| BITMAP\_FMT\_ABGR8888 | 一个像素占用4个字节ABGR占一个字节按内存地址递增。 |
| BITMAP\_FMT\_BGRA8888 | 一个像素占用4个字节BGRA占一个字节按内存地址递增。 |
| BITMAP\_FMT\_ARGB8888 | 一个像素占用4个字节ARGB占一个字节按内存地址递增。 |
| BITMAP\_FMT\_RGB565 | 一个像素占用2个字节RGB分别占用5,6,5位, 按内存地址递增。 |
| BITMAP\_FMT\_BGR565 | 一个像素占用2个字节BGR分别占用5,6,5位, 按内存地址递增。 |
| BITMAP\_FMT\_RGB888 | 一个像素占用3个字节RGB占一个字节按内存地址递增。 |
| BITMAP\_FMT\_BGR888 | 一个像素占用3个字节RGB占一个字节按内存地址递增。 |
| BITMAP\_FMT\_GRAY | 一个像素占用1个字节。 |
| BITMAP\_FMT\_MONO | 一个像素占用1比特。 |