Using VLW fonts from Processing #920
-
I need cyrillic fonts to use in a project. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 4 replies
-
Have you created the vlw file using the provided Processing sketch? |
Beta Was this translation helpful? Give feedback.
-
What you do next depends on the processor you are using, e.g. SPIFFS, LittleFS or use a flash array. See the library Smooth Font examples and read the comments for more information. I suggest the arrray method unless you are already familiar with SPIFFS and LittleFS. To convert the font to an array see this example font. |
Beta Was this translation helpful? Give feedback.
-
SPIFFS. begin(true) will reformat the file system. The IDE will do this on upload of the file so changes to the sketches are not needed. Reformatting every time a sketch is run will take a lot of time. Read the SPIFFS documentation for further information. It looks like you are not using the processing sketch provided with the library, that makes it easier. If using the Processing IDE menu to generate fonts the make sure you select the "smooth font" option. |
Beta Was this translation helpful? Give feedback.
-
Compare your sketch to the working Smooth Font examples. Build your font into one of those working examplkes (with minimal other changes) to test |
Beta Was this translation helpful? Give feedback.
-
If you wish to put anti aliased font over a screen image then the screen RAM must be read to get the background colour. See "Smooth_font_reading_TFT". |
Beta Was this translation helpful? Give feedback.
-
Done! Tested! |
Beta Was this translation helpful? Give feedback.
What you do next depends on the processor you are using, e.g. SPIFFS, LittleFS or use a flash array. See the library Smooth Font examples and read the comments for more information. I suggest the arrray method unless you are already familiar with SPIFFS and LittleFS.
To convert the font to an array see this example font.