Lines Matching full:can

4 A font is stored in a `lv_font_t` variable and can be set in a style's *text_font* field. For examp…
10 This way, with higher *bpp*, the edges of the letter can be smoother. The possible *bpp* values are…
29 There are several built-in fonts in different sizes, which can be enabled in `lv_conf.h` with *LV_F…
69 The symbols can be used singly as:
96 …ase direction is not only applied to labels. It's a general property which can be set for every ob…
100 The default base direction for screens can be set by `LV_BIDI_BASE_DIR_DEF` in *lv_conf.h* and othe…
139 …h the library settings. By default, LVGL assumes `RGB` order, however this can be swapped by setti…
142 The bitmaps of fonts can be compressed by
149 - they can be compressed better
157 …s (Montserrat font and symbols) but in a different size and/or ranges, you can use the `built_in_f…
170 … symbol to the range field. E.g.` 0xf287` for the USB symbol. More symbols can be enumerated with …
182 `lv_font_load` can be used to load a font from a file. The font needs to have a special binary form…
201 LVGL's font interface is designed to be very flexible but, even so, you can add your own font engin…
202 For example, you can use [FreeType](https://www.freetype.org/) to real-time render glyphs from TTF …
204 A ready to use FreeType can be found in [lv_freetype](https://github.com/lvgl/lv_lib_freetype) repo…
255 You can specify `fallback` in `lv_font_t` to provide fallback to the font. When the font
258 `fallback` can be chained, so it will try to solve until there is no `fallback` set.
265 /* So now we can display Roboto for supported characters while having wider characters set support …