lv_font_conv icon indicating copy to clipboard operation
lv_font_conv copied to clipboard

Converts TTF/WOFF fonts to compact bitmap format

Results 10 lv_font_conv issues
Sort by recently updated
recently updated
newest added

Currently, the font name is the derivated from the output file path: https://github.com/lvgl/lv_font_conv/blob/4677fed860332139df94a7f7f566ce3854cc563d/lib/writers/lvgl/lv_font.js#L18-L19 Would be nice to set the font name via command line (e.g. like lv_image_conv does).

lv_font_conv --font MiSans-Medium.ttf -r 0x20-0x7F --size 40 --format bin --bpp 2 --no-compress -o cour40_2.bin This bin file ok. lv_font_conv --font MiSans-Medium.ttf -r 0x20-0x7F -r 0x4E00-0x9FA5 --size 40 --format bin --bpp...

Hi, I have recently updated my lvgl tools and it occurred to me that lv_font_conv hasn't seen any releases for the last two years. Is there a reason why releases...

I generated a dump output using the following command: `lv_font_conv --no-compress --no-prefilter --bpp 4 --size 20 --font BELL.TTF -r 0x20-0x7F --format dump -o font_test_dump --force-fast-kern-format` And got the following for...

I have a problem about iconfont in a long time. I use "lv_font_conv " which convert a “my_iconfont.c” file. And then try to modify ".c" file which have "offset x"...

when font name is all uppercase, there is a conflict.

Currently `const lv_font_t my_font` is const, and `fallback` field can only be assigned by editing `my_font.c` directly. after this line https://github.com/lvgl/lv_font_conv/blob/49559663c82cf88939b10b67de028569852b0a1f/lib/writers/lvgl/lv_table_head.js#L77 add ```c .fallback = &lv_font_montserrat_12, ``` where `lv_font_montserrat_12` will...

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...

dependencies

### LVGL version V9.0.0 ### What happened? The online font converter tool has a small glitch when using it with V9. If you try to include the fonts in your...

Hi, I've a display which has a resolution of 256x64 Pixel (SSD1322 controller) and I need also small font sizes (8px and so on). But every rendered font don't look...