awtk/docs/manual/font_loader_t.md

33 lines
852 B
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## font\_loader\_t
### 概述
2019-11-15 11:33:43 +08:00
字体加载接口。
2019-01-15 14:34:05 +08:00
----------------------------------
2018-12-20 17:33:31 +08:00
### 函数
<p id="font_loader_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#font_loader_t_font_loader_load">font\_loader\_load</a> | 加载字体。 |
2018-12-20 17:33:31 +08:00
#### font\_loader\_load 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="font_loader_t_font_loader_load">加载字体。
2019-10-16 09:02:32 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
font_t* font_loader_load (font_loader_t* loader, const char* name, uint8_t* buff, uint32_t size);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | font\_t* | 成功返回font失败返回NULL。 |
| loader | font\_loader\_t* | loader对象。 |
| name | const char* | 字体名字。 |
| buff | uint8\_t* | 字体数据。 |
| size | uint32\_t | 字体数据长度。 |