Lv_img_set_zoom with filesystem

Description

When i use lv_img_set_zoom to zoom a image without filesystem, it can work, but with filesystem , the image can not display. It is normal to not zoom the picture。

What MCU/Processor/Board and compiler are you using?

simulator

What do you expect?

Code to reproduce

lv_obj_t* img = lv_img_create(parent, NULL);
lv_img_set_src(img, "P:/flower.bin");
lv_img_set_zoom(img, 100);

Unfortunately, image transformations are not supported with images loaded from the filesystem at this time. See this post:

Thank you.