mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
18f61c5f77
* move png, sjpg, bmp, gif, fs_if to extra/libs * reorganize the examples * update lv_conf_internal.h * fix warnings * add freetype * remove unused assets * add the new libs to build tests * update the docs
18 lines
401 B
C
18 lines
401 B
C
#include "../../lv_examples.h"
|
|
#if LV_USE_BMP && LV_BUILD_EXAMPLES
|
|
|
|
/**
|
|
* Open a BMP file from a file
|
|
*/
|
|
void lv_example_bmp_1(void)
|
|
{
|
|
lv_obj_t * img = lv_img_create(lv_scr_act());
|
|
/* Assuming a File system is attached to letter 'A'
|
|
* E.g. set LV_USE_FS_STDIO 'A' in lv_conf.h */
|
|
lv_img_set_src(img, "A:lvgl/examples/libs/bmp/example_32bit.bmp");
|
|
lv_obj_center(img);
|
|
|
|
}
|
|
|
|
#endif
|