Lines Matching refs:be

17 :cpp:type:`lv_font_t` variable and can be set in a style's *text_font* field.
36 to be smoother --- higher bpp values result in smoother edges.
50 be configured to save your code/text as UTF-8 (usually this the default)
51 and be sure that :c:macro:`LV_TXT_ENC` is set to :c:macro:`LV_TXT_ENC_UTF8` in
61 If all works well, a '\ |check|\ ' character should be displayed.
93 There are several built-in fonts in different sizes, which can be
150 The symbols can be used singly as:
192 a general property which can be set for every Widget. If not set then it
193 will be inherited from the parent. This means it's enough to set the
196 The default base direction for screens can be set by
216 ``lv_dropdown``, ``lv_roller`` are "BiDi processed" to be displayed correctly
223 different form of the same letter needs to be used when it is isolated,
225 should also be taken into account.
235 will be "Arabic processed" but :cpp:func:`lv_label_set_text_static` will not.
244 Compressed fonts can be generated by
255 - they can be compressed better
257 fonts, the performance cost will be smaller.
289 (Requires Node.js to be installed)
294 https://github.com/lvgl/lv_font_conv/ to be installed.)
316 for the USB symbol. More symbols can be enumerated with ``,``.
341 :cpp:func:`lv_binfont_create` can be used to load a font from a file. The font needs
347 needs to be enabled and a driver must be added.
366 :cpp:func:`lv_binfont_create_from_buffer` can be used to load a font from a memory buffer.
367 This function may be useful to load a font from an external file system, which is not
368 supported by LVGL. The font needs to be in the same format as if it were loaded from a file.
371 needs to be enabled and the MEMFS driver must be added.
402 BDF are bitmap fonts where fonts are not described in outlines but in pixels. BDF files can be used…
403 they must be converted into the TTF format using ``mkttf``, which can be found
405 the bitmap information. The bitmap itself will be embedded into the TTF as well. `lv_font_conv <htt…
441 It might be necessary to change the mkttf.py script.
463 The TTF ``TerminusMedium-001.000.ttf`` will be created from ``./TerminusMedium-12-12.bdf``.
478 LVGL's font interface is designed to be very flexible but, even so, you
482 the font's bitmap and read them when the library needs them. FreeType can be used in LVGL as descri…
484 To add a new font engine, a custom :cpp:type:`lv_font_t` variable needs to be created:
501 …* The next letter (`unicode_letter_next`) might be used to calculate the width required by this gl…
526 /* The bitmap should be a continuous bitstream where
538 specify a ``fallback`` font to be used in :cpp:type:`lv_font_t`.
540 ``fallback`` can be chained, so it will try to solve until there is no ``fallback`` set.