:orphan: .. title:: CONFIG_LVGL_IMG_CACHE_DEF_SIZE .. kconfig:: CONFIG_LVGL_IMG_CACHE_DEF_SIZE CONFIG_LVGL_IMG_CACHE_DEF_SIZE ############################## *Default image cache size* Type: ``int`` Help ==== .. code-block:: none Default image cache size, image caching keeps the images open. If only the built-in image formats are used there is no real advantage of caching. With complex image decoders (e.g. PNG or JPG) caching can save the continuous decoding of images. However the opened images might consume additional RAM. Direct dependencies =================== \ :kconfig:`LVGL ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== At ``/gui/lvgl/Kconfig.image:19`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:43`` → ``/Kconfig:8`` → ``/gui/Kconfig:4`` → ``/gui/lvgl/Kconfig:28`` Menu path: (Top) → Additional libraries → LittlevGL GUI library → Image decoder and cache .. code-block:: kconfig config LVGL_IMG_CACHE_DEF_SIZE int "Default image cache size" default 1 depends on LVGL help Default image cache size, image caching keeps the images open. If only the built-in image formats are used there is no real advantage of caching. With complex image decoders (e.g. PNG or JPG) caching can save the continuous decoding of images. However the opened images might consume additional RAM. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*