Lines Matching refs:image

8 Using the [Image decoder interface](/overview/image.html#image-decoder) custom image formats can be…
11 …gle that uses the typical background style properties and the image itself using the image style p…
16 To provide maximum flexibility, the source of the image can be:
22 To set the source of an image, use `lv_img_set_src(img, src)`.
24 …om a PNG, JPG or BMP image, use the [Online image converter tool](https://lvgl.io/tools/imageconve…
27 To use external files, you also need to convert the image files using the online converter tool but…
29 To set an image sourced from a file, use `lv_img_set_src(img, "S:folder1/my_img.bin")`.
31 You can also set a symbol similarly to [Labels](/widgets/core/label). In this case, the image will …
33 ### Label as an image
49 … options can be selected in the image converter. To learn more about the color formats, read the […
52 A color can be mixed with every pixel of an image with a given intensity.
53 …t states (checked, inactive, pressed, etc.) of an image without storing more versions of the same
60 … width or height of the image object is set to `LV_SIZE_CONTENT` the object's size will be set acc…
63 If the object's size is greater than the image size in any directions, then the image will be repea…
64 This allows creation a large image from only a very narrow source.
65 For example, you can have a *300 x 5* image with a special gradient and set it as a wallpaper using…
68 …img, x_ofs)` and `lv_img_set_offset_y(img, y_ofs)`, you can add some offset to the displayed image.
69 Useful if the object size is smaller than the image source size.
70 …Texture atlas](https://en.wikipedia.org/wiki/Texture_atlas) or a "running image" effect can be cre…
78 To rotate the image use `lv_img_set_angle(img, angle)`. Angle has 0.1 degree precision, so for 45.8…
82 By default, the pivot point of the rotation is the center of the image. It can be changed with `lv_…
86 The transformations require the whole image to be available. Therefore indexed images (`LV_IMG_CF_I…
87 …s C array, or if a custom [Image decoder](/overview/images#image-edecoder) returns the whole image.
89 Note that the real coordinates of image objects won't change during transformation. That is `lv_obj…
92image is independent of the transformation properties coming from styles. (See [here](/overview/st…
93 - doesn't transform the children of the image widget
94 - image is transformed directly without creating an intermediate layer (buffer) to snapshot the wid…
98 By default, when the image is zoomed or rotated the real coordinates of the image object are not ch…
106 ### Rounded image
108 You can use `lv_obj_set_style_radius` to set radius to an image, and enable `lv_obj_set_style_clip_…
113 No special events are sent by image objects.