2002-10-31 09:30:19 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftpfr.h */
|
|
|
|
/* */
|
2003-04-22 09:49:24 +02:00
|
|
|
/* FreeType API for accessing PFR-specific data (specification only). */
|
2002-10-31 09:30:19 +01:00
|
|
|
/* */
|
2017-01-04 20:16:34 +01:00
|
|
|
/* Copyright 2002-2017 by */
|
2002-10-31 09:30:19 +01: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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef FTPFR_H_
|
|
|
|
#define FTPFR_H_
|
2002-10-31 09:30:19 +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
|
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
|
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Section> */
|
|
|
|
/* pfr_fonts */
|
|
|
|
/* */
|
|
|
|
/* <Title> */
|
|
|
|
/* PFR Fonts */
|
|
|
|
/* */
|
|
|
|
/* <Abstract> */
|
Adding OpenType validation module. The code is based on the
(unfinished) `otlayout' module but has been heavily modified to make
it much more compact.
* src/otvalid/*: New module.
* include/freetype/ftotval.h, src/base/ftotval.c,
include/freetype/internal/services/svotval.h: New files.
* include/freetype/config/ftmodule.h: Add otv_module_class.
* include/freetype/config/ftheader.h (FT_OPENTYPE_VALIDATE_H): New
macro.
* include/freetype/internal/ftserv.h
(FT_SERVICE_OPENTYPE_VALIDATE_H): New macro.
* include/freetype/internal/fttrace.h (otvmodule, otvcommon,
otvbase, otvgdef, otvgpos, otvgsub, otvjstf): New trace components.
* include/freetype/ftchapters.h: Updated.
* src/base/Jamfile (Library), src/base/descrip.mms (OBJS),
src/base/rules.mk (BASE_EXT_SRC): Updated.
* docs/CHANGES: Updated.
2004-09-10 16:39:00 +02:00
|
|
|
/* PFR/TrueDoc specific API. */
|
2002-10-31 09:30:19 +01:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* This section contains the declaration of PFR-specific functions. */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* @function:
|
|
|
|
* FT_Get_PFR_Metrics
|
|
|
|
*
|
|
|
|
* @description:
|
2003-04-22 09:49:24 +02:00
|
|
|
* Return the outline and metrics resolutions of a given PFR face.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @input:
|
2003-04-22 09:49:24 +02:00
|
|
|
* face :: Handle to the input face. It can be a non-PFR face.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @output:
|
|
|
|
* aoutline_resolution ::
|
2009-01-19 09:47:43 +01:00
|
|
|
* Outline resolution. This is equivalent to `face->units_per_EM'
|
|
|
|
* for non-PFR fonts. Optional (parameter can be NULL).
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* ametrics_resolution ::
|
2003-04-22 09:49:24 +02:00
|
|
|
* Metrics resolution. This is equivalent to `outline_resolution'
|
|
|
|
* for non-PFR fonts. Optional (parameter can be NULL).
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* ametrics_x_scale ::
|
2003-04-22 09:49:24 +02:00
|
|
|
* A 16.16 fixed-point number used to scale distance expressed
|
|
|
|
* in metrics units to device sub-pixels. This is equivalent to
|
|
|
|
* `face->size->x_scale', but for metrics only. Optional (parameter
|
2008-12-21 18:38:23 +01:00
|
|
|
* can be NULL).
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* ametrics_y_scale ::
|
2003-04-22 09:49:24 +02:00
|
|
|
* Same as `ametrics_x_scale' but for the vertical direction.
|
2008-12-21 18:38:23 +01:00
|
|
|
* optional (parameter can be NULL).
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
2003-04-22 09:49:24 +02:00
|
|
|
* @return:
|
2008-06-26 21:56:51 +02:00
|
|
|
* FreeType error code. 0~means success.
|
2003-04-22 09:49:24 +02:00
|
|
|
*
|
2002-10-31 09:30:19 +01:00
|
|
|
* @note:
|
2003-04-22 09:49:24 +02:00
|
|
|
* If the input face is not a PFR, this function will return an error.
|
2002-10-31 09:30:19 +01:00
|
|
|
* However, in all cases, it will return valid values.
|
|
|
|
*/
|
|
|
|
FT_EXPORT( FT_Error )
|
2003-04-22 09:49:24 +02:00
|
|
|
FT_Get_PFR_Metrics( FT_Face face,
|
|
|
|
FT_UInt *aoutline_resolution,
|
|
|
|
FT_UInt *ametrics_resolution,
|
|
|
|
FT_Fixed *ametrics_x_scale,
|
|
|
|
FT_Fixed *ametrics_y_scale );
|
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* @function:
|
|
|
|
* FT_Get_PFR_Kerning
|
|
|
|
*
|
|
|
|
* @description:
|
2003-04-22 09:49:24 +02:00
|
|
|
* Return the kerning pair corresponding to two glyphs in a PFR face.
|
|
|
|
* The distance is expressed in metrics units, unlike the result of
|
|
|
|
* @FT_Get_Kerning.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @input:
|
2003-04-22 09:49:24 +02:00
|
|
|
* face :: A handle to the input face.
|
|
|
|
*
|
|
|
|
* left :: Index of the left glyph.
|
|
|
|
*
|
|
|
|
* right :: Index of the right glyph.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @output:
|
2003-04-22 09:49:24 +02:00
|
|
|
* avector :: A kerning vector.
|
|
|
|
*
|
|
|
|
* @return:
|
2008-06-26 21:56:51 +02:00
|
|
|
* FreeType error code. 0~means success.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @note:
|
2003-04-22 09:49:24 +02:00
|
|
|
* This function always return distances in original PFR metrics
|
|
|
|
* units. This is unlike @FT_Get_Kerning with the @FT_KERNING_UNSCALED
|
|
|
|
* mode, which always returns distances converted to outline units.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
2003-04-22 09:49:24 +02:00
|
|
|
* You can use the value of the `x_scale' and `y_scale' parameters
|
|
|
|
* returned by @FT_Get_PFR_Metrics to scale these to device sub-pixels.
|
2002-10-31 09:30:19 +01:00
|
|
|
*/
|
|
|
|
FT_EXPORT( FT_Error )
|
|
|
|
FT_Get_PFR_Kerning( FT_Face face,
|
|
|
|
FT_UInt left,
|
|
|
|
FT_UInt right,
|
|
|
|
FT_Vector *avector );
|
|
|
|
|
2003-04-22 09:49:24 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
/**********************************************************************
|
|
|
|
*
|
|
|
|
* @function:
|
|
|
|
* FT_Get_PFR_Advance
|
|
|
|
*
|
|
|
|
* @description:
|
2003-04-22 09:49:24 +02:00
|
|
|
* Return a given glyph advance, expressed in original metrics units,
|
2002-10-31 09:30:19 +01:00
|
|
|
* from a PFR font.
|
|
|
|
*
|
|
|
|
* @input:
|
2003-04-22 09:49:24 +02:00
|
|
|
* face :: A handle to the input face.
|
|
|
|
*
|
|
|
|
* gindex :: The glyph index.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @output:
|
2003-04-22 09:49:24 +02:00
|
|
|
* aadvance :: The glyph advance in metrics units.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @return:
|
2008-06-26 21:56:51 +02:00
|
|
|
* FreeType error code. 0~means success.
|
2002-10-31 09:30:19 +01:00
|
|
|
*
|
|
|
|
* @note:
|
2003-04-22 09:49:24 +02:00
|
|
|
* You can use the `x_scale' or `y_scale' results of @FT_Get_PFR_Metrics
|
2006-05-12 10:00:13 +02:00
|
|
|
* to convert the advance to device sub-pixels (i.e., 1/64th of pixels).
|
2002-10-31 09:30:19 +01:00
|
|
|
*/
|
|
|
|
FT_EXPORT( FT_Error )
|
2003-04-22 09:49:24 +02:00
|
|
|
FT_Get_PFR_Advance( FT_Face face,
|
|
|
|
FT_UInt gindex,
|
|
|
|
FT_Pos *aadvance );
|
2002-10-31 09:30:19 +01:00
|
|
|
|
2014-12-02 23:06:04 +01:00
|
|
|
/* */
|
2002-10-31 09:30:19 +01:00
|
|
|
|
2003-04-22 09:49:24 +02:00
|
|
|
|
2002-10-31 09:30:19 +01:00
|
|
|
FT_END_HEADER
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* FTPFR_H_ */
|
2002-10-31 09:30:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|