[ft] Newbie to freetype

2010-01-15 Thread rsr
FT_SET_CHAR_SIZE and FT_LOAD_CHAR works... I have gone through the docs,but didnt get what each parameter use completely?Please do bare with my newbie question and please do help me in understanding? Thanks a lot in advance. -rsr ___ Freetype

[ft] Confused with FT_SET_CHAR_SIZE and FT_LOAD_CHAR

2010-01-15 Thread rsr
Hi, I am using the example1.c given in the tutorial to get started with the freetype library. /* use 50pt at 100dpi */ error = FT_Set_Char_Size( face,50*64,0, 100,0 );/* set character After reading document API,i assumed we can set the

[ft] distance between characters

2010-02-02 Thread rsr
Hi, I would like to calculate the distance between one character to another char given a string,while converting to bitmap.How can i get the position of next character inorder to display with the same space as input string is? Could anyone please explain me,how to do this? Thanks

[ft-devel] What is 26.6 fractional points?

2010-01-13 Thread rsr
Hi, Can any one please explain me what is nominal width, 26.6 fractional points Thanks___ Freetype-devel mailing list Freetype-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/freetype-devel

[ft-devel] Newbie question

2010-01-13 Thread rsr
Hi, I tried the example1 given in the tutorial. I gave a ACME.ttf file and a char 'E' to convert to the font given. But the output i couldnt able to resemble to the input character. Can anyone please explain me what does FT_SET_CHAR_SIZE and FT_LOAD_CHAR do? I have gone through the