gif_image_t
概述
GIF图片控件。
注意:GIF图片的尺寸大于控件大小时会自动缩小图片,但一般的嵌入式系统的硬件加速都不支持图片缩放,
所以缩放图片会导致性能明显下降。如果性能不满意时,请确认一下GIF图片的尺寸是否小余控件大小。
gif_image_t是image_base_t的子类控件,image_base_t的函数均适用于gif_image_t控件。
在xml中使用”gif_image”标签创建GIF图片控件。如:
<gif_image image="bee"/>
更多用法请参考:
gif image
在c代码中使用函数gif_image_create创建GIF图片控件。如:
widget_t* image = gif_image_create(win, 10, 10, 200, 200);
image_set_image(image, "bee");
创建之后:
需要用widget_set_image设置图片名称。
完整示例请参考:gif image demo
可用通过style来设置控件的显示风格,如背景和边框等。如:
<gif_image>
<style name="border">
<normal border_color="#000000" bg_color="#e0e0e0" text_color="black"/>
</style>
</gif_image>
更多用法请参考:theme default
函数
函数名称 | 说明 |
---|---|
gif_image_cast | 转换为gif_image对象(供脚本语言使用)。 |
gif_image_create | 创建gif_image对象 |
gif_image_cast 函数
- 函数功能:
转换为gif_image对象(供脚本语言使用)。
- 函数原型:
widget_t* gif_image_cast (widget_t* widget);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | widget_t* | gif_image对象。 |
widget | widget_t* | gif_image对象。 |
gif_image_create 函数
- 函数功能:
创建gif_image对象
- 函数原型:
widget_t* gif_image_create (widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | widget_t* | 对象。 |
parent | widget_t* | 父控件 |
x | xy_t | x坐标 |
y | xy_t | y坐标 |
w | wh_t | 宽度 |
h | wh_t | 高度 |