2000-08-23 19:32:42 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* t1decode.h */
|
|
|
|
/* */
|
|
|
|
/* PostScript Type 1 decoding routines (specification). */
|
|
|
|
/* */
|
2001-06-28 19:49:10 +02:00
|
|
|
/* Copyright 2000-2001 by */
|
2000-08-23 19:32: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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#ifndef __T1DECODE_H__
|
|
|
|
#define __T1DECODE_H__
|
2000-08-23 00:36:33 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_INTERNAL_POSTSCRIPT_AUX_H
|
|
|
|
#include FT_INTERNAL_POSTSCRIPT_NAMES_H
|
|
|
|
#include FT_INTERNAL_TYPE1_TYPES_H
|
2000-08-29 18:50:01 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_BEGIN_HEADER
|
2000-08-29 18:50:01 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-11-04 09:33:38 +01:00
|
|
|
FT_CALLBACK_TABLE
|
2002-02-28 17:10:29 +01:00
|
|
|
const T1_Decoder_FuncsRec t1_decoder_funcs;
|
2000-08-23 00:36:33 +02:00
|
|
|
|
2000-08-29 18:50:01 +02:00
|
|
|
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_LOCAL FT_Error
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_Decoder_Parse_Glyph( T1_Decoder decoder,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_UInt glyph_index );
|
|
|
|
|
|
|
|
FT_LOCAL FT_Error
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_Decoder_Parse_Charstrings( T1_Decoder decoder,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Byte* base,
|
|
|
|
FT_UInt len );
|
|
|
|
|
|
|
|
FT_LOCAL FT_Error
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_Decoder_Init( T1_Decoder decoder,
|
2001-06-27 21:46:12 +02:00
|
|
|
FT_Face face,
|
|
|
|
FT_Size size,
|
|
|
|
FT_GlyphSlot slot,
|
|
|
|
FT_Byte** glyph_names,
|
2002-02-28 19:59:37 +01:00
|
|
|
PS_Blend blend,
|
2001-10-18 13:49:26 +02:00
|
|
|
FT_Bool hinting,
|
2001-06-27 21:46:12 +02:00
|
|
|
T1_Decoder_Callback parse_glyph );
|
|
|
|
|
|
|
|
FT_LOCAL void
|
2002-02-28 17:10:29 +01:00
|
|
|
T1_Decoder_Done( T1_Decoder decoder );
|
2000-08-23 00:36:33 +02:00
|
|
|
|
2000-08-23 19:32:42 +02:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_END_HEADER
|
2000-08-29 18:50:01 +02:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#endif /* __T1DECODE_H__ */
|
2000-08-23 19:32:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|