-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add capability to use custom fonts that include characters from the Unicode Basic Multilingual Plane #200
base: master
Are you sure you want to change the base?
Conversation
UTF-8 decoder added to print stream.
Update comments
Travis reports a fail on the Adafruit master repository!
I suspect that to get around the lack of UTF-8 decoding in the library folk are having to use a work-around and bypass the print class by calling the write() member function directly. So, the current pull request needs to have a UTF-8 on/off switch included. The cp437() on/off switch function does not have a a generic name so, unfortunately, a further function will need to be added somehow. Perhaps a gfxConfig() function is the best approach as that can also be used for future switchable extensions too, perhaps associated with graphics, stream and character set handling options. |
Hi Bodmer, I'm glad to see someone taking on the extended character set topic. |
OK, I have added a switch function to my local copy so will push that to Git in the next few hours. My thoughts are:
This means the update can be transparent to existing users until deliberately switched on but that the rich character/glypg/grapheme set from the Basic Multilingual plane is available if wanted. The Arduino IDE/GCC compiler already uses UTF-8 encoding for the print stream so this is the obvious way forward to me. The GFX "free fonts" will thus be still availble in the basic 32-127 range and in blocks anywhare in the 16 bit code point space. The code size impact is minimal. |
I have uploaded the latest changes. The copy of the ILI9341 library here has two new examples that demo the added features. Adapting for other display hardware should be straightforward. |
@Bodmer That is simply awesome! Would pretty much produce my own font.h file. Installed MinGW, newest Freetype, etc. Can generate fonts (fontconvert myfont.ttf 12 32 512 > myfont), however characters beyond 0xFF simply do not render if using my own fonts. While your hiragana fonts work ok. So my question is how can i generate fonts.h that has special character identifiers in the proper hex format? |
The font data has been created following the instructions here: Note that online converters for Adafruit_GFX compatible fonts are |
First thanks for the quick reply! Yes i saw that video yesterday and right now i also found this link of yours. just did the same with my arial.ttf font and now even my glyphs have hex ids like 0x3041. However if i build the font with this command: For me it seems as a possible bug in GFX library, i mean it seems to be able to lookup 1 byte characters that have a hex id between 0x00 and 0xff. It can also look up 2 byte characters with hex ids between 0x0000 and 0xffff (like in your hiragana font). But it seems to fail finding glyphs correctly if their hex id is between 0x000 and 0xfff. While converting font.ttf files shipped with windows, after 0xff (=255 dec) the next glyph id is always 0x100 (=256 dec) but those do not get rendered right while the font.h contains most special fonts exactly in that range... Can you please confirm this on your side or tell me what i might be missing? |
Create an example complete with font file for me to test. Post it here by making a zip file and dragging to the Git Write window. |
Here it is: |
There are quite a few problems with your sketch.
Make these changes to your sketch and see if it works. |
@Bodmer i could not stop and i think i got it working now ;-) Here you have a modified version of v1.3.6 of the GFX library, but that does not compile on my board. So now i updated v1.5.6 with your modifications (will open a PR in your branch) and now it compiles to my board and i can get any custom characters displayed if i pass them as char array or as String. Passing by hex code still does not work however, but i think i can live without that :-) |
@Bodmer Thanks for taking your time and for the hints! |
HI bodmer I built fonts as you said using the fontconvert app for hebrew letters and I checked it using the Adafruit GFX Pixel font customiser and I can see the font from 0x5d0 -0x5ea but my problem is when using tft.print("\u05D0\u05D1"); I do not see different letter but the same letter |
or I need to do something else? |
You would need to download the adapted library here. Note that the adapted library is a temporary proof of concpt library and that Adafruit have not adopted the changes needed in their master library and I will not be able to resolve any issues you have with it. I would use this library to extend the fonts and permit use of UTF8 encoded strings. That library is well written and is designed to be used with the original Adafruit_GFX library. |
Hi @Bodmer and @idea--list #include "hiragana10.h" // Easily remembered names for the fonts #define PIN 8 Adafruit_NeoMatrix matrix = Adafruit_NeoMatrix(12, 14, PIN, void setup() { matrix.drawRect(0,0,10,12, matrix.Color(0,255, 0));// Test draw green rectangle (Working) } void loop() { matrix.show(); |
can I write Cyrillic? |
@Bodmer can you resolve the merge conflicts? |
@DoomHammer |
I believe this year to be the year of UTF-8 on microchips. |
I've used mcufont. |
UTF-8 decoder added to print stream so the UTF-8 encoded Unicode strings produced by the compiler are rendered correctly on the graphical displays.
Example for ILI9341 TFT showing printing Hiragana characters to screen here:
hiragana_example.zip
This update makes glyphs from the entire 16 bit Unicode Basic Multilingual Plane available. See comments in the example. This example uses ~45% of FLASH on an UNO so it should run fine on any hardware. The included font files were generated by fontconvert tool with the Unicode Hiragana code point range of 12353 - 12435.