/**************************************************************************** * * cidparse.h * * CID-keyed Type1 parser (specification). * * Copyright (C) 1996-2023 by * 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. * */ #ifndef CIDPARSE_H_ #define CIDPARSE_H_ #include <freetype/internal/t1types.h> #include <freetype/internal/ftstream.h> #include <freetype/internal/psaux.h> FT_BEGIN_HEADER /************************************************************************** * * @Struct: * CID_Parser * * @Description: * A CID_Parser is an object used to parse a Type 1 fonts very * quickly. * * @Fields: * root :: * The root PS_ParserRec fields. * * stream :: * The current input stream. * * postscript :: * A pointer to the data to be parsed. * * postscript_len :: * The length of the data to be parsed. * * data_offset :: * The start position of the binary data (i.e., the * end of the data to be parsed. * * binary_length :: * The length of the data after the `StartData' * command if the data format is hexadecimal. * * cid :: * A structure which holds the information about * the current font. * * num_dict :: * The number of font dictionaries. */ CID_Parser; FT_LOCAL( FT_Error ) cid_parser_new( CID_Parser* parser, FT_Stream stream, FT_Memory memory, PSAux_Service psaux ); FT_LOCAL( void ) cid_parser_done( CID_Parser* parser ); /************************************************************************** * * PARSING ROUTINES * */ #define cid_parser_skip_spaces( p ) … #define cid_parser_skip_PS_token( p ) … #define cid_parser_to_int( p ) … #define cid_parser_to_fixed( p, t ) … #define cid_parser_to_coord_array( p, m, c ) … #define cid_parser_to_fixed_array( p, m, f, t ) … #define cid_parser_to_token( p, t ) … #define cid_parser_to_token_array( p, t, m, c ) … #define cid_parser_load_field( p, f, o ) … #define cid_parser_load_field_table( p, f, o ) … FT_END_HEADER #endif /* CIDPARSE_H_ */ /* END */