Add some references.

This commit is contained in:
Werner Lemberg 2005-11-22 09:37:04 +00:00
parent 67ba21189a
commit c815f33b85
1 changed files with 11 additions and 3 deletions

View File

@ -2268,7 +2268,7 @@ FT_BEGIN_HEADER
* *
* 2. If no embedded bitmap is searched or found, FreeType looks for a * 2. If no embedded bitmap is searched or found, FreeType looks for a
* scalable outline. If one is found, it is loaded from the font * scalable outline. If one is found, it is loaded from the font
* file, scaled to device pixels, then "hinted" to the pixel grid in * file, scaled to device pixels, then `hinted' to the pixel grid in
* order to optimize it. The outline data can be accessed from the * order to optimize it. The outline data can be accessed from the
* glyph slot (see note below). * glyph slot (see note below).
* *
@ -2284,9 +2284,11 @@ FT_BEGIN_HEADER
* *
* FT_LOAD_NO_HINTING :: * FT_LOAD_NO_HINTING ::
* Don't hint glyph outlines after their scaling to device pixels. * Don't hint glyph outlines after their scaling to device pixels.
* This generally generates "blurrier" glyphs in anti-aliased modes. * This generally generates `blurrier' glyphs in anti-aliased modes.
* *
* This flag is ignored if @FT_LOAD_NO_SCALE is set. * This flag is ignored if @FT_LOAD_NO_SCALE is set. See also
* FT_FACE_FLAG_HINTER (@FT_FACE_FLAG_XXX), FT_LOAD_FORCE_AUTO and
* FT_LOAD_NO_AUTOHINT below.
* *
* FT_LOAD_RENDER :: * FT_LOAD_RENDER ::
* Render the glyph outline immediately into a bitmap before the glyph * Render the glyph outline immediately into a bitmap before the glyph
@ -2318,6 +2320,9 @@ FT_BEGIN_HEADER
* loaded. You shouldn't need this in a typical application, since it * loaded. You shouldn't need this in a typical application, since it
* is mostly used to experiment with its algorithm. * is mostly used to experiment with its algorithm.
* *
* See also FT_FACE_FLAG_HINTER (@FT_FACE_FLAG_XXX), FT_LOAD_NO_HINTING
* above, and FT_LOAD_NO_AUTOHINT below.
*
* FT_LOAD_CROP_BITMAP :: * FT_LOAD_CROP_BITMAP ::
* Indicates that the glyph loader should try to crop the bitmap (i.e., * Indicates that the glyph loader should try to crop the bitmap (i.e.,
* remove all space around its black bits) when loading it. This is * remove all space around its black bits) when loading it. This is
@ -2371,6 +2376,9 @@ FT_BEGIN_HEADER
* being used. This can be important for certain fonts where unhinted * being used. This can be important for certain fonts where unhinted
* output is better than auto-hinted one. * output is better than auto-hinted one.
* *
* See also FT_FACE_FLAG_HINTER (@FT_FACE_FLAG_XXX), FT_LOAD_FORCE_AUTO,
* and FT_LOAD_NO_HINTING above.
*
* FT_LOAD_TARGET_NORMAL :: * FT_LOAD_TARGET_NORMAL ::
* Use hinting for @FT_RENDER_MODE_NORMAL. * Use hinting for @FT_RENDER_MODE_NORMAL.
* *