LVGL V9.5 GIF image display issue

void lv_demo_file_system_image_create(lv_obj_t *parent)
{
lv_obj_set_flex_flow(parent, LV_FLEX_FLOW_ROW);

extern const lv_image_dsc_t img_bulb_gif[];
lv_obj_t* img = lv_gif_create(parent);
lv_gif_set_color_format(img, LV_COLOR_FORMAT_ARGB8888);
// lv_gif_set_src(img, "G:/demo_image/a.gif");
lv_gif_set_src(img, &img_bulb_gif);

}
The code is quite simple, but the gif images have display issues in V9.5, while there were no such problems in V9.4.
The code implementation is carried out in the CodeBlock simulator.
image

Hi @js88jise,

It seems to be the same problem presented in this issue.

Could you open an issue in the LVGL OPEN repository?

1 Like

Thank you. I have checked and verified it successfully.