1 /***************************************************************************/
5 /* FreeType exact bbox computation (specification). */
7 /* Copyright 1996-2001, 2003, 2007, 2011 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
16 /***************************************************************************/
19 /*************************************************************************/
21 /* This component has a _single_ role: to compute exact outline bounding */
24 /* It is separated from the rest of the engine for various technical */
25 /* reasons. It may well be integrated in `ftoutln' later. */
27 /*************************************************************************/
35 #include FT_FREETYPE_H
38 #error "freetype.h of FreeType 1 has been loaded!"
39 #error "Please fix the directory search order for header files"
40 #error "so that freetype.h of FreeType 2 is found first."
47 /*************************************************************************/
50 /* outline_processing */
52 /*************************************************************************/
55 /*************************************************************************/
58 /* FT_Outline_Get_BBox */
61 /* Compute the exact bounding box of an outline. This is slower */
62 /* than computing the control box. However, it uses an advanced */
63 /* algorithm which returns _very_ quickly when the two boxes */
64 /* coincide. Otherwise, the outline Bézier arcs are traversed to */
65 /* extract their extrema. */
68 /* outline :: A pointer to the source outline. */
71 /* abbox :: The outline's exact bounding box. */
74 /* FreeType error code. 0~means success. */
77 /* If the font is tricky and the glyph has been loaded with */
78 /* @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get */
79 /* reasonable values for the BBox it is necessary to load the glyph */
80 /* at a large ppem value (so that the hinting instructions can */
81 /* properly shift and scale the subglyphs), then extracting the BBox */
82 /* which can be eventually converted back to font units. */
85 FT_Outline_Get_BBox( FT_Outline* outline,
94 #endif /* __FTBBOX_H__ */
100 /* Local Variables: */