LVGL PNG LIB can support image big size?

Hi, I have a issue:
I loading image from SD Card (FATFS Init done),
I test pass:
lv_fs_open(&lv_file, “0:/Home Screen/PNG/image.png”, LV_FS_MODE_RD) → LV_FS_RES_OK

With image size (150 x 150) or smaller 150 x 150, lcd displayed it
With image bigger 150 x 150, lcd displayed “NO DATA”

I can work demo PNG decoder — LVGL documentation with hardware

Thanks support

Code

The code block(s) should be between ```c and ``` tags:

lv_obj_t * img;
img = lv_img_create(lv_scr_act());
lv_img_set_src(img, "0:/Home Screen/PNG/image.png");
lv_obj_align(img, LV_ALIGN_CENTER, 0, 0);

Screenshot and/or video

If possible, add screenshots and/or videos about the current state.