1999-12-17 00:11:37 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftbbox.h */
|
|
|
|
/* */
|
2000-10-26 02:06:35 +02:00
|
|
|
/* FreeType exact bbox computation (specification). */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* */
|
2016-01-13 11:54:10 +01:00
|
|
|
/* Copyright 1996-2016 by */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-07-14 08:16:47 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* This component has a _single_ role: to compute exact outline bounding */
|
|
|
|
/* boxes. */
|
|
|
|
/* */
|
|
|
|
/* It is separated from the rest of the engine for various technical */
|
|
|
|
/* reasons. It may well be integrated in `ftoutln' later. */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef FTBBOX_H_
|
|
|
|
#define FTBBOX_H_
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
|
|
|
|
2003-11-04 08:44:19 +01:00
|
|
|
#ifdef FREETYPE_H
|
|
|
|
#error "freetype.h of FreeType 1 has been loaded!"
|
|
|
|
#error "Please fix the directory search order for header files"
|
|
|
|
#error "so that freetype.h of FreeType 2 is found first."
|
|
|
|
#endif
|
|
|
|
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-01 00:12:33 +01:00
|
|
|
FT_BEGIN_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
|
2001-01-11 10:27:49 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Section> */
|
|
|
|
/* outline_processing */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2001-01-10 12:15:48 +01:00
|
|
|
|
1999-12-17 00:11:37 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
2000-10-26 02:06:35 +02:00
|
|
|
/* FT_Outline_Get_BBox */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
2008-06-26 21:56:51 +02:00
|
|
|
/* Compute the exact bounding box of an outline. This is slower */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* than computing the control box. However, it uses an advanced */
|
2013-09-03 11:33:10 +02:00
|
|
|
/* algorithm that returns _very_ quickly when the two boxes */
|
2007-10-20 18:15:07 +02:00
|
|
|
/* coincide. Otherwise, the outline Bézier arcs are traversed to */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* extract their extrema. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
|
|
|
/* outline :: A pointer to the source outline. */
|
|
|
|
/* */
|
|
|
|
/* <Output> */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* abbox :: The outline's exact bounding box. */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* */
|
|
|
|
/* <Return> */
|
2008-06-26 21:56:51 +02:00
|
|
|
/* FreeType error code. 0~means success. */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* */
|
2011-04-13 00:29:41 +02:00
|
|
|
/* <Note> */
|
|
|
|
/* If the font is tricky and the glyph has been loaded with */
|
|
|
|
/* @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get */
|
|
|
|
/* reasonable values for the BBox it is necessary to load the glyph */
|
|
|
|
/* at a large ppem value (so that the hinting instructions can */
|
2013-09-03 11:33:10 +02:00
|
|
|
/* properly shift and scale the subglyphs), then extracting the BBox, */
|
2011-04-13 00:29:41 +02:00
|
|
|
/* which can be eventually converted back to font units. */
|
|
|
|
/* */
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_EXPORT( FT_Error )
|
|
|
|
FT_Outline_Get_BBox( FT_Outline* outline,
|
|
|
|
FT_BBox *abbox );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-01 00:12:33 +01:00
|
|
|
/* */
|
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
|
2000-12-01 00:12:33 +01:00
|
|
|
FT_END_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* FTBBOX_H_ */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|
2006-05-12 16:20:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Local Variables: */
|
|
|
|
/* coding: utf-8 */
|
|
|
|
/* End: */
|