Lines Matching refs:bitmap
34 - the font is stored as an array of bitmaps, one bitmap per glyph;
396 Small displays with low resolution don't look pretty with automatically rendered fonts. A bitmap fo…
397 the solution, but it's necessary to convert the bitmap font (BDF) to a TTF.
402 BDF are bitmap fonts where fonts are not described in outlines but in pixels. BDF files can be used…
405 the bitmap information. The bitmap itself will be embedded into the TTF as well. `lv_font_conv <htt…
406 the embedded bitmap but it also needs the outlines. One might think you can use a fake MS Bitmap
482 the font's bitmap and read them when the library needs them. FreeType can be used in LVGL as descri…
491 my_font.get_glyph_bitmap = my_get_glyph_bitmap_cb; /* Set a callback to get bitmap of a glyph */
511 dsc_out->box_h = 8; /* Height of the bitmap in [px] */
512 dsc_out->box_w = 6; /* Width of the bitmap in [px] */
513 dsc_out->ofs_x = 0; /* X offset of the bitmap in [pf] */
514 dsc_out->ofs_y = 3; /* Y offset of the bitmap measured from the as line */
521 /* Get the bitmap of `unicode_letter` from `font`. */
526 /* The bitmap should be a continuous bitstream where
529 return bitmap; /* Or NULL if not found */