I dont have options to use other than opengl methods (that is glxxx() methods()). I need to draw text using gl methods only. After reading the red book i understand that it is possible only through glBitmap() method. If this is the only possible way, then can any one help me with the pixel array information for all the characters. Is there is any other way to draw text?
|
Use An example: A STAR WARS SCROLLER.
|
|||||
|
|
Drawing text in plain OpenGL isn't a straigth-forward task. You should probably have a look at libraries for doing this (either by using a library or as an example implementation). Some good starting points could be GLFont, OpenGL Font Survey and NeHe Tutorial for Bitmap Fonts (Windows). Note that bitmaps are not the only way of achieving text in OpenGL as mentioned in the font survey. |
|||
|
|
|
This article describes how to render text in OpenGL using various techniques. With only using opengl, there are several ways:
|
|||
|
|
|
I think that the best solution for drawing text in OpenGL is texture fonts, I work with them for a long time. They are flexible, fast and nice looking (with some rear exceptions). I use special program for converting font files (.ttf for example) to texture, which is saved to file of some internal "font" format (I've developed format and program based on http://content.gpwiki.org/index.php/OpenGL:Tutorials:Font_System though my version went rather far from the original supporting Unicode and so on). When starting the main app, fonts are loaded from this "internal" format. Look link above for more information. With such approach the main app doesn't use any special libraries like FreeType, which is undesirable for me also. Text is being drawn using standard OpenGL functions. |
|||
|
|
This requires GLUT Printing x coords of mouse location
edit added positioning the text. |
|||||||||||
|

