/* Copyright (C) 2001-2023 Artifex Software, Inc. 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. */ /* Definitions for CID-keyed fonts */ #ifndef gxfcid_INCLUDED # define gxfcid_INCLUDED #include "gxcid.h" /* for CIDSystemInfo */ #include "gxfont.h" #include "gxfont42.h" #include "gsrefct.h" #include "gstype1.h" /* ---------------- Structures ---------------- */ /* * Define the data common to CIDFontType 0 (FontType 9, analogous to 1) * and 2 (FontType 11, analogous to 42). */ #define MAX_GDBytes 4 typedef struct gs_font_cid_data_s { gs_cid_system_info_t CIDSystemInfo; int CIDCount; int MaxCID; /* For font with GlyphDirectory highest CID != CIDCount. */ int GDBytes; /* optional, for standard glyph_data */ /*int PaintType;*/ /*float StrokeWidth;*/ } gs_font_cid_data; extern_st(st_gs_font_cid_data); #define public_st_gs_font_cid_data() /* in gsfcid.c */\ gs_public_st_suffix_add0_final(st_gs_font_cid_data,\ gs_font_cid_data, "gs_font_cid_data",\ font_cid_data_enum_ptrs, font_cid_data_reloc_ptrs,\ gs_font_finalize, st_cid_system_info) #define st_gs_font_cid_data_num_ptrs\ st_cid_system_info_num_ptrs /* * Define the structures for CIDFontType 0, 1, and 2 fonts. In principle, * each of these should be in its own header file, but they're so small * that we include them here. */ /* CIDFontType 0 references an array of (partial) FontType 1 fonts. */ typedef struct gs_font_cid0_s gs_font_cid0; #define MAX_FDBytes 4 typedef struct gs_font_cid0_data_s { gs_font_cid_data common; ulong CIDMapOffset; /* optional, for standard glyph_data */ gs_font_type1 **FDArray; uint FDArray_size; int FDBytes; /* optional, for standard glyph_data */ /* * The third argument of glyph_data may be NULL if only the font number * is wanted. */ int (*glyph_data)(gs_font_base *, gs_glyph, gs_glyph_data_t *, int *); void *proc_data; } gs_font_cid0_data; struct gs_font_cid0_s { gs_font_base_common; gs_font_cid0_data cidata; }; extern_st(st_gs_font_cid0); #define public_st_gs_font_cid0() /* in gsfcid.c */\ gs_public_st_composite_use_final(st_gs_font_cid0,\ gs_font_cid0, "gs_font_cid0",\ font_cid0_enum_ptrs, font_cid0_reloc_ptrs, gs_font_finalize) #define st_gs_font_cid0_max_ptrs\ (st_gs_font_max_ptrs + st_gs_font_cid_data_num_ptrs + 2) /* Define a GC descriptor for allocating FDArray. */ extern_st(st_gs_font_type1_ptr_element); /* in gsfcid.c */ /* CIDFontType 1 doesn't reference any additional structures. */ typedef struct gs_font_cid1_data_s { gs_cid_system_info_t CIDSystemInfo; } gs_font_cid1_data; typedef struct gs_font_cid1_s { gs_font_base_common; gs_font_cid1_data cidata; } gs_font_cid1; extern_st(st_gs_font_cid1); #define public_st_gs_font_cid1() /* in gsfcid.c */\ gs_public_st_composite_use_final(st_gs_font_cid1,\ gs_font_cid1, "gs_font_cid1",\ font_cid1_enum_ptrs, font_cid1_reloc_ptrs, gs_font_finalize) #define st_gs_font_cid1_max_ptrs\ (st_gs_font_max_ptrs + st_cid_system_info_num_ptrs) /* Auxiliary data for CIDFontType 2 emulated with Open Type. */ typedef struct gs_subst_CID_on_WMode_s { rc_header rc; uint *data[2]; uint size[2]; } gs_subst_CID_on_WMode_t; #define public_st_subst_CID_on_WMode()\ gs_public_st_complex_only(st_subst_CID_on_WMode, gs_subst_CID_on_WMode_t, "gs_subst_CID_on_WMode",\ 0, subst_CID_on_WMode_enum_ptrs, subst_CID_on_WMode_reloc_ptrs, subst_CID_on_WMode_finalize) #define st_subst_CID_on_WMode_num_ptrs 3 /* rc.memory, data[0], data[1] */ /* CIDFontType 2 is a subclass of FontType 42. */ typedef struct gs_font_cid2_s gs_font_cid2; typedef struct gs_font_cid2_data_s { gs_font_cid_data common; int MetricsCount; int (*CIDMap_proc)(gs_font_cid2 *, gs_glyph); /* * "Wrapper" get_outline and glyph_info procedures are needed, to * handle MetricsCount. Save the original ones here. */ struct o_ { int (*get_outline)(gs_font_type42 *, uint, gs_glyph_data_t *); int (*get_metrics)(gs_font_type42 *, uint, gs_type42_metrics_options_t, float * /* See comment for gs_type42_default_get_metrics. */); } orig_procs; } gs_font_cid2_data; struct gs_font_cid2_s { gs_font_type42_common; gs_font_cid2_data cidata; gs_subst_CID_on_WMode_t *subst_CID_on_WMode; }; extern_st(st_gs_font_cid2); #define public_st_gs_font_cid2() /* in gsfcid.c */\ gs_public_st_composite_use_final(st_gs_font_cid2,\ gs_font_cid2, "gs_font_cid2",\ font_cid2_enum_ptrs, font_cid2_reloc_ptrs, gs_font_finalize) #define st_gs_font_cid2_own_ptrs 1 #define st_gs_font_cid2_max_ptrs\ (st_gs_font_type42_max_ptrs + st_gs_font_cid_data_num_ptrs + st_gs_font_cid2_own_ptrs) /* ---------------- Procedures ---------------- */ /* * Get the CIDSystemInfo of a font. If the font is not a CIDFont, * return NULL. */ const gs_cid_system_info_t *gs_font_cid_system_info(const gs_font *); /* * Provide a default enumerate_glyph procedure for CIDFontType 0 fonts. * Built for simplicity, not for speed. */ font_proc_enumerate_glyph(gs_font_cid0_enumerate_glyph); /* * Check CIDSystemInfo compatibility. */ bool gs_is_CIDSystemInfo_compatible(const gs_cid_system_info_t *info0, const gs_cid_system_info_t *info1); /* Return the font from the FDArray at the given index */ const gs_font *gs_cid0_indexed_font(const gs_font *, int); /* Check whether a CID font has a Type 2 subfont. */ bool gs_cid0_has_type2(const gs_font *font); #endif /* gxfcid_INCLUDED */