All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
#ifndef ifont_INCLUDED
# define ifont_INCLUDED
#include "gxfont.h"
#include "iref.h"
#include "gsfont.h"
typedef struct font_data_s {
ref dict;
ref BuildChar;
ref BuildGlyph;
ref Encoding;
ref CharStrings;
ref GlyphNames2Unicode;
union _fs {
struct _f1 {
ref OtherSubrs;
ref Subrs;
ref GlobalSubrs;
} type1;
struct _f42 {
ref sfnts;
ref CIDMap;
ref GlyphDirectory;
uint mru_sfnts_index;
ulong mru_sfnts_pos;
} type42;
struct _fc0 {
ref GlyphDirectory;
ref GlyphData;
ref DataSource;
} cid0;
} u;
} font_data;
* Even though the interpreter's part of the font data actually
* consists of refs, allocating it as refs tends to create sandbars;
* since it is always allocated and freed as a unit, we can treat it
* as an ordinary structure.
*/
extern_st(st_font_data);
#define public_st_font_data() \
static struct_proc_clear_marks(font_data_clear_marks);\
static struct_proc_enum_ptrs(font_data_enum_ptrs);\
static struct_proc_reloc_ptrs(font_data_reloc_ptrs);\
gs_public_st_complex_only(st_font_data, font_data, "font_data",\
font_data_clear_marks, font_data_enum_ptrs, font_data_reloc_ptrs, 0)
#define pfont_data(pfont) ((font_data *)((pfont)->client_data))
#define pfont_dict(pfont) (&pfont_data(pfont)->dict)
* Get the FontBBox from a font dictionary, if any; if none, or if invalid,
* return 4 zeros.
*/
int font_bbox_param(const gs_memory_t *mem, const ref *pfdict, double bbox[4]);
* Check a parameter that should be a valid font dictionary, and return
* the gs_font stored in its FID entry.
*/
int font_param(const ref * pfdict, gs_font ** ppfont);
* Mark a glyph as a PostScript name (if it isn't a CID) for the garbage
* collector. Return true if a mark was just added. This procedure is
* intended to be used as the mark_glyph procedure in the character cache.
*/
bool zfont_mark_glyph_name(const gs_memory_t *mem, gs_glyph glyph, void *ignore_data);
* Return information about a font, including information from the FontInfo
* dictionary. This procedure is intended to be used as the font_info
* procedure in all PostScript fonts.
*/
font_proc_font_info(zfont_info);
#endif