Lines Matching refs:format

13   - *cf* Color format. See [below](#color-format)
57 You can store images in a *Raw* format to indicate that it's not encoded with one of the built-in c…
76 3. Select the [Color format](#color-formats).
82 In the case of binary files, you need to specify the color format you want:
99 .header.cf = LV_IMG_CF_TRUE_COLOR, /*Set the color format*/
105 If the color format is `LV_IMG_CF_TRUE_COLOR_ALPHA` you can set `data_size` like `80 * 60 * LV_IMG_…
132 - **info** get some basic info about the image (width, height and color format).
137 …tered image decoders until it finds one which can open the image, i.e. one which knows that format.
143 … converter and select `Raw`, `Raw with alpha` or `Raw with chroma-keyed` format. It will just take…
145 … `LV_IMG_CF_RAW_CHROMA_KEYED` accordingly. You should choose the correct format according to your …
147 …ge decoder must decode the *Raw* images to *True color* according to the format described in the […
149 …ibrary can draw images only in *True color* format (or *Raw* but ultimately it will be in *True co…
151 It's possible to decode an image to a non-true color format first (for example: `LV_IMG_INDEXED_4BI…
153 …r encoded* formats, the color format in the open function (`dsc->header.cf`) should be changed acc…
205 /*Change the color format if required. For PNG usually 'Raw' is fine*/
208 …function if required. It's not required if`my_png_decoder` opened the image in true color format.*/
230 /*Copy `len` pixels from `x` and `y` coordinates in True color format to `buf` */
253 If this format/type is not supported by the decoder, return `LV_RES_INV`.
255 If the format is known, but you don't want to decode the entire image (e.g. no memory for it), set …