Hey All,
I am trying to embed a custom font to the app using roFontRegistry. I register 5 types of the same font (Bold, Extrabold, Light, Medium and Regular). All of these fonts are open type (.otf)
FontNameBold.otf
FontNameExtraBold.otf
FontNameLight.otf
FontNameMedium.otf
FontNameRegular.otf
The Register(path as String) call returns true for each font, but when I invoke GetFamilies(), it returns only 1 ("FontName") instead of 5 ("FontNameBold", "FontNameExtraBold", "FontNameLight", "FontNameMedium", "FontNameRegular"). Also when I applied that font to a text on image canvas, it doesn't seems to render the font properly.
Font type: Open type font file
Font embeddability: Installable
Any idea why this happens?