1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

chore: fix lv_example_img_1()

This commit is contained in:
Gabor Kiss-Vamosi 2023-07-31 18:50:45 +02:00
parent 45aa59a473
commit 9285f44539

View File

@ -4,11 +4,15 @@
void lv_example_img_1(void)
{
LV_IMG_DECLARE(test_img_cogwheel_rgb565);
LV_IMG_DECLARE(img_cogwheel_argb);
lv_obj_t * img1 = lv_img_create(lv_scr_act());
lv_img_set_src(img1, &test_img_cogwheel_rgb565);
lv_img_set_src(img1, &img_cogwheel_argb);
lv_obj_align(img1, LV_ALIGN_CENTER, 0, -20);
lv_img_set_angle(img1, 300);
lv_obj_set_size(img1, 200, 200);
lv_obj_t * img2 = lv_img_create(lv_scr_act());
lv_img_set_src(img2, LV_SYMBOL_OK "Accept");
lv_obj_align_to(img2, img1, LV_ALIGN_OUT_BOTTOM_MID, 0, 20);
}
#endif