Lottie动画 (lv_lottie)
Overview(概览)
显示原文
The Lottie widget is capable of parsing, rasterizing, and playing Lottie animations.
The Lottie animations are vector based animation. Think of it as the modern combination of SVG and GIF.
The animations can be downloaded from various sources, such as https://lottiefiles.com/ or you can create your own animations using for example Adobe After Effects.
The Lottie widget is based on lv_canvas.h because in order to render the animation the user needs to provide a buffer where the current frame is stored.
Lottie 控件能够解析、光栅化以及播放 Lottie 动画。
Lottie 动画是基于矢量的动画。可以将其视为 SVG 和 GIF 的现代组合。
动画可以从多种来源下载,比如 https://lottiefiles.com ,或者你可以使用例如 Adobe After Effects 来创建自己的动画。
Lottie 控件基于 lv_canvas.h 所以为了能渲染动画,用户需要提供一个缓冲区来存储当前帧。
Parts and Styles(部分和样式)
显示原文
LV_PART_MAIN
The background of the Lottie animation. The typical background style properties apply but usually it is left transparent.
LV_PART_MAIN
动画的背景。通常背景样式属性适用,但默认保持透明。
Usage(用法)
Dependencies(依赖)
显示原文
The Lottie widget uses the ThorVG library which is integrated into LVGL.
In order to use Lottie animations LV_USE_THORVG_INTERNAL
(to use the built-in ThorVG) or
LV_USE_THORVG_EXTERNAL
(to link it externally) needs to enabled. For vector graphics in general
LV_USE_VECTOR_GRAPHIC
also needs to be enabled.
As ThorVG is written in C++, when using LV_USE_THORVG_INTERNAL
be sure that you
can compile the cpp files.
Lottie 控件使用到了 ThorVG 库,该库已经 集成内置到 LVGL库 中。
为了使用 Lottie 动画,需要在 lv_conf.h 中启用 LV_USE_THORVG_INTERNAL
(使用内置的 ThorVG 库)或者 LV_USE_THORVG_EXTERNAL
(使用外部库或自定义的库)。对于矢量图形,通常还需要启用 LV_USE_VECTOR_GRAPHIC
。
由于 ThorVG 用 C++ 编写,当使用 LV_USE_THORVG_INTERNAL
时,请确保你的编译环境能编译 cpp 文件。
Set a buffer(设置缓冲区)
显示原文
In order to render the animation a buffer needs to assign to the Lottie widget.
The animations are rendered in ARGB8888 format, therefor the buffer's size should be equal to
target_width x target_height x 4
bytes.
To keep the buffer size and the animation size consistent, the size of the widget (i.e. the size of the animation) is set to the dimensions of the buffer internally.
The buffer can be set with either void lv_lottie_set_buffer(lottie, w, h, buf); or lv_lottie_set_draw_buf(lottie, draw_buf).
When a draw buffer is used, it must be already initialized by the user with LV_COLOR_FORMAT_ARGB8888 color format.
为了渲染动画,需要给 Lottie 控件分配一个缓冲区。
动画以 ARGB8888 格式渲染,因此缓冲区的大小应该是 目标宽度 x 目标高度 x 4 字节
。
为了保持缓冲区大小和动画大小的一致性, 控件的大小(即动画的大小)在内部根据缓冲区大小自动调整。
可以使用以下任一方法设置缓冲区:
lv_lottie_set_buffer(lottie, w, h, buf)
lv_lottie_set_draw_buf(lottie, draw_buf)
当使用绘制缓冲区时,它必须已经被用户使用 LV_COLOR_FORMAT_ARGB8888
颜色格式初始化。
Set a source(设置源)
显示原文
lv_example_lottie_approve.c
contains an example animation. Instead storing the JSON string, a hex array is stored for the
following reasons:
- avoid escaping "
character in the JSON file
- some compilers don't support very long strings
lvgl/scripts/filetohex.py
can be used to convert a Lottie file a hex
array. E.g.:
./filetohex.py path/to/lottie.json > out.txt
To create an animation from data use
lv_lottie_set_src_data(lottie, data, sizeof(data))
Lottie animations can be opened from JSON files by using lv_lottie_set_src_file(lottie, "path/to/file.json")
.
Note that the Lottie loader doesn't support LVGL's File System interface but a "normal path" should be used without a driver letter.
lv_example_lottie_approve.c
包含一个示例动画。为了存储 JSON 字符串,使用数组存储其十六进制格式的字符串数据,原因如下:
避免在 JSON 文件中转义
"
字符一些编译器不支持非常长的字符串
可以使用 lvgl/scripts/filetohex.py
将 Lottie 文件转换为十六进制数组。
例如:
python ./filetohex.py path/to/lottie.json > out.txt
要从数据源创建 lottie 动画,使用 lv_lottie_set_src_data(lottie, data, sizeof(data))
Lottie 动画可以通过使用 lv_lottie_set_src_file(lottie, "path/to/file.json") 从 JSON 文件打开。
注意,Lottie 加载器不支持 LVGL 的文件系统接口,但应该使用没有驱动器字母(盘符)的 “常规路径” 。
Get the animation(获取动画)
显示原文
lv_anim_t * a = lv_lottie_get_anim(lottie)
return the LVGL animation which controls the
Lottie animation. By default it is running infinitely at 60FPS however the LVGL animation
can be freely adjusted.
lv_anim_t * a = lv_lottie_get_anim(lottie)
返回控制 Lottie 动画的 LVGL 动画。默认情况下,它以60FPS的速度无限运行,但是 LVGL 的动画可以对其进行调整。
Events(事件)
Lottie 控件没有发送特殊事件。
了解更多关于 Events(事件)。
Keys(按键)
显示原文
No keys are processed by the Lottie widget Learn more about Keys(按键).
Lottie 控件不处理任何键。 了解更多关于 Keys(按键)。
Example(示例)
Load a Lottie animation from an array
C code
View on GitHub#include "../../lv_examples.h"
#if LV_BUILD_EXAMPLES
#if LV_USE_LOTTIE
/**
* Load an lottie animation from data
*/
void lv_example_lottie_1(void)
{
extern const uint8_t lv_example_lottie_approve[];
extern const size_t lv_example_lottie_approve_size;
lv_obj_t * lottie = lv_lottie_create(lv_screen_active());
lv_lottie_set_src_data(lottie, lv_example_lottie_approve, lv_example_lottie_approve_size);
#if LV_DRAW_BUF_ALIGN == 4 && LV_DRAW_BUF_STRIDE_ALIGN == 1
/*If there are no special requirements, just declare a buffer
x4 because the Lottie is rendered in ARGB8888 format*/
static uint8_t buf[64 * 64 * 4];
lv_lottie_set_buffer(lottie, 64, 64, buf);
#else
/*For GPUs and special alignment/strid setting use a draw_buf instead*/
LV_DRAW_BUF_DEFINE(draw_buf, 64, 64, LV_COLOR_FORMAT_ARGB8888);
lv_lottie_set_draw_buf(lottie, &draw_buf);
#endif
lv_obj_center(lottie);
}
#else
void lv_example_lottie_1(void)
{
/*fallback for online examples*/
lv_obj_t * label = lv_label_create(lv_screen_active());
lv_label_set_text(label, "Lottie cannot be previewed online");
lv_obj_center(label);
}
#endif /*LV_USE_LOTTIE*/
#endif /*LV_BUILD_EXAMPLES*/
Load a Lottie animation from file
C code
View on GitHub#include "../../lv_examples.h"
#if LV_BUILD_EXAMPLES
#if LV_USE_LOTTIE
/**
* Load an lottie animation from file
*/
void lv_example_lottie_2(void)
{
lv_obj_t * lottie = lv_lottie_create(lv_screen_active());
lv_lottie_set_src_file(lottie, "lvgl/examples/widgets/lottie/lv_example_lottie_approve.json");
#if LV_DRAW_BUF_ALIGN == 4 && LV_DRAW_BUF_STRIDE_ALIGN == 1
/*If there are no special requirements, just declare a buffer
x4 because the Lottie is rendered in ARGB8888 format*/
static uint8_t buf[64 * 64 * 4];
lv_lottie_set_buffer(lottie, 64, 64, buf);
#else
/*For GPUs and special alignment/strid setting use a draw_buf instead*/
LV_DRAW_BUF_DEFINE(draw_buf, 64, 64, LV_COLOR_FORMAT_ARGB8888);
lv_lottie_set_draw_buf(lottie, &draw_buf);
#endif
lv_obj_center(lottie);
}
#else
void lv_example_lottie_2(void)
{
/*fallback for online examples*/
lv_obj_t * label = lv_label_create(lv_screen_active());
lv_label_set_text(label, "Lottie cannot be previewed online");
lv_obj_center(label);
}
#endif /*LV_USE_LOTTIE*/
#endif /*LV_BUILD_EXAMPLES*/