> I will appreciate, if someone can give pointers to Load
> (FT_LOAD_XXX) and Render(FT_RENDER_XXX) flags to be used in
> ver. 2.1.10.
> 
> Specifically for following scenarios: 
> 
> -Antialiasing (ON), Hinting(ON)

FT_LOAD_TARGET

> -Antialiasing (ON), Hinting(OFF)

FT_LOAD_TARGET_NORMAL
FT_LOAD_NO_HINTING

> -Antialiasing (OFF), Hinting(ON)

FT_LOAD_TARGET_MONO

> -Antialiasing (OFF), Hinting(OFF)

FT_LOAD_TARGET_MONO
FT_LOAD_NO_HINTING

FT_LOAD_NO_HINTING should be ORed with possible other flags while
calling FT_Load_Glyph, and FT_LOAD_TARGET_XXX should be used
exclusively with FT_Render_Glyph.


    Werner


_______________________________________________
Freetype-devel mailing list
Freetype-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/freetype-devel

Reply via email to