awtk/docs/manual/image_loader_t.md

93 lines
2.6 KiB
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## image\_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="image_loader_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#image_loader_t_image_loader_load">image\_loader\_load</a> | 加载图片。 |
2019-07-04 10:05:59 +08:00
| <a href="#image_loader_t_image_loader_load_image">image\_loader\_load\_image</a> | 查找满足条件加载器并加载图片。 |
| <a href="#image_loader_t_image_loader_register">image\_loader\_register</a> | 注册图片加载器。 |
| <a href="#image_loader_t_image_loader_unregister">image\_loader\_unregister</a> | 注销图片加载器。 |
2018-12-20 17:33:31 +08:00
#### image\_loader\_load 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="image_loader_t_image_loader_load">加载图片。
2019-10-16 09:02:32 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
ret_t image_loader_load (image_loader_t* loader, const asset_info_t* asset, bitmap_t* bitmap);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| loader | image\_loader\_t* | loader对象。 |
| asset | const asset\_info\_t* | 资源。 |
| bitmap | bitmap\_t* | 用于返回位图对象。 |
2019-07-04 10:05:59 +08:00
#### image\_loader\_load\_image 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="image_loader_t_image_loader_load_image">查找满足条件加载器并加载图片。
2019-10-16 09:02:32 +08:00
2019-07-04 10:05:59 +08:00
* 函数原型:
```
ret_t image_loader_load_image (const asset_info_t* asset, bitmap_t* bitmap);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| asset | const asset\_info\_t* | 资源。 |
| bitmap | bitmap\_t* | 用于返回位图对象。 |
#### image\_loader\_register 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="image_loader_t_image_loader_register">注册图片加载器。
2019-10-16 09:02:32 +08:00
2019-07-04 10:05:59 +08:00
* 函数原型:
```
ret_t image_loader_register (image_loader_t* loader);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| loader | image\_loader\_t* | loader对象。 |
#### image\_loader\_unregister 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="image_loader_t_image_loader_unregister">注销图片加载器。
2019-10-16 09:02:32 +08:00
2019-07-04 10:05:59 +08:00
* 函数原型:
```
ret_t image_loader_unregister (image_loader_t* loader);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| loader | image\_loader\_t* | loader对象。 |