awtk/tools/image_gen/README.md
2019-08-14 07:38:23 +08:00

16 lines
665 B
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.

## 位图生成工具
在嵌入式系统中RAM比较少虽然PNG/JPG等文件可以大幅度降低存储空间但是需要解码到内存中不太适合直接使用。AWTK提供了imagegen工具将图片转换成位图数据直接编译到代码中放在flash中不占用内存空间。
用法说明:
```
./bin/imagegen in_filename out_filename bgra+bgr565|mono
```
* in\_filename png/jpg 文件的文件名。
* out\_filename 位图数据文件的文件名。
* bgra 表示输出BITMAP\_FMT\_BGRA8888格式的图片。
* bgr565 表示把不透明的图片转成BITMAP\_FMT\_BGR565格式的图片。
* mono 是否生成单色图片。