Description
What MCU/Processor/Board and compiler are you using?
visual_studio-release-v8.3
What LVGL version are you using?
- @file lv_conf.h
- Configuration file for v8.3.4
What do you want to achieve?
Show gif. I have success to use lvgl gif example already.
What have you tried so far?
I use Online Image Converter and set Color format:CF_RAW to convert gif to raw data.
But it always convert to LV_IMG_CF_RAW_CHROMA_KEYED.It didn’t show gif.
Besides I saw LV_IMG_CF_RAW_CHROMA_KEYED need custom decoder function.Maybe it need
a decoder.
However I can just find PNG images decoder example,it is different.Can it use for git decoder function?
Code to reproduce
Add a code snippet which can run in the simulator. It should contain only the relevant code that compiles without errors when separated from your main code base.
The code block(s) should be formatted like:
LVGL_Simulator.cpp:
void _demoGif()
{
LV_IMG_DECLARE(ONEPUNCH_gif);
lv_obj_t* screen = lv_scr_act();
lv_obj_t* gif = lv_gif_create(screen);
lv_gif_set_src(gif, &ONEPUNCH_gif);
printf("gif");
}
ONEPUNCH_gif .c :
...
const lv_img_dsc_t ONEPUNCH_gif = {
.header.cf = LV_IMG_CF_RAW_CHROMA_KEYED,
.header.always_zero = 0,
.header.reserved = 0,
.header.w = 400,
.header.h = 224,
.data_size = 1381802,
.data = ONEPUNCH_gif_map,
};
Screenshot and/or video
If possible, add screenshots and/or videos about the current state.