2018-06-03 22:00:42 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* ftgasp.h
|
|
|
|
*
|
2019-02-21 09:19:09 +01:00
|
|
|
* Access of TrueType's 'gasp' table (specification).
|
2018-06-03 22:00:42 +02:00
|
|
|
*
|
2023-01-17 09:18:25 +01:00
|
|
|
* Copyright (C) 2007-2023 by
|
2018-06-03 22:00:42 +02:00
|
|
|
* David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
*
|
|
|
|
* This file is part of the FreeType project, and may only be used,
|
|
|
|
* modified, and distributed under the terms of the FreeType project
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
2007-01-09 11:37:36 +01:00
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef FTGASP_H_
|
|
|
|
#define FTGASP_H_
|
2007-01-08 16:15:32 +01:00
|
|
|
|
2020-06-08 13:31:55 +02:00
|
|
|
#include <freetype/freetype.h>
|
2007-01-08 16:15:32 +01:00
|
|
|
|
2008-09-12 18:27:48 +02: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
|
|
|
|
|
|
|
|
|
* Version 2.9.1 released.
=========================
Tag sources with `VER-2-9-1'.
* docs/VERSION.TXT: Add entry for version 2.9.1.
* docs/CHANGES: Updated.
* README, Jamfile (RefDoc), builds/windows/vc2005/freetype.vcproj,
src/base/ftver.rc, builds/windows/vc2005/index.html,
builds/windows/vc2008/freetype.vcproj,
builds/windows/vc2008/index.html,
builds/windows/vc2010/freetype.vcxproj,
builds/windows/vc2010/index.html,
builds/windows/visualc/freetype.dsp,
builds/windows/visualc/freetype.vcproj,
builds/windows/visualc/index.html,
builds/windows/visualce/freetype.dsp,
builds/windows/visualce/freetype.vcproj,
builds/windows/visualce/index.html,
builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2005-ce/index.html,
builds/wince/vc2008-ce/freetype.vcproj,
builds/wince/vc2008-ce/index.html: s/2.9/2.9.1/, s/29/291/.
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 1.
* builds/unix/configure.raw (version_info): Set to 22:1:16.
* CMakeLists.txt (VERSION_PATCH): Set to 1.
* include/freetype/ftgasp.h: Use FT_BEGIN_HEADER and FT_END_HEADER.
2018-05-01 20:27:24 +02:00
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
|
|
|
|
2018-09-04 08:00:58 +02:00
|
|
|
/**************************************************************************
|
2007-01-12 10:28:44 +01:00
|
|
|
*
|
|
|
|
* @section:
|
|
|
|
* gasp_table
|
|
|
|
*
|
|
|
|
* @title:
|
|
|
|
* Gasp Table
|
|
|
|
*
|
|
|
|
* @abstract:
|
2019-02-21 09:19:09 +01:00
|
|
|
* Retrieving TrueType 'gasp' table entries.
|
2007-01-12 10:28:44 +01:00
|
|
|
*
|
|
|
|
* @description:
|
|
|
|
* The function @FT_Get_Gasp can be used to query a TrueType or OpenType
|
2019-02-21 09:19:09 +01:00
|
|
|
* font for specific entries in its 'gasp' table, if any. This is mainly
|
2018-08-24 18:52:30 +02:00
|
|
|
* useful when implementing native TrueType hinting with the bytecode
|
|
|
|
* interpreter to duplicate the Windows text rendering results.
|
2007-01-12 10:28:44 +01:00
|
|
|
*/
|
2007-01-08 16:15:32 +01:00
|
|
|
|
2018-09-04 08:00:58 +02:00
|
|
|
/**************************************************************************
|
2007-01-09 11:37:36 +01:00
|
|
|
*
|
|
|
|
* @enum:
|
|
|
|
* FT_GASP_XXX
|
|
|
|
*
|
|
|
|
* @description:
|
|
|
|
* A list of values and/or bit-flags returned by the @FT_Get_Gasp
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* @values:
|
|
|
|
* FT_GASP_NO_TABLE ::
|
2007-01-16 07:11:27 +01:00
|
|
|
* This special value means that there is no GASP table in this face.
|
2007-01-09 11:37:36 +01:00
|
|
|
* It is up to the client to decide what to do.
|
|
|
|
*
|
|
|
|
* FT_GASP_DO_GRIDFIT ::
|
2012-01-16 18:00:24 +01:00
|
|
|
* Grid-fitting and hinting should be performed at the specified ppem.
|
2018-08-24 18:52:30 +02:00
|
|
|
* This **really** means TrueType bytecode interpretation. If this bit
|
2011-01-05 22:21:33 +01:00
|
|
|
* is not set, no hinting gets applied.
|
2007-01-09 11:37:36 +01:00
|
|
|
*
|
|
|
|
* FT_GASP_DO_GRAY ::
|
2012-01-16 18:00:24 +01:00
|
|
|
* Anti-aliased rendering should be performed at the specified ppem.
|
2011-01-05 22:21:33 +01:00
|
|
|
* If not set, do monochrome rendering.
|
2007-01-09 11:37:36 +01:00
|
|
|
*
|
|
|
|
* FT_GASP_SYMMETRIC_SMOOTHING ::
|
2011-01-05 22:21:33 +01:00
|
|
|
* If set, smoothing along multiple axes must be used with ClearType.
|
2007-01-09 11:37:36 +01:00
|
|
|
*
|
|
|
|
* FT_GASP_SYMMETRIC_GRIDFIT ::
|
|
|
|
* Grid-fitting must be used with ClearType's symmetric smoothing.
|
|
|
|
*
|
|
|
|
* @note:
|
2018-08-24 18:52:30 +02:00
|
|
|
* The bit-flags `FT_GASP_DO_GRIDFIT` and `FT_GASP_DO_GRAY` are to be
|
2011-01-05 22:21:33 +01:00
|
|
|
* used for standard font rasterization only. Independently of that,
|
2018-08-24 18:52:30 +02:00
|
|
|
* `FT_GASP_SYMMETRIC_SMOOTHING` and `FT_GASP_SYMMETRIC_GRIDFIT` are to
|
|
|
|
* be used if ClearType is enabled (and `FT_GASP_DO_GRIDFIT` and
|
|
|
|
* `FT_GASP_DO_GRAY` are consequently ignored).
|
2011-01-05 22:21:33 +01:00
|
|
|
*
|
2018-08-24 18:52:30 +02:00
|
|
|
* 'ClearType' is Microsoft's implementation of LCD rendering, partly
|
2007-01-09 11:37:36 +01:00
|
|
|
* protected by patents.
|
2007-01-10 15:18:15 +01:00
|
|
|
*
|
2007-01-12 10:28:44 +01:00
|
|
|
* @since:
|
|
|
|
* 2.3.0
|
2007-01-09 11:37:36 +01:00
|
|
|
*/
|
|
|
|
#define FT_GASP_NO_TABLE -1
|
|
|
|
#define FT_GASP_DO_GRIDFIT 0x01
|
|
|
|
#define FT_GASP_DO_GRAY 0x02
|
2017-02-03 08:31:18 +01:00
|
|
|
#define FT_GASP_SYMMETRIC_GRIDFIT 0x04
|
2007-01-09 11:37:36 +01:00
|
|
|
#define FT_GASP_SYMMETRIC_SMOOTHING 0x08
|
|
|
|
|
|
|
|
|
2018-09-04 08:00:58 +02:00
|
|
|
/**************************************************************************
|
2007-01-09 11:37:36 +01:00
|
|
|
*
|
2018-06-17 11:22:37 +02:00
|
|
|
* @function:
|
2007-01-09 11:37:36 +01:00
|
|
|
* FT_Get_Gasp
|
|
|
|
*
|
|
|
|
* @description:
|
2017-01-11 14:21:47 +01:00
|
|
|
* For a TrueType or OpenType font file, return the rasterizer behaviour
|
2019-02-21 09:19:09 +01:00
|
|
|
* flags from the font's 'gasp' table corresponding to a given character
|
2018-08-24 18:52:30 +02:00
|
|
|
* pixel size.
|
2007-01-09 11:37:36 +01:00
|
|
|
*
|
|
|
|
* @input:
|
2018-06-03 22:00:42 +02:00
|
|
|
* face ::
|
|
|
|
* The source face handle.
|
2017-01-11 14:21:47 +01:00
|
|
|
*
|
2018-06-03 22:00:42 +02:00
|
|
|
* ppem ::
|
|
|
|
* The vertical character pixel size.
|
2007-01-09 11:37:36 +01:00
|
|
|
*
|
|
|
|
* @return:
|
2008-05-31 09:03:30 +02:00
|
|
|
* Bit flags (see @FT_GASP_XXX), or @FT_GASP_NO_TABLE if there is no
|
2019-02-21 09:19:09 +01:00
|
|
|
* 'gasp' table in the face.
|
2007-01-10 15:18:15 +01:00
|
|
|
*
|
2017-01-11 14:21:47 +01:00
|
|
|
* @note:
|
|
|
|
* If you want to use the MM functionality of OpenType variation fonts
|
|
|
|
* (i.e., using @FT_Set_Var_Design_Coordinates and friends), call this
|
2018-08-24 18:52:30 +02:00
|
|
|
* function **after** setting an instance since the return values can
|
2017-01-11 14:21:47 +01:00
|
|
|
* change.
|
|
|
|
*
|
2007-01-12 10:28:44 +01:00
|
|
|
* @since:
|
|
|
|
* 2.3.0
|
2007-01-09 11:37:36 +01:00
|
|
|
*/
|
2007-01-08 16:15:32 +01:00
|
|
|
FT_EXPORT( FT_Int )
|
2007-01-09 11:37:36 +01:00
|
|
|
FT_Get_Gasp( FT_Face face,
|
|
|
|
FT_UInt ppem );
|
2007-01-08 16:15:32 +01:00
|
|
|
|
2014-12-02 23:06:04 +01:00
|
|
|
/* */
|
|
|
|
|
2007-01-08 16:15:32 +01:00
|
|
|
|
* Version 2.9.1 released.
=========================
Tag sources with `VER-2-9-1'.
* docs/VERSION.TXT: Add entry for version 2.9.1.
* docs/CHANGES: Updated.
* README, Jamfile (RefDoc), builds/windows/vc2005/freetype.vcproj,
src/base/ftver.rc, builds/windows/vc2005/index.html,
builds/windows/vc2008/freetype.vcproj,
builds/windows/vc2008/index.html,
builds/windows/vc2010/freetype.vcxproj,
builds/windows/vc2010/index.html,
builds/windows/visualc/freetype.dsp,
builds/windows/visualc/freetype.vcproj,
builds/windows/visualc/index.html,
builds/windows/visualce/freetype.dsp,
builds/windows/visualce/freetype.vcproj,
builds/windows/visualce/index.html,
builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2005-ce/index.html,
builds/wince/vc2008-ce/freetype.vcproj,
builds/wince/vc2008-ce/index.html: s/2.9/2.9.1/, s/29/291/.
* include/freetype/freetype.h (FREETYPE_PATCH): Set to 1.
* builds/unix/configure.raw (version_info): Set to 22:1:16.
* CMakeLists.txt (VERSION_PATCH): Set to 1.
* include/freetype/ftgasp.h: Use FT_BEGIN_HEADER and FT_END_HEADER.
2018-05-01 20:27:24 +02:00
|
|
|
FT_END_HEADER
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* FTGASP_H_ */
|
2007-01-09 11:37:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|