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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
|
/* Copyright (C) 1994, 1996, 1997, 1998, 1999 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.
*/
/* Separation color space and operation definition */
#include "gx.h"
#include "gserrors.h"
#include "gsrefct.h"
#include "gsmatrix.h" /* for gscolor2.h */
#include "gscsepr.h"
#include "gxcspace.h"
#include "gxfixed.h" /* for gxcolor2.h */
#include "gxcolor2.h" /* for gs_indexed_map */
#include "gzstate.h" /* for pgs->overprint */
/* ---------------- Color space ---------------- */
gs_private_st_composite(st_color_space_Separation, gs_paint_color_space,
"gs_color_space_Separation",
cs_Separation_enum_ptrs, cs_Separation_reloc_ptrs);
/* Define the Separation color space type. */
private cs_proc_base_space(gx_alt_space_Separation);
private cs_proc_init_color(gx_init_Separation);
private cs_proc_concrete_space(gx_concrete_space_Separation);
private cs_proc_concretize_color(gx_concretize_Separation);
private cs_proc_remap_concrete_color(gx_remap_concrete_Separation);
private cs_proc_install_cspace(gx_install_Separation);
private cs_proc_adjust_cspace_count(gx_adjust_cspace_Separation);
const gs_color_space_type gs_color_space_type_Separation = {
gs_color_space_index_Separation, true, false,
&st_color_space_Separation, gx_num_components_1,
gx_alt_space_Separation,
gx_init_Separation, gx_restrict01_paint_1,
gx_concrete_space_Separation,
gx_concretize_Separation, gx_remap_concrete_Separation,
gx_default_remap_color, gx_install_Separation,
gx_adjust_cspace_Separation, gx_no_adjust_color_count
};
/* GC procedures */
#define pcs ((gs_color_space *)vptr)
private
ENUM_PTRS_BEGIN(cs_Separation_enum_ptrs)
{
return ENUM_USING(*pcs->params.separation.alt_space.type->stype,
&pcs->params.separation.alt_space,
sizeof(pcs->params.separation.alt_space), index - 1);
}
ENUM_PTR(0, gs_color_space, params.separation.map);
ENUM_PTRS_END
private RELOC_PTRS_BEGIN(cs_Separation_reloc_ptrs)
{
RELOC_PTR(gs_color_space, params.separation.map);
RELOC_USING(*pcs->params.separation.alt_space.type->stype,
&pcs->params.separation.alt_space,
sizeof(gs_base_color_space));
}
RELOC_PTRS_END
#undef pcs
/* Get the alternate space for a Separation space. */
private const gs_color_space *
gx_alt_space_Separation(const gs_color_space * pcs)
{
return (const gs_color_space *)&(pcs->params.separation.alt_space);
}
/* Get the concrete space for a Separation space. */
/* (We don't support concrete Separation spaces yet.) */
private const gs_color_space *
gx_concrete_space_Separation(const gs_color_space * pcs,
const gs_imager_state * pis)
{
const gs_color_space *pacs =
(const gs_color_space *)&pcs->params.separation.alt_space;
return cs_concrete_space(pacs, pis);
}
/* Install a Separation color space. */
private int
gx_install_Separation(const gs_color_space * pcs, gs_state * pgs)
{
return (*pcs->params.separation.alt_space.type->install_cspace)
((const gs_color_space *) & pcs->params.separation.alt_space, pgs);
}
/* Adjust the reference count of a Separation color space. */
private void
gx_adjust_cspace_Separation(const gs_color_space * pcs, int delta)
{
rc_adjust_const(pcs->params.separation.map, delta,
"gx_adjust_Separation");
(*pcs->params.separation.alt_space.type->adjust_cspace_count)
((const gs_color_space *)&pcs->params.separation.alt_space, delta);
}
/* ------ Constructors/accessors ------ */
/*
* The default separation tint transformation function. This will just return
* the information in the cache or, if the cache is of zero size, set all
* components in the alternative color space to 0.
*
* No special cases are provided for this routine, as the use of separations
* (particular in this form) is sufficiently rare to not have a significant
* performance impact.
*/
private int
map_tint_value(const gs_separation_params * pcssepr, floatp in_val,
float *out_vals)
{
int ncomps =
cs_num_components((const gs_color_space *)&pcssepr->alt_space);
int nentries = pcssepr->map->num_values / ncomps;
int indx;
const float *pv = pcssepr->map->values;
int i;
if (nentries == 0) {
for (i = 0; i < ncomps; i++)
out_vals[i] = 0.0;
return 0;
}
if (in_val > 1)
indx = nentries - 1;
else if (in_val <= 0)
indx = 0;
else
indx = (int)(in_val * nentries + 0.5);
pv += indx * ncomps;
for (i = 0; i < ncomps; i++)
out_vals[i] = pv[i];
return 0;
}
/*
* Allocate the indexed map required by a separation color space.
*/
private gs_indexed_map *
alloc_separation_map(const gs_color_space * palt_cspace, int cache_size,
gs_memory_t * pmem)
{
gs_indexed_map *pimap;
rc_alloc_struct_1(pimap, gs_indexed_map, &st_indexed_map, pmem,
return 0,
"gs_cspace_build_Separation"
);
pimap->rc.free = free_indexed_map;
pimap->proc.tint_transform = map_tint_value;
if (cache_size != 0) {
int num_comps = gs_color_space_num_components(palt_cspace);
cache_size *= num_comps;
pimap->num_values = cache_size;
pimap->values =
(float *)gs_alloc_byte_array(pmem, cache_size, sizeof(float),
"gs_cspace_build_Separation"
);
if (pimap->values == 0)
rc_decrement(pimap, "gs_cspace_build_Separation"); /* sets pimap = 0 */
} else {
pimap->num_values = 0;
pimap->values = 0;
}
return pimap;
}
/*
* Build a separation color space.
*
* The values array provided with separation color spaces is actually cached
* information, but filled in by the client. The alternative space is the
* color space in which the tint procedure will provide alternative colors.
*/
int
gs_cspace_build_Separation(
gs_color_space ** ppcspace,
gs_separation_name sname,
const gs_color_space * palt_cspace,
int cache_size,
gs_memory_t * pmem
)
{
gs_color_space *pcspace = 0;
gs_separation_params *pcssepr = 0;
int code;
if (palt_cspace == 0 || !palt_cspace->type->can_be_alt_space)
return_error(gs_error_rangecheck);
code = gs_cspace_alloc(&pcspace, &gs_color_space_type_Separation, pmem);
if (code < 0)
return code;
pcssepr = &pcspace->params.separation;
pcssepr->map = alloc_separation_map(palt_cspace, cache_size, pmem);
if (pcssepr->map == 0) {
gs_free_object(pmem, pcspace, "gs_cspace_build_Separation");
return_error(gs_error_VMerror);
}
pcssepr->sname = sname;
gs_cspace_init_from((gs_color_space *) & pcssepr->alt_space, palt_cspace);
*ppcspace = pcspace;
return 0;
}
/*
* Get the cached value array for a separation color space. This will return
* a null pointer if the color space is not a separation color space, or if
* the separation color space has a cache size of 0.
*/
float *
gs_cspace_get_sepr_value_array(const gs_color_space * pcspace)
{
if (gs_color_space_get_index(pcspace) != gs_color_space_index_Separation)
return 0;
return pcspace->params.separation.map->values;
}
/*
* Set the tint transformation procedure used by a Separation color space.
*/
int
gs_cspace_set_tint_xform_proc(gs_color_space * pcspace,
int (*proc) (P3(const gs_separation_params *, floatp, float *)))
{
if (gs_color_space_get_index(pcspace) != gs_color_space_index_Separation)
return_error(gs_error_rangecheck);
pcspace->params.separation.map->proc.tint_transform = proc;
return 0;
}
/* ---------------- Graphics state ---------------- */
/* setoverprint */
void
gs_setoverprint(gs_state * pgs, bool ovp)
{
pgs->overprint = ovp;
}
/* currentoverprint */
bool
gs_currentoverprint(const gs_state * pgs)
{
return pgs->overprint;
}
/* ------ Internal procedures ------ */
/* Initialize a Separation color. */
private void
gx_init_Separation(gs_client_color * pcc, const gs_color_space * pcs)
{
pcc->paint.values[0] = 1.0;
}
/* Remap a Separation color. */
private int
gx_concretize_Separation(const gs_client_color * pc, const gs_color_space * pcs,
frac * pconc, const gs_imager_state * pis)
{
float tint = pc->paint.values[0];
int code;
gs_client_color cc;
const gs_color_space *pacs =
(const gs_color_space *)&pcs->params.separation.alt_space;
if (tint < 0)
tint = 0;
else if (tint > 1)
tint = 1;
/* We always map into the alternate color space. */
code = (*pcs->params.separation.map->proc.tint_transform) (&pcs->params.separation, tint, &cc.paint.values[0]);
if (code < 0)
return code;
return (*pacs->type->concretize_color) (&cc, pacs, pconc, pis);
}
private int
gx_remap_concrete_Separation(const frac * pconc,
gx_device_color * pdc, const gs_imager_state * pis, gx_device * dev,
gs_color_select_t select)
{ /* We don't support concrete Separation colors yet. */
return_error(gs_error_rangecheck);
}
/* ---------------- Notes on real Separation colors ---------------- */
typedef ulong gs_separation; /* BOGUS */
#define gs_no_separation ((gs_separation)(-1L))
#define dev_proc_lookup_separation(proc)\
gs_separation proc(P4(gx_device *dev, const byte *sname, uint len,\
gx_color_value *num_levels))
#define dev_proc_map_tint_color(proc)\
gx_color_index proc(P4(gx_device *dev, gs_separation sepr, bool overprint,\
gx_color_value tint))
/*
* In principle, setting a Separation color space, or setting the device
* when the current color space is a Separation space, calls the
* lookup_separation device procedure to obtain the separation ID and
* the number of achievable levels. Currently, the only hooks for doing
* this are unsuitable: gx_set_cmap_procs isn't called when the color
* space changes, and doing it in gx_remap_Separation is inefficient.
* Probably the best approach is to call gx_set_cmap_procs whenever the
* color space changes. In fact, if we do this, we can probably short-cut
* two levels of procedure call in color remapping (gx_remap_color, by
* turning it into a macro, and gx_remap_DeviceXXX, by calling the
* cmap_proc procedure directly). Some care will be required for the
* implicit temporary resetting of the color space in [color]image.
*
* For actual remapping of Separation colors, we need cmap_separation_direct
* and cmap_separation_halftoned, just as for the other device color spaces.
* So we need to break apart gx_render_gray in gxdither.c so it can also
* do the job for separations.
*/
|