1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
/* Copyright (C) 1992, 1993, 1994, 1996 Aladdin Enterprises. All rights reserved.
This file is part of Aladdin Ghostscript.
Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
or distributor accepts any responsibility for the consequences of using it,
or for whether it serves any particular purpose or works at all, unless he
or she says so in writing. Refer to the Aladdin Ghostscript Free Public
License (the "License") for full details.
Every copy of Aladdin Ghostscript must include a copy of the License,
normally in a plain ASCII text file named PUBLIC. The License grants you
the right to copy, modify and redistribute Aladdin Ghostscript, but only
under certain conditions described in the License. Among other things, the
License requires that the copyright notice and this notice be preserved on
all copies.
*/
/* gxxfont.h */
/* External font interface for Ghostscript library */
#include "gsccode.h"
#include "gsmatrix.h"
#include "gsuid.h"
#include "gsxfont.h"
/*
* Design issues for external fonts
*
* 1. Where do xfonts come from: a device or a font service?
*
* 2. Is a given xfont associated with a particular device, or with a
* class of devices, which may have different output media?
* (Specifically, Windows displays vs. printers.)
*
* 3. Is an xfont a handle that must be interpreted by its originator,
* or an object with its own set of operations?
*
* 4. Are xfonts always transformation-specific, or is there such a thing
* as a scalable xfont?
*
* 5. What is the meaning of the transformation matrix supplied when
* asking for an xfont?
*
* Answers (for the current design)
*
* 1. Devices supply xfonts. Internal devices (image, null, clipping,
* command list, tracing) forward font requests to a real underlying
* device. File format devices should do the same, but right now
* they don't.
*
* 2. An xfont is not associated with anything: it just provides bitmaps.
* Since xfonts are only used at small sizes and low resolutions,
* tuning differences for different output media aren't likely to be
* an issue.
*
* 3. Xfonts are objects. They are allocated by their originator, and
* (currently) only freed by `restore'.
*
* 4. Xfonts are always transformation-specific. This may lead to some
* clutter, but it's very unlikely that a document will have enough
* different transformed versions of a single font for this to be a
* problem in practice.
*
* 5. The transformation matrix is the CTM within the BuildChar or BuildGlyph
* procedure. This maps a 1000x1000 square to the intended character size
* (assuming the base font uses the usual 1000-unit scaling).
*/
/* The definitions for xfonts are very similar to those for devices. */
/* Structure for generic xfonts. */
typedef struct gx_xfont_common_s {
gx_xfont_procs *procs;
} gx_xfont_common;
/* A generic xfont. */
struct gx_xfont_s {
gx_xfont_common common;
};
/* Definition of xfont procedures. */
struct gx_xfont_procs_s {
/* Look up a font name, UniqueID, and matrix, and return */
/* an xfont. */
/* NOTE: even though this is defined as an xfont_proc, */
/* it is actually a `factory' procedure, the only one that */
/* does not take an xfont * as its first argument. */
#define xfont_proc_lookup_font(proc)\
gx_xfont *proc(P7(gx_device *dev, const byte *fname, uint len,\
int encoding_index, const gs_uid *puid, const gs_matrix *pmat,\
gs_memory_t *mem))
xfont_proc_lookup_font((*lookup_font));
/* Convert a character name to an xglyph code. */
/* encoding_index is 0 for StandardEncoding, */
/* 1 for ISOLatin1Encoding, 2 for SymbolEncoding, */
/* and -1 for any other encoding. Either chr or glyph */
/* may be absent (gs_no_char/glyph), but not both. */
/* OBSOLETE as of release 3.43, but still supported. */
#define xfont_proc_char_xglyph(proc)\
gx_xglyph proc(P5(gx_xfont *xf, gs_char chr, int encoding_index,\
gs_glyph glyph, gs_proc_glyph_name((*glyph_name))))
xfont_proc_char_xglyph((*char_xglyph));
/* Get the metrics for a character. */
/* Note: pwidth changed in release 2.9.7. */
#define xfont_proc_char_metrics(proc)\
int proc(P5(gx_xfont *xf, gx_xglyph xg, int wmode,\
gs_point *pwidth, gs_int_rect *pbbox))
xfont_proc_char_metrics((*char_metrics));
/* Render a character. */
/* (x,y) corresponds to the character origin. */
/* The target may be any Ghostscript device. */
#define xfont_proc_render_char(proc)\
int proc(P7(gx_xfont *xf, gx_xglyph xg, gx_device *target,\
int x, int y, gx_color_index color, int required))
xfont_proc_render_char((*render_char));
/* Release any external resources associated with an xfont. */
/* If mprocs is not NULL, also free any storage */
/* allocated by lookup_font (including the xfont itself). */
#define xfont_proc_release(proc)\
int proc(P2(gx_xfont *xf, gs_memory_t *mem))
xfont_proc_release((*release));
/* Convert a character name to an xglyph code. */
/* This is the same as char_xglyph, except that */
/* it takes a vector of callback procedures. */
/* (New in release 3.43.) */
#define xfont_proc_char_xglyph2(proc)\
gx_xglyph proc(P5(gx_xfont *xf, gs_char chr, int encoding_index,\
gs_glyph glyph, const gx_xfont_callbacks *callbacks))
xfont_proc_char_xglyph2((*char_xglyph2));
};
/*
* Since xfonts are garbage-collectable, they need structure descriptors.
* Fortunately, the common part of an xfont contains no pointers to
* GC-managed space, so simple xfonts can use gs_private_st_simple.
* The following macro will serve for an xfont with only one pointer,
* to its device:
*/
#define gs__st_dev_ptrs1(scope_st, stname, stype, sname, penum, preloc, de)\
private ENUM_PTRS_BEGIN(penum) return 0;\
case 0: ENUM_RETURN(gx_device_enum_ptr((gx_device *)(((stype *)vptr)->de)));\
ENUM_PTRS_END\
private RELOC_PTRS_BEGIN(preloc) ;\
((stype *)vptr)->de = (void *)gx_device_reloc_ptr((gx_device *)(((stype *)vptr)->de), gcst);\
RELOC_PTRS_END\
gs__st_composite_only(scope_st, stname, stype, sname, penum, preloc)
/*
* We probably don't ever want xfont descriptors to be public....
#define gs_public_st_dev_ptrs1(stname, stype, sname, penum, preloc, de)\
gs__st_dev_ptrs1(public_st, stname, stype, sname, penum, preloc, de)
*/
#define gs_private_st_dev_ptrs1(stname, stype, sname, penum, preloc, de)\
gs__st_dev_ptrs1(private_st, stname, stype, sname, penum, preloc, de)
|