I'm trying to draw text on OpenGL ES context on iOS platform. I have to draw rich-text with outline font (TTF, OTF or others)

I know two outline text drawing library.

  1. CoreText
  2. FreeType

There is a default text framework in iOS CoreText. I know how to use it, but only for CGContext. What should I do to draw on OpenGL ES context? Should I draw on CoreGraphics bitmap and copy it to OpenGL ES?

I have no experience about FreeType. Is it similar with CoreText?

What's the recommended way to draw outline font drawing on OpenGL ES context?

Note: My application is soft-realtime game.

link|improve this question

77% accept rate
feedback

1 Answer

There's some Apple sample code that uses Quartz 2D, rendering nicely anti-aliased text to a texture. I used it for a debug HUD in a game a couple years ago. The performance wasn't great, but if you don't have to re-render every frame that approach should work.

Sorry I can't recall the exact details of the sample code. But you'd create a bitmap context, render to that, and then make it a texture. (This should work with CoreText too.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.