I'd like to render text using both OpenGl and Ftgl (I got this and true type font from Font survey technology ) and cannot find any demo in C (not C++ like extrude.cpp). Can anyone help ?
Thanks.
Type: Posts; User: spearlss
I'd like to render text using both OpenGl and Ftgl (I got this and true type font from Font survey technology ) and cannot find any demo in C (not C++ like extrude.cpp). Can anyone help ?
Thanks.
If anyone is interested I found a good example from Mark J. Kilgard see: http://www.niksula.cs.hut.fi/~ti111300/examples/OpenGL/textfun.c
Bye.
Thanks for your reply.
It is very hard to find something good at that site - only Vc++ and Windows instead of simple c code and Unix -
If I use something like this:
fontInfo =...
I need to use a string text rotated, but as I understand from a previuos question in this forum, bitmap can't be used since these are rendered from a raster position horizontally.
Then I tried to...
I simplify more:
Rotation does not take into effect.
from drawf.c:
void display(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f (1.0, 1.0, 1.0);
I tried to modify the examples "xfont.c" and
drawf.c (from the OpenGl red book)
I want to rotate by any angle the text in the x-y plane but while the translations
are done the rotation are not!...
Yes with Ghostscript and I get the view on the screen. Microsoft Windows Word has a specification for including bitmap files and I have seen this on the SuperBible Book but I have the need for...
I indeed send to the postscript printer the ".eps" file and it is printed ok. But I wonder why if the ".eps" (ascii) text is included in a Microsoft Windows Word Document through the Insert picture -...
After rendering with opengl in feedback mode and wrote an encapsulated Postscript file
under Unix I need to include it in a WORD document under Windows98.
The document is printed correctly but no...