I did print unicode text in my program using FTGL. I want to turn on italic and bold options.
How can I do it?
How can I know a font file has italic?
Does the font file have option about italic or bold?
Can I just check font name like this:
arial-italic.ttf
With arial unicode ms, and the other I set the flag, but it's not working
face->style_flags = FT_STYLE_FLAG_ITALIC;
How can I control it?
I've read the freetype homepage article, but still I don't know.