When trying to display Chinese (or other symbolic) text. SkiSharp will display boxes instead of the correct Chinese characters. Obviously, the font that Skia uses by default does not support these characters. Therefore, we must assign our own SKTypeface using a font that supports these characters.
My initial strategy was to simply include the necessary fonts to render these characters that worked perfectly. However, with the support of several different symbolic languages with their own fonts, the size of the application increases dramatically (about 15 mb per font).
So, think about this a little more ... The default platform fonts seem to support any of these symbolic characters very well . I mean, the default font displays buttons, shortcuts, and headers nicely.
So, my current thought is: why can't I just pass whatever font into SKTypeface for my control?
The problem is that I do not know how to get what this back or standard font is to create a new SKTypeface with it.
My question
How can I create a SKTypeface from the same font that perfectly displays these buttons, shortcuts and headers?
Note: if you need anything from me to help you understand the problem or solve the problem, just let me know.