/src/ghostpdl/base/gsovrc.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* Copyright (C) 2001-2025 Artifex Software, Inc. |
2 | | All Rights Reserved. |
3 | | |
4 | | This software is provided AS-IS with no warranty, either express or |
5 | | implied. |
6 | | |
7 | | This software is distributed under license and may not be copied, |
8 | | modified or distributed except as expressly authorized under the terms |
9 | | of the license contained in the file LICENSE in this distribution. |
10 | | |
11 | | Refer to licensing information at http://www.artifex.com or contact |
12 | | Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, |
13 | | CA 94129, USA, for further information. |
14 | | */ |
15 | | |
16 | | |
17 | | /* overprint/overprint mode compositor implementation */ |
18 | | |
19 | | #include "assert_.h" |
20 | | #include "memory_.h" |
21 | | #include "gx.h" |
22 | | #include "gserrors.h" |
23 | | #include "gsutil.h" /* for gs_next_ids */ |
24 | | #include "gxcomp.h" |
25 | | #include "gxdevice.h" |
26 | | #include "gsdevice.h" |
27 | | #include "gxgetbit.h" |
28 | | #include "gsovrc.h" |
29 | | #include "gxdcolor.h" |
30 | | #include "gxoprect.h" |
31 | | #include "gsbitops.h" |
32 | | #include "gxgstate.h" |
33 | | #include "gxdevsop.h" |
34 | | #include "gxcldev.h" |
35 | | |
36 | | /* GC descriptor for gs_overprint_t */ |
37 | | private_st_gs_overprint_t(); |
38 | | |
39 | | /* |
40 | | * Utility routine for encoding or decoding a color index. We cannot use |
41 | | * the general integer encoding routins for these, as they may be 64 bits |
42 | | * in length (the general routines are only designed for 32 bits). We also |
43 | | * cannot use the color-specific routines, as we do not have the required |
44 | | * device color information available. |
45 | | * |
46 | | * The scheme employed is the potentially 64-bit analog of the 32-bit |
47 | | * routines: the low order seven bits of each bytes represents a base-128 |
48 | | * digit, and the high order bit is set if there is another digit. The |
49 | | * encoding order is little-endian. |
50 | | * |
51 | | * The write routine returns 0 on success, with *psize set to the number |
52 | | * of bytes used. Alternatively, the return value will be gs_error_rangecheck, |
53 | | * with *psize set to the number of bytes required, if there was insufficient |
54 | | * space. |
55 | | * |
56 | | * The read routine returns the number of bytes read on success, or < 0 in |
57 | | * the event of an error. |
58 | | */ |
59 | | static int |
60 | | write_color_index(gx_color_index cindex, byte * data, uint * psize) |
61 | 10 | { |
62 | 10 | int num_bytes = 0; |
63 | 10 | gx_color_index ctmp = cindex; |
64 | | |
65 | 10 | for (num_bytes = 1; (ctmp >>= 7) != 0; ++num_bytes) |
66 | 0 | ; |
67 | 10 | if (num_bytes > *psize) { |
68 | 5 | *psize = num_bytes; |
69 | 5 | return_error(gs_error_rangecheck); |
70 | 5 | } |
71 | 5 | ctmp = cindex; |
72 | 5 | *psize = num_bytes; |
73 | 5 | for (; num_bytes > 1; ctmp >>= 7, --num_bytes) |
74 | 0 | *data++ = 0x80 | (ctmp & 0x7f); |
75 | 5 | *data = ctmp & 0x7f; |
76 | 5 | return 0; |
77 | 10 | } |
78 | | |
79 | | static int |
80 | | read_color_index(gx_color_index * pcindex, const byte * data, uint size) |
81 | 1.03k | { |
82 | 1.03k | gx_color_index cindex = 0; |
83 | 1.03k | int nbytes = 0, shift = 0; |
84 | | |
85 | 1.03k | for (;; shift += 7, data++) { |
86 | 1.03k | if (++nbytes > size) |
87 | 0 | return_error(gs_error_rangecheck); |
88 | 1.03k | else { |
89 | 1.03k | unsigned char byte = *data; |
90 | 1.03k | gx_color_index c = byte; |
91 | | |
92 | 1.03k | cindex += (c & 0x7f) << shift; |
93 | 1.03k | if ((c & 0x80) == 0) |
94 | 1.03k | break; |
95 | 1.03k | } |
96 | 1.03k | } |
97 | 1.03k | *pcindex = cindex; |
98 | 1.03k | return nbytes; |
99 | 1.03k | } |
100 | | |
101 | | /* |
102 | | * Check for equality of two overprint compositor objects. |
103 | | * |
104 | | * This is fairly simple. |
105 | | */ |
106 | | static bool |
107 | | c_overprint_equal(const gs_composite_t * pct0, const gs_composite_t * pct1) |
108 | 0 | { |
109 | 0 | if (pct0->type == pct1->type) { |
110 | 0 | const gs_overprint_params_t * pparams0; |
111 | 0 | const gs_overprint_params_t * pparams1; |
112 | |
|
113 | 0 | pparams0 = &((const gs_overprint_t *)(pct0))->params; |
114 | 0 | pparams1 = &((const gs_overprint_t *)(pct1))->params; |
115 | |
|
116 | 0 | if (pparams0->is_fill_color != pparams1->is_fill_color) |
117 | 0 | return true; /* this changed */ |
118 | 0 | if (!pparams0->retain_any_comps) |
119 | 0 | return !pparams1->retain_any_comps; |
120 | 0 | else |
121 | 0 | return pparams0->drawn_comps == pparams1->drawn_comps; |
122 | 0 | } else |
123 | 0 | return false; |
124 | 0 | } |
125 | | |
126 | | /* |
127 | | * Bits corresponding to boolean values in the first byte of the string |
128 | | * representation of an overprint compositor. |
129 | | */ |
130 | 16.6M | #define OVERPRINT_ANY_COMPS 1 |
131 | 16.6M | #define OVERPRINT_IS_FILL_COLOR 2 |
132 | 16.7M | #define OVERPRINT_SET_FILL_COLOR 0xc |
133 | 16.6M | #define OVERPRINT_EOPM 0x10 |
134 | | |
135 | | /* |
136 | | * Convert an overprint compositor to string form for use by the command |
137 | | * list device. |
138 | | */ |
139 | | static int |
140 | | c_overprint_write(const gs_composite_t * pct, byte * data, uint * psize, gx_device_clist_writer *cdev) |
141 | 114k | { |
142 | 114k | const gs_overprint_params_t * pparams = &((const gs_overprint_t *)pct)->params; |
143 | 114k | byte flags = 0; |
144 | 114k | int used = 1, avail = *psize; |
145 | | |
146 | | /* Clist writer needs to store active state of op device so that |
147 | | we know when to send compositor actions to disable it */ |
148 | 114k | if (pparams->op_state == OP_STATE_NONE) { |
149 | 57.1k | if (pparams->is_fill_color) { |
150 | 30.2k | if (pparams->retain_any_comps) |
151 | 10 | cdev->op_fill_active = true; |
152 | 30.2k | else |
153 | 30.2k | cdev->op_fill_active = false; |
154 | 30.2k | } else { |
155 | 26.8k | if (pparams->retain_any_comps) |
156 | 0 | cdev->op_stroke_active = true; |
157 | 26.8k | else |
158 | 26.8k | cdev->op_stroke_active = false; |
159 | 26.8k | } |
160 | 57.1k | } |
161 | | |
162 | | /* encoded the booleans in a single byte */ |
163 | 114k | if (pparams->retain_any_comps || pparams->is_fill_color || pparams->op_state != OP_STATE_NONE) { |
164 | 87.3k | flags |= (pparams->retain_any_comps) ? OVERPRINT_ANY_COMPS : 0; |
165 | 87.3k | flags |= (pparams->is_fill_color) ? OVERPRINT_IS_FILL_COLOR : 0; |
166 | 87.3k | flags |= OVERPRINT_SET_FILL_COLOR & ((pparams->op_state) << 2); |
167 | 87.3k | flags |= (pparams->effective_opm) << 4; |
168 | | |
169 | | /* write out the component bits */ |
170 | 87.3k | if (pparams->retain_any_comps) { |
171 | 10 | uint tmp_size = (avail > 0 ? avail - 1 : 0); |
172 | 10 | int code = write_color_index(pparams->drawn_comps, data + 1, |
173 | 10 | &tmp_size); |
174 | 10 | if (code < 0 && code != gs_error_rangecheck) |
175 | 0 | return code; |
176 | 10 | used += tmp_size; |
177 | 10 | if_debug0m('v', ((const gx_device*)cdev)->memory, "[v] drawn_comps stored\n"); |
178 | | |
179 | 10 | } |
180 | 87.3k | } |
181 | | |
182 | | /* check for overflow */ |
183 | 114k | *psize = used; |
184 | 114k | if (used > avail) { |
185 | 57.0k | if (avail != 0) |
186 | 0 | return_error(gs_error_rangecheck); |
187 | 57.0k | return gs_error_rangecheck; |
188 | 57.0k | } |
189 | 57.0k | data[0] = flags; |
190 | 57.0k | if_debug2m('v', ((const gx_device *)cdev)->memory, "[v]c_overprint_write(%d), drawn_comps=0x%"PRIx64"\n", |
191 | 57.0k | flags, (uint64_t)pparams->drawn_comps); |
192 | 57.0k | return 0; |
193 | 114k | } |
194 | | |
195 | | /* |
196 | | * Convert the string representation of the overprint parameter into the |
197 | | * full compositor. |
198 | | */ |
199 | | static int |
200 | | c_overprint_read( |
201 | | gs_composite_t ** ppct, |
202 | | const byte * data, |
203 | | uint size, |
204 | | gs_memory_t * mem ) |
205 | 16.6M | { |
206 | 16.6M | gs_overprint_params_t params; |
207 | 16.6M | byte flags = 0; |
208 | 16.6M | int code = 0, nbytes = 1; |
209 | | |
210 | 16.6M | if (size < 1) |
211 | 0 | return_error(gs_error_rangecheck); |
212 | 16.6M | flags = *data; |
213 | 16.6M | if_debug1m('v', mem, "[v]c_overprint_read(%d)", flags); |
214 | 16.6M | params.retain_any_comps = (flags & OVERPRINT_ANY_COMPS) != 0; |
215 | 16.6M | params.is_fill_color = (flags & OVERPRINT_IS_FILL_COLOR) != 0; |
216 | 16.6M | params.op_state = (flags & OVERPRINT_SET_FILL_COLOR) >> 2; |
217 | 16.6M | params.effective_opm = (flags & OVERPRINT_EOPM) >> 4; |
218 | 16.6M | params.idle = 0; |
219 | 16.6M | params.drawn_comps = 0; |
220 | | |
221 | | /* check if the drawn_comps array is present */ |
222 | 16.6M | if (params.retain_any_comps) { |
223 | 1.03k | code = read_color_index(¶ms.drawn_comps, data + 1, size - 1); |
224 | 1.03k | if (code < 0) |
225 | 0 | return code; |
226 | 1.03k | nbytes += code; |
227 | 1.03k | if_debug0m('v', mem, ", drawn_comps read"); |
228 | 1.03k | } |
229 | 16.6M | if_debug1m('v', mem, ", retain_any_comps=%d", params.retain_any_comps); |
230 | 16.6M | if_debug1m('v', mem, ", is_fill_color=%d", params.is_fill_color); |
231 | 16.6M | if_debug1m('v', mem, ", drawn_comps=0x%"PRIx64, (uint64_t)params.drawn_comps); |
232 | 16.6M | if_debug1m('v', mem, ", op_state=%d", params.op_state); |
233 | 16.6M | if_debug0m('v', mem, "\n"); |
234 | 16.6M | code = gs_create_overprint(ppct, ¶ms, mem); |
235 | 16.6M | return code < 0 ? code : nbytes; |
236 | 16.6M | } |
237 | | |
238 | | /* |
239 | | * Check for closing compositor. |
240 | | */ |
241 | | static gs_compositor_closing_state |
242 | | c_overprint_is_closing(const gs_composite_t *this, gs_composite_t **ppcte, gx_device *dev) |
243 | 16.6M | { |
244 | 16.6M | return COMP_ENQUEUE; /* maybe extra work, but these actions are fast */ |
245 | 16.6M | } |
246 | | |
247 | | static composite_create_default_compositor_proc(c_overprint_create_default_compositor); |
248 | | static composite_equal_proc(c_overprint_equal); |
249 | | static composite_write_proc(c_overprint_write); |
250 | | static composite_is_closing_proc(c_overprint_is_closing); |
251 | | static composite_read_proc(c_overprint_read); |
252 | | |
253 | | /* methods for the overprint compositor */ |
254 | | const gs_composite_type_t gs_composite_overprint_type = { |
255 | | GX_COMPOSITOR_OVERPRINT, |
256 | | { |
257 | | c_overprint_create_default_compositor, /* procs.create_default_compositor */ |
258 | | c_overprint_equal, /* procs.equal */ |
259 | | c_overprint_write, /* procs.write */ |
260 | | c_overprint_read, /* procs.read */ |
261 | | gx_default_composite_adjust_ctm, |
262 | | c_overprint_is_closing, |
263 | | gx_default_composite_is_friendly, |
264 | | gx_default_composite_clist_write_update,/* procs.composite_clist_write_update */ |
265 | | gx_default_composite_clist_read_update, /* procs.composite_clist_reade_update */ |
266 | | gx_default_composite_get_cropping /* procs.composite_get_cropping */ |
267 | | } /* procs */ |
268 | | }; |
269 | | |
270 | | /* |
271 | | * Create an overprint compositor data structure. |
272 | | * |
273 | | * Currently this just a stub. |
274 | | */ |
275 | | int |
276 | | gs_create_overprint( |
277 | | gs_composite_t ** ppct, |
278 | | const gs_overprint_params_t * pparams, |
279 | | gs_memory_t * mem ) |
280 | 16.7M | { |
281 | 16.7M | gs_overprint_t * pct; |
282 | | |
283 | 16.7M | pct = gs_alloc_struct(mem, gs_overprint_t, &st_overprint, |
284 | 16.7M | "gs_create_overprint"); |
285 | 16.7M | if (pct == NULL) |
286 | 0 | return_error(gs_error_VMerror); |
287 | 16.7M | pct->type = &gs_composite_overprint_type; |
288 | 16.7M | pct->id = gs_next_ids(mem, 1); |
289 | 16.7M | pct->params = *pparams; |
290 | 16.7M | pct->idle = false; |
291 | 16.7M | *ppct = (gs_composite_t *)pct; |
292 | 16.7M | return 0; |
293 | 16.7M | } |
294 | | |
295 | | /* |
296 | | * Verify that a compositor data structure is for the overprint compositor. |
297 | | * This is used by the gs_pdf1.4_device (and eventually the PDFWrite |
298 | | * device), which implements overprint and overprint mode directly. |
299 | | */ |
300 | | bool |
301 | | gs_is_overprint_compositor(const gs_composite_t * pct) |
302 | 13.6M | { |
303 | 13.6M | return pct->type == &gs_composite_overprint_type; |
304 | 13.6M | } |
305 | | |
306 | | /* |
307 | | * The overprint device. |
308 | | * |
309 | | * In principle there are two versions of this device: one if the traget |
310 | | * device is separable and linear, the other if it is not. The two have |
311 | | * slightly different data structures, but differ primarily in terms of |
312 | | * the standard set of methods. Because methods are non-static in |
313 | | * GhostScript, we make use of the same data structure and handle the |
314 | | * distinction during initialization. |
315 | | * |
316 | | * The data fields reflect entries in the gs_overprint_params_t |
317 | | * structure. There is no explicit retain_any_comps field, as the current |
318 | | * setting of this field can be determined by checking the fill_rectangle |
319 | | * method. |
320 | | */ |
321 | | typedef struct overprint_device_s { |
322 | | gx_device_forward_common; |
323 | | |
324 | | /* |
325 | | * The set of components to be drawn. This field is used only if the |
326 | | * target color space is not separable and linear. It is also used |
327 | | * for the devn color values since we may need more than 8 components |
328 | | */ |
329 | | OP_FS_STATE op_state; /* used to select drawn_comps, fill or stroke */ |
330 | | gx_color_index drawn_comps_fill; |
331 | | gx_color_index drawn_comps_stroke; /* pparams->is_fill_color determines which to set */ |
332 | | bool retain_none_stroke; /* These are used to know when we can set the procs to forward */ |
333 | | bool retain_none_fill; |
334 | | |
335 | | /* |
336 | | * The mask of gx_color_index bits to be retained during a drawing |
337 | | * operation. A bit in this mask is 1 if the corresponding bit or |
338 | | * the color index is to be retained; otherwise it is 0. |
339 | | * |
340 | | * The "non-drawn" region of the drawing gx_color_index is assumed |
341 | | * to have the value zero, so for a separable and linear color |
342 | | * encoding, the per-pixel drawing operation is: |
343 | | * |
344 | | * output = (output & retain_mask) | src |
345 | | * |
346 | | * (For the fully general case, replace src by (src & ~retain_mask).) |
347 | | * Because of byte-alignment, byte-order and performance consideration, |
348 | | * the actually implement operation may be more complex, but this does |
349 | | * not change the overall effect. |
350 | | * |
351 | | * The actual value of retain_mask will be byte swap if this is |
352 | | * required. It will be required if depth > 8 and the host processor |
353 | | * is little-endian. |
354 | | */ |
355 | | gx_color_index retain_mask_fill; |
356 | | gx_color_index retain_mask_stroke; |
357 | | |
358 | | bool copy_alpha_hl; |
359 | | |
360 | | /* We hold 3 sets of device procedures here. These are initialised from |
361 | | * the equivalently named globals when the device is created, but are |
362 | | * then used from here as we fiddle with them. This ensures that the |
363 | | * globals are only ever read, and as such are safe in multithreaded |
364 | | * environments. */ |
365 | | gx_device_procs generic_overprint_procs; |
366 | | gx_device_procs no_overprint_procs; |
367 | | gx_device_procs sep_overprint_procs; |
368 | | |
369 | | /* Due to the setting of stroke and fill overprint we can get in |
370 | | a situation where one makes the device idle. We need to know |
371 | | if that is the case when doing a compositor push even when |
372 | | no parameters have changed */ |
373 | | bool is_idle; |
374 | | |
375 | | } overprint_device_t; |
376 | | |
377 | | gs_private_st_suffix_add0_final( st_overprint_device_t, |
378 | | overprint_device_t, |
379 | | "overprint_device_t", |
380 | | overprint_device_t_enum_ptrs, |
381 | | overprint_device_t_reloc_ptrs, |
382 | | gx_device_finalize, |
383 | | st_device_forward); |
384 | | |
385 | | /* |
386 | | * In the default (overprint false) case, the overprint device is almost |
387 | | * a pure forwarding device: only the open_device and composite |
388 | | * methods are not pure-forwarding methods. The |
389 | | * gx_device_foward_fill_in_procs procedure does not fill in all of the |
390 | | * necessary procedures, so some of them are provided explicitly below. |
391 | | * The put_params procedure also requires a small modification, so that |
392 | | * the open/close state of this device always reflects that of its |
393 | | * target. |
394 | | * |
395 | | * This and other method arrays are not declared const so that they may |
396 | | * be initialized once via gx_device_forward_fill_in_procs. They are |
397 | | * constant once this initialization is complete. |
398 | | */ |
399 | | static dev_proc_open_device(overprint_open_device); |
400 | | static dev_proc_put_params(overprint_put_params); |
401 | | static dev_proc_get_page_device(overprint_get_page_device); |
402 | | static dev_proc_composite(overprint_composite); |
403 | | static dev_proc_get_color_comp_index(overprint_get_color_comp_index); |
404 | | static dev_proc_fill_stroke_path(overprint_fill_stroke_path); |
405 | | static dev_proc_fill_path(overprint_fill_path); |
406 | | static dev_proc_stroke_path(overprint_stroke_path); |
407 | | static dev_proc_text_begin(overprint_text_begin); |
408 | | static dev_proc_dev_spec_op(overprint_dev_spec_op); |
409 | | |
410 | | static void |
411 | | nooverprint_initialize_device_procs(gx_device *dev) |
412 | 0 | { |
413 | 0 | set_dev_proc(dev, open_device, overprint_open_device); |
414 | 0 | set_dev_proc(dev, fill_rectangle, gx_forward_fill_rectangle); |
415 | 0 | set_dev_proc(dev, copy_mono, gx_forward_copy_mono); |
416 | 0 | set_dev_proc(dev, copy_color, gx_forward_copy_color); |
417 | 0 | set_dev_proc(dev, put_params, overprint_put_params); |
418 | 0 | set_dev_proc(dev, get_page_device, overprint_get_page_device); |
419 | 0 | set_dev_proc(dev, strip_tile_rectangle, gx_forward_strip_tile_rectangle); |
420 | 0 | set_dev_proc(dev, composite, overprint_composite); |
421 | 0 | set_dev_proc(dev, get_color_comp_index, overprint_get_color_comp_index); |
422 | 0 | set_dev_proc(dev, fillpage, gx_forward_fillpage); |
423 | 0 | set_dev_proc(dev, dev_spec_op, overprint_dev_spec_op); |
424 | 0 | set_dev_proc(dev, copy_planes, gx_forward_copy_planes); |
425 | 0 | set_dev_proc(dev, copy_alpha_hl_color, gx_forward_copy_alpha_hl_color); |
426 | 0 | set_dev_proc(dev, fill_stroke_path, gx_forward_fill_stroke_path); |
427 | 0 | set_dev_proc(dev, lock_pattern, gx_forward_lock_pattern); |
428 | 0 | } |
429 | | |
430 | | /* |
431 | | * If overprint is set, the high and mid-level rendering methods are |
432 | | * replaced by the default routines. The low-level color rendering methods |
433 | | * are replaced with one of two sets of functions, depending on whether or |
434 | | * not the target device has a separable and linear color encoding. |
435 | | * |
436 | | * 1. If the target device does not have a separable and linear |
437 | | * encoding, an overprint-specific fill_rectangle method is used, |
438 | | * and the default methods are used for all other low-level rendering |
439 | | * methods. There is no way to achieve good rendering performance |
440 | | * when overprint is true and the color encoding is not separable |
441 | | * and linear, so there is little reason to use more elaborate |
442 | | * methods int this case. |
443 | | * |
444 | | * 2. If the target device does have a separable and linear color |
445 | | * model, at least the fill_rectangle method and potentially other |
446 | | * methods will be replaced by overprint-specific methods. Those |
447 | | * methods not replaced will have their default values. The number |
448 | | * of methods replaced is dependent on the desired level of |
449 | | * performance: the more methods, the better the performance. |
450 | | * |
451 | | * Note that certain procedures, such as copy_alpha and copy_rop, |
452 | | * are likely to always be given their default values, as the concepts |
453 | | * of alpha-compositing and raster operations are not compatible in |
454 | | * a strict sense. |
455 | | */ |
456 | | static dev_proc_fill_rectangle(overprint_generic_fill_rectangle); |
457 | | static dev_proc_fill_rectangle(overprint_sep_fill_rectangle); |
458 | | static dev_proc_fill_rectangle_hl_color(overprint_fill_rectangle_hl_color); |
459 | | static dev_proc_copy_planes(overprint_copy_planes); |
460 | | static dev_proc_copy_alpha_hl_color(overprint_copy_alpha_hl_color); |
461 | | |
462 | | /* other low-level overprint_sep_* rendering methods prototypes go here */ |
463 | | |
464 | | static void |
465 | | generic_overprint_initialize_device_procs(gx_device *dev) |
466 | 0 | { |
467 | | /* Note that we set lots of things to 'default' here. You can't |
468 | | * omit them, because the caller for this particular initialization |
469 | | * proc fills them in with 'forward' ones, rather than 'default' |
470 | | * ones, and that doesn't work. Maybe look into this in future. */ |
471 | 0 | set_dev_proc(dev, open_device, overprint_open_device); |
472 | 0 | set_dev_proc(dev, fill_rectangle, overprint_generic_fill_rectangle); |
473 | 0 | set_dev_proc(dev, copy_mono, gx_default_copy_mono); |
474 | 0 | set_dev_proc(dev, copy_color, gx_default_copy_color); |
475 | 0 | set_dev_proc(dev, put_params, overprint_put_params); |
476 | 0 | set_dev_proc(dev, get_page_device, overprint_get_page_device); |
477 | 0 | set_dev_proc(dev, copy_alpha, gx_default_copy_alpha); |
478 | 0 | set_dev_proc(dev, fill_path, overprint_fill_path); |
479 | 0 | set_dev_proc(dev, stroke_path, overprint_stroke_path); |
480 | 0 | set_dev_proc(dev, fill_mask, gx_default_fill_mask); |
481 | 0 | set_dev_proc(dev, fill_trapezoid, gx_default_fill_trapezoid); |
482 | 0 | set_dev_proc(dev, fill_parallelogram, gx_default_fill_parallelogram); |
483 | 0 | set_dev_proc(dev, fill_triangle, gx_default_fill_triangle); |
484 | 0 | set_dev_proc(dev, draw_thin_line, gx_default_draw_thin_line); |
485 | 0 | set_dev_proc(dev, strip_tile_rectangle, gx_default_strip_tile_rectangle); |
486 | 0 | set_dev_proc(dev, strip_copy_rop2, gx_default_strip_copy_rop2); |
487 | 0 | set_dev_proc(dev, begin_typed_image, gx_default_begin_typed_image); |
488 | 0 | set_dev_proc(dev, composite, overprint_composite); |
489 | 0 | set_dev_proc(dev, text_begin, overprint_text_begin); |
490 | 0 | set_dev_proc(dev, get_color_comp_index, overprint_get_color_comp_index); |
491 | 0 | set_dev_proc(dev, fill_rectangle_hl_color, overprint_fill_rectangle_hl_color); |
492 | 0 | set_dev_proc(dev, dev_spec_op, overprint_dev_spec_op); |
493 | 0 | set_dev_proc(dev, copy_planes, gx_forward_copy_planes); |
494 | 0 | set_dev_proc(dev, copy_alpha_hl_color, dev->num_planar_planes ? |
495 | 0 | overprint_copy_alpha_hl_color : |
496 | 0 | gx_forward_copy_alpha_hl_color); |
497 | 0 | set_dev_proc(dev, fill_stroke_path, overprint_fill_stroke_path); |
498 | 0 | } |
499 | | |
500 | | static void |
501 | | sep_overprint_initialize_device_procs(gx_device *dev) |
502 | 0 | { |
503 | | /* Note that we set lots of things to 'default' here. You can't |
504 | | * omit them, because the caller for this particular initialization |
505 | | * proc fills them in with 'forward' ones, rather than 'default' |
506 | | * ones, and that doesn't work. Maybe look into this in future. */ |
507 | 0 | set_dev_proc(dev, open_device, overprint_open_device); |
508 | 0 | set_dev_proc(dev, fill_rectangle, overprint_sep_fill_rectangle); |
509 | 0 | set_dev_proc(dev, copy_mono, gx_default_copy_mono); |
510 | 0 | set_dev_proc(dev, copy_color, gx_default_copy_color); |
511 | 0 | set_dev_proc(dev, put_params, overprint_put_params); |
512 | 0 | set_dev_proc(dev, get_page_device, overprint_get_page_device); |
513 | 0 | set_dev_proc(dev, copy_alpha, gx_default_copy_alpha); |
514 | 0 | set_dev_proc(dev, fill_path, overprint_fill_path); |
515 | 0 | set_dev_proc(dev, stroke_path, overprint_stroke_path); |
516 | 0 | set_dev_proc(dev, fill_mask, gx_default_fill_mask); |
517 | 0 | set_dev_proc(dev, fill_trapezoid, gx_default_fill_trapezoid); |
518 | 0 | set_dev_proc(dev, fill_parallelogram, gx_default_fill_parallelogram); |
519 | 0 | set_dev_proc(dev, fill_triangle, gx_default_fill_triangle); |
520 | 0 | set_dev_proc(dev, draw_thin_line, gx_default_draw_thin_line); |
521 | 0 | set_dev_proc(dev, strip_tile_rectangle, gx_default_strip_tile_rectangle); |
522 | 0 | set_dev_proc(dev, strip_copy_rop2, gx_default_strip_copy_rop2); |
523 | 0 | set_dev_proc(dev, begin_typed_image, gx_default_begin_typed_image); |
524 | 0 | set_dev_proc(dev, composite, overprint_composite); |
525 | 0 | set_dev_proc(dev, text_begin, overprint_text_begin); |
526 | 0 | set_dev_proc(dev, get_color_comp_index, overprint_get_color_comp_index); |
527 | 0 | set_dev_proc(dev, fill_rectangle_hl_color, overprint_fill_rectangle_hl_color); |
528 | 0 | set_dev_proc(dev, dev_spec_op, overprint_dev_spec_op); |
529 | 0 | set_dev_proc(dev, copy_planes, overprint_copy_planes); |
530 | 0 | set_dev_proc(dev, copy_alpha_hl_color, overprint_copy_alpha_hl_color); |
531 | 0 | set_dev_proc(dev, fill_stroke_path, overprint_fill_stroke_path); |
532 | 0 | } |
533 | | |
534 | | /* |
535 | | * The prototype for the overprint device does not provide much |
536 | | * information; it exists primarily to facilitate use gx_init_device |
537 | | * and sundry other device utility routines. |
538 | | */ |
539 | | const overprint_device_t gs_overprint_device = { |
540 | | std_device_std_body_open( overprint_device_t, /* device type */ |
541 | | NULL, /* initialize */ |
542 | | "overprint_device", /* dname */ |
543 | | 0, 0, /* width, height */ |
544 | | 1, 1 ), /* HWResolution */ |
545 | | { 0 } /* procs */ |
546 | | }; |
547 | | |
548 | | /* |
549 | | * Utility to reorder bytes in a color or mask based on the endianness of |
550 | | * the current device. This is required on little-endian machines if the |
551 | | * depth is larger 8. The resulting value is also replicated to fill the |
552 | | * entire gx_color_index if the depth is a divisor of the color index |
553 | | * size. If this is not the case, the result will be in the low-order |
554 | | * bytes of the color index. |
555 | | * |
556 | | * Though this process can be handled in full generality, the code below |
557 | | * takes advantage of the fact that depths that are > 8 must be a multiple |
558 | | * of 8 and <= 64 |
559 | | */ |
560 | | #if !ARCH_IS_BIG_ENDIAN |
561 | | |
562 | | static gx_color_index |
563 | | swap_color_index(int depth, gx_color_index color) |
564 | 0 | { |
565 | 0 | int shift = depth - 8; |
566 | 0 | gx_color_index mask = 0xff; |
567 | |
|
568 | 0 | color = ((color >> shift) & mask) |
569 | 0 | | ((color & mask) << shift) |
570 | 0 | | (color & ~((mask << shift) | mask)); |
571 | 0 | if (depth > 24) { |
572 | 0 | shift -= 16; |
573 | 0 | mask <<= 8; |
574 | 0 | color = ((color >> shift) & mask) |
575 | 0 | | ((color & mask) << shift) |
576 | 0 | | (color & ~((mask << shift) | mask)); |
577 | |
|
578 | 0 | if (depth > 40) { |
579 | 0 | shift -= 16; |
580 | 0 | mask <<= 8; |
581 | 0 | color = ((color >> shift) & mask) |
582 | 0 | | ((color & mask) << shift) |
583 | 0 | | (color & ~((mask << shift) | mask)); |
584 | |
|
585 | 0 | if (depth > 56) { |
586 | 0 | shift -= 16; |
587 | 0 | mask <<= 8; |
588 | 0 | color = ((color >> shift) & mask) |
589 | 0 | | ((color & mask) << shift) |
590 | 0 | | (color & ~((mask << shift) | mask)); |
591 | 0 | } |
592 | 0 | } |
593 | 0 | } |
594 | |
|
595 | 0 | return color; |
596 | 0 | } |
597 | | |
598 | | #endif /* !ARCH_IS_BIG_ENDIAN */ |
599 | | |
600 | | /* |
601 | | * Update the retain_mask field to reflect the information in the |
602 | | * drawn_comps field. This is useful only if the device color model |
603 | | * is separable. |
604 | | */ |
605 | | static void |
606 | | set_retain_mask(overprint_device_t * opdev, bool is_fill_color) |
607 | 0 | { |
608 | 0 | uchar i, ncomps = opdev->color_info.num_components; |
609 | 0 | gx_color_index drawn_comps = is_fill_color ? |
610 | 0 | opdev->drawn_comps_fill : opdev->drawn_comps_stroke; |
611 | 0 | gx_color_index retain_mask = 0; |
612 | 0 | #if !ARCH_IS_BIG_ENDIAN |
613 | 0 | int depth = opdev->color_info.depth; |
614 | 0 | #endif |
615 | |
|
616 | 0 | for (i = 0; i < ncomps; i++, drawn_comps >>= 1) { |
617 | 0 | if ((drawn_comps & 0x1) == 0) |
618 | 0 | retain_mask |= opdev->color_info.comp_mask[i]; |
619 | 0 | } |
620 | 0 | #if !ARCH_IS_BIG_ENDIAN |
621 | 0 | if (depth > 8) |
622 | 0 | retain_mask = swap_color_index(depth, retain_mask); |
623 | 0 | #endif |
624 | 0 | if (is_fill_color) |
625 | 0 | opdev->retain_mask_fill = retain_mask; |
626 | 0 | else |
627 | 0 | opdev->retain_mask_stroke = retain_mask; |
628 | 0 | } |
629 | | |
630 | | /* |
631 | | * Update the overprint-specific device parameters. |
632 | | * |
633 | | * If spot colors are to be retain, the set of process (non-spot) colors is |
634 | | * determined by mapping through the standard color spaces and check which |
635 | | * components assume non-zero values. |
636 | | */ |
637 | | static int |
638 | | update_overprint_params( |
639 | | overprint_device_t* opdev, |
640 | | const gs_overprint_params_t* pparams) |
641 | 0 | { |
642 | | /* We can only turn off the overprint compositor if |
643 | | BOTH the stroke and fill op are false. Otherwise |
644 | | we will turn it off when setting one and turn on |
645 | | when setting the other (or vice versa) */ |
646 | | |
647 | | /* Note if pparams->op_state is not NONE, set the opdev fill/stroke state. */ |
648 | 0 | if (pparams->op_state != OP_STATE_NONE) { |
649 | 0 | opdev->op_state = pparams->op_state; |
650 | 0 | return 0; |
651 | 0 | } |
652 | | |
653 | 0 | if_debug4m(gs_debug_flag_overprint, opdev->memory, |
654 | 0 | "[overprint] update_overprint_params enter. retain_any_comps = %d, idle = %d, drawn_comps = 0x%"PRIx64", is_fill_color = %d\n", |
655 | 0 | pparams->retain_any_comps, pparams->idle, |
656 | 0 | (uint64_t)pparams->drawn_comps, pparams->is_fill_color); |
657 | | |
658 | | /* check if overprint is to be turned off */ |
659 | 0 | if (!pparams->retain_any_comps || pparams->idle) { |
660 | 0 | if (pparams->is_fill_color) { |
661 | 0 | opdev->retain_none_fill = true; |
662 | 0 | opdev->drawn_comps_fill = |
663 | 0 | ((gx_color_index)1 << (opdev->color_info.num_components)) - (gx_color_index)1; |
664 | 0 | } else { |
665 | 0 | opdev->retain_none_stroke = true; |
666 | 0 | opdev->drawn_comps_stroke = |
667 | 0 | ((gx_color_index)1 << (opdev->color_info.num_components)) - (gx_color_index)1; |
668 | 0 | } |
669 | | |
670 | | /* Set to forward only if both stroke and fill are not retaining any |
671 | | and if we have not already set it to forward */ |
672 | 0 | if (dev_proc(opdev, fill_rectangle) != gx_forward_fill_rectangle && |
673 | 0 | opdev->retain_none_fill && opdev->retain_none_stroke) { |
674 | 0 | memcpy(&opdev->procs, |
675 | 0 | &opdev->no_overprint_procs, |
676 | 0 | sizeof(opdev->no_overprint_procs)); |
677 | 0 | opdev->is_idle = true; |
678 | 0 | if_debug0m(gs_debug_flag_overprint, opdev->memory, |
679 | 0 | "[overprint] overprint fill_rectangle set to forward\n"); |
680 | 0 | } |
681 | |
|
682 | 0 | if_debug4m(gs_debug_flag_overprint, opdev->memory, |
683 | 0 | "[overprint] update_overprint_params exit. drawn_comps_fill = 0x%"PRIx64", drawn_comps_stroke = 0x%"PRIx64", retain_none_fill = %d, retain_none_stroke = %d \n", |
684 | 0 | (uint64_t)opdev->drawn_comps_fill, |
685 | 0 | (uint64_t)opdev->drawn_comps_stroke, |
686 | 0 | opdev->retain_none_fill, opdev->retain_none_stroke); |
687 | 0 | return 0; |
688 | 0 | } |
689 | | |
690 | 0 | opdev->is_idle = false; |
691 | | /* set the procedures according to the color model */ |
692 | 0 | if (colors_are_separable_and_linear(&opdev->color_info)) { |
693 | 0 | memcpy(&opdev->procs, &opdev->sep_overprint_procs, |
694 | 0 | sizeof(opdev->sep_overprint_procs)); |
695 | 0 | if_debug0m(gs_debug_flag_overprint, opdev->memory, |
696 | 0 | "[overprint] overprint procs set to sep\n"); |
697 | 0 | } else { |
698 | 0 | memcpy(&opdev->procs, &opdev->generic_overprint_procs, |
699 | 0 | sizeof(opdev->generic_overprint_procs)); |
700 | 0 | if_debug0m(gs_debug_flag_overprint, opdev->memory, |
701 | 0 | "[overprint] overprint procs set to generic\n"); |
702 | 0 | } |
703 | |
|
704 | 0 | if (pparams->is_fill_color) { |
705 | 0 | opdev->retain_none_fill = false; |
706 | 0 | opdev->drawn_comps_fill = pparams->drawn_comps; |
707 | 0 | } else { |
708 | 0 | opdev->retain_none_stroke = false; |
709 | 0 | opdev->drawn_comps_stroke = pparams->drawn_comps; |
710 | 0 | } |
711 | |
|
712 | 0 | if_debug4m(gs_debug_flag_overprint, opdev->memory, |
713 | 0 | "[overprint] update_overprint_params exit. drawn_comps_fill = 0x%"PRIx64", drawn_comps_stroke = 0x%"PRIx64", retain_none_fill = %d, retain_none_stroke = %d \n", |
714 | 0 | (uint64_t)opdev->drawn_comps_fill, |
715 | 0 | (uint64_t)opdev->drawn_comps_stroke, |
716 | 0 | opdev->retain_none_fill, opdev->retain_none_stroke); |
717 | | |
718 | | /* if appropriate, update the retain_mask field */ |
719 | 0 | if (colors_are_separable_and_linear(&opdev->color_info)) |
720 | 0 | set_retain_mask(opdev, pparams->is_fill_color); |
721 | |
|
722 | 0 | return 0; |
723 | 0 | } |
724 | | |
725 | | /* |
726 | | * The open_device method for the overprint device is about as close to |
727 | | * a pure "forwarding" open_device operation as is possible. Its only |
728 | | * significant function is to ensure that the is_open field of the |
729 | | * overprint device matches that of the target device. |
730 | | * |
731 | | * We assume this procedure is called only if the device is not already |
732 | | * open, and that gs_opendevice will take care of the is_open flag. |
733 | | */ |
734 | | static int |
735 | | overprint_open_device(gx_device * dev) |
736 | 0 | { |
737 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
738 | 0 | gx_device * tdev = opdev->target; |
739 | 0 | int code = 0; |
740 | | |
741 | | /* the overprint device must have a target */ |
742 | 0 | if (tdev == 0) |
743 | 0 | return_error(gs_error_unknownerror); |
744 | 0 | if ((code = gs_opendevice(tdev)) >= 0) { |
745 | 0 | gx_device_copy_params(dev, tdev); |
746 | 0 | opdev->copy_alpha_hl = false; |
747 | 0 | opdev->is_idle = false; |
748 | 0 | } |
749 | 0 | return code; |
750 | 0 | } |
751 | | |
752 | | /* |
753 | | * The put_params method for the overprint device will check if the |
754 | | * target device has closed and, if so, close itself. |
755 | | */ |
756 | | static int |
757 | | overprint_put_params(gx_device * dev, gs_param_list * plist) |
758 | 0 | { |
759 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
760 | 0 | gx_device * tdev = opdev->target; |
761 | 0 | int code = 0; |
762 | |
|
763 | 0 | if (tdev != 0 && (code = dev_proc(tdev, put_params)(tdev, plist)) >= 0) { |
764 | 0 | gx_device_decache_colors(dev); |
765 | 0 | if (!tdev->is_open) |
766 | 0 | code = gs_closedevice(dev); |
767 | 0 | } |
768 | 0 | return code; |
769 | 0 | } |
770 | | |
771 | | /* |
772 | | * If the target device 'auto detects' new spot colors, then it will |
773 | | * change its color_info data. Make sure that we have a current copy. |
774 | | */ |
775 | | int |
776 | | overprint_get_color_comp_index(gx_device * dev, const char * pname, |
777 | | int name_size, int component_type) |
778 | 0 | { |
779 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
780 | 0 | gx_device * tdev = opdev->target; |
781 | 0 | int code; |
782 | |
|
783 | 0 | if (tdev == 0) |
784 | 0 | code = gx_error_get_color_comp_index(dev, pname, |
785 | 0 | name_size, component_type); |
786 | 0 | else { |
787 | 0 | code = dev_proc(tdev, get_color_comp_index)(tdev, pname, |
788 | 0 | name_size, component_type); |
789 | 0 | opdev->color_info = tdev->color_info; |
790 | 0 | } |
791 | 0 | return code; |
792 | 0 | } |
793 | | |
794 | | /* |
795 | | * The overprint device must never be confused with a page device. |
796 | | * Thus, we always forward the request for the page device to the |
797 | | * target, as should all forwarding devices. |
798 | | */ |
799 | | static gx_device * |
800 | | overprint_get_page_device(gx_device * dev) |
801 | 0 | { |
802 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
803 | 0 | gx_device * tdev = opdev->target; |
804 | |
|
805 | 0 | return tdev == 0 ? 0 : dev_proc(tdev, get_page_device)(tdev); |
806 | 0 | } |
807 | | |
808 | | /* |
809 | | * Calling composite on the overprint device just updates the |
810 | | * overprint parameters; no new device is created. |
811 | | */ |
812 | | static int |
813 | | overprint_composite( |
814 | | gx_device * dev, |
815 | | gx_device ** pcdev, |
816 | | const gs_composite_t * pct, |
817 | | gs_gstate * pgs, |
818 | | gs_memory_t * memory, |
819 | | gx_device * cdev) |
820 | 0 | { |
821 | 0 | if (pct->type != &gs_composite_overprint_type) |
822 | 0 | return gx_default_composite(dev, pcdev, pct, pgs, memory, cdev); |
823 | 0 | else { |
824 | 0 | gs_overprint_params_t params = ((const gs_overprint_t *)pct)->params; |
825 | 0 | overprint_device_t *opdev = (overprint_device_t *)dev; |
826 | 0 | int code = 0; |
827 | 0 | bool update; |
828 | |
|
829 | 0 | if (params.is_fill_color) |
830 | 0 | update = (params.drawn_comps != opdev->drawn_comps_fill) || |
831 | 0 | ((params.retain_any_comps == 0) != opdev->retain_none_fill); |
832 | 0 | else |
833 | 0 | update = (params.drawn_comps != opdev->drawn_comps_stroke) || |
834 | 0 | ((params.retain_any_comps == 0) != opdev->retain_none_stroke); |
835 | |
|
836 | 0 | params.idle = pct->idle; |
837 | | /* device must already exist, so just update the parameters if settings change */ |
838 | 0 | if_debug6m(gs_debug_flag_overprint, opdev->memory, |
839 | 0 | "[overprint] overprint_composite test for change. params.idle = %d vs. opdev->is_idle = %d \n params.is_fill_color = %d: params.drawn_comps = 0x%"PRIx64" vs. opdev->drawn_comps_fill = 0x%"PRIx64" OR opdev->drawn_comps_stroke = 0x%"PRIx64"\n", |
840 | 0 | params.idle, opdev->is_idle, params.is_fill_color, |
841 | 0 | (uint64_t)params.drawn_comps, |
842 | 0 | (uint64_t)opdev->drawn_comps_fill, |
843 | 0 | (uint64_t)opdev->drawn_comps_stroke); |
844 | |
|
845 | 0 | if (update || params.idle != opdev->is_idle || params.op_state != OP_STATE_NONE) |
846 | 0 | code = update_overprint_params(opdev, ¶ms); |
847 | 0 | if (code >= 0) |
848 | 0 | *pcdev = dev; |
849 | 0 | return code; |
850 | 0 | } |
851 | 0 | } |
852 | | |
853 | | /* |
854 | | * The two rectangle-filling routines (which do the actual work) are just |
855 | | * stubbs for the time being. The actual routines would allocate a buffer, |
856 | | * use get_bits_rectangle to build a buffer of the existing data, modify |
857 | | * the appropriate components, then invoke the copy_color procedure on the |
858 | | * target device. |
859 | | */ |
860 | | static int |
861 | | overprint_generic_fill_rectangle( |
862 | | gx_device * dev, |
863 | | int x, |
864 | | int y, |
865 | | int width, |
866 | | int height, |
867 | | gx_color_index color ) |
868 | 0 | { |
869 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
870 | 0 | gx_device * tdev = opdev->target; |
871 | |
|
872 | 0 | if (tdev == 0) |
873 | 0 | return 0; |
874 | 0 | else { |
875 | |
|
876 | 0 | assert(opdev->op_state != OP_STATE_NONE); |
877 | | |
878 | | /* See if we even need to do any overprinting. We have to maintain |
879 | | the compositor active for fill/stroke cases even if we are only |
880 | | doing a fill or a stroke */ |
881 | 0 | if ((opdev->op_state == OP_STATE_FILL && opdev->retain_none_fill) || |
882 | 0 | (opdev->op_state == OP_STATE_STROKE && opdev->retain_none_stroke)) |
883 | 0 | return (*dev_proc(tdev, fill_rectangle)) (tdev, x, y, width, height, color); |
884 | | |
885 | 0 | return gx_overprint_generic_fill_rectangle(tdev, |
886 | 0 | opdev->op_state == OP_STATE_FILL ? |
887 | 0 | opdev->drawn_comps_fill : opdev->drawn_comps_stroke, |
888 | 0 | x, y, width, height, color, dev->memory); |
889 | 0 | } |
890 | 0 | } |
891 | | |
892 | | static int |
893 | | overprint_copy_alpha_hl_color(gx_device * dev, const byte * data, int data_x, |
894 | | int raster, gx_bitmap_id id, int x, int y, int width, int height, |
895 | | const gx_drawing_color *pdcolor, int depth) |
896 | 0 | { |
897 | | /* copy_alpha_hl_color will end up calling copy_planes which for the |
898 | | copy alpha case we need to make sure we do in a proper overprint |
899 | | fashion. Other calls of copy_alpha for example from the pattern |
900 | | tiling call are not done with overprint control. So we set an |
901 | | appopriate flag so that we know to handle this properly when we |
902 | | get to copy_alpha */ |
903 | |
|
904 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
905 | 0 | int code; |
906 | |
|
907 | 0 | if ((opdev->op_state == OP_STATE_FILL && !opdev->retain_none_fill) || |
908 | 0 | (opdev->op_state == OP_STATE_STROKE && !opdev->retain_none_stroke)) |
909 | 0 | opdev->copy_alpha_hl = true; |
910 | 0 | code = gx_default_copy_alpha_hl_color(dev, data, data_x, raster, id, x, y, |
911 | 0 | width, height, pdcolor, depth); |
912 | 0 | opdev->copy_alpha_hl = false; |
913 | 0 | return code; |
914 | 0 | } |
915 | | |
916 | | /* Currently we really should only be here if the target device is planar |
917 | | AND it supports devn colors AND is 8 bit. This could use a rewrite to |
918 | | make if more efficient but I had to get something in place that would |
919 | | work */ |
920 | | static int |
921 | | overprint_copy_planes(gx_device * dev, const byte * data, int data_x, int raster_in, |
922 | | gx_bitmap_id id, int x, int y, int w, int h, int plane_height) |
923 | 0 | { |
924 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
925 | 0 | gx_device * tdev = opdev->target; |
926 | 0 | byte * gb_buff = 0; |
927 | 0 | gs_get_bits_params_t gb_params; |
928 | 0 | gs_int_rect gb_rect; |
929 | 0 | int code = 0; |
930 | 0 | unsigned int raster; |
931 | 0 | int byte_depth; |
932 | 0 | int depth; |
933 | 0 | uchar num_comps; |
934 | 0 | uchar k,j; |
935 | 0 | gs_memory_t * mem = dev->memory; |
936 | 0 | gx_color_index comps_orig = opdev->op_state == OP_STATE_FILL ? opdev->drawn_comps_fill : opdev->drawn_comps_stroke; |
937 | 0 | byte *curr_data = (byte *) data + data_x; |
938 | 0 | int row, offset; |
939 | |
|
940 | 0 | if (tdev == 0) |
941 | 0 | return 0; |
942 | | |
943 | 0 | if (opdev->copy_alpha_hl) { |
944 | | /* We are coming here via copy_alpha_hl_color due to the use of AA. |
945 | | We will want to handle the overprinting here */ |
946 | |
|
947 | 0 | depth = tdev->color_info.depth; |
948 | 0 | num_comps = tdev->color_info.num_components; |
949 | |
|
950 | 0 | fit_fill(tdev, x, y, w, h); |
951 | 0 | byte_depth = depth / num_comps; |
952 | | |
953 | | /* allocate a buffer for the returned data */ |
954 | 0 | raster = bitmap_raster(w * byte_depth); |
955 | 0 | gb_buff = gs_alloc_bytes(mem, raster * num_comps , "overprint_copy_planes"); |
956 | 0 | if (gb_buff == 0) |
957 | 0 | return gs_note_error(gs_error_VMerror); |
958 | | |
959 | | /* Initialize the get_bits parameters. Here we just get a plane at a time. */ |
960 | 0 | gb_params.options = GB_COLORS_NATIVE |
961 | 0 | | GB_ALPHA_NONE |
962 | 0 | | GB_DEPTH_ALL |
963 | 0 | | GB_PACKING_PLANAR |
964 | 0 | | GB_RETURN_COPY |
965 | 0 | | GB_ALIGN_STANDARD |
966 | 0 | | GB_OFFSET_0 |
967 | 0 | | GB_RASTER_STANDARD |
968 | 0 | | GB_SELECT_PLANES; |
969 | |
|
970 | 0 | gb_params.x_offset = 0; |
971 | 0 | gb_params.raster = raster; |
972 | 0 | gb_rect.p.x = x; |
973 | 0 | gb_rect.q.x = x + w; |
974 | | |
975 | | /* step through the height */ |
976 | 0 | row = 0; |
977 | 0 | while (h-- > 0 && code >= 0) { |
978 | 0 | gx_color_index comps = comps_orig; |
979 | 0 | gb_rect.p.y = y++; |
980 | 0 | gb_rect.q.y = y; |
981 | 0 | offset = row * raster_in + data_x; |
982 | 0 | row++; |
983 | 0 | curr_data = (byte *) data + offset; /* start us at the start of row */ |
984 | | /* And now through each plane */ |
985 | 0 | for (k = 0; k < tdev->color_info.num_components; k++) { |
986 | | /* First set the params to zero for all planes except the one we want */ |
987 | 0 | for (j = 0; j < tdev->color_info.num_components; j++) |
988 | 0 | gb_params.data[j] = 0; |
989 | 0 | gb_params.data[k] = gb_buff + k * raster; |
990 | 0 | code = dev_proc(tdev, get_bits_rectangle) (tdev, &gb_rect, |
991 | 0 | &gb_params); |
992 | 0 | if (code < 0) { |
993 | 0 | gs_free_object(mem, gb_buff, "overprint_copy_planes" ); |
994 | 0 | return code; |
995 | 0 | } |
996 | | /* Skip the plane if this component is not to be drawn. If |
997 | | its the one that we want to draw, replace it with our |
998 | | buffer data */ |
999 | 0 | if ((comps & 0x01) == 1) { |
1000 | 0 | memcpy(gb_params.data[k], curr_data, w); |
1001 | 0 | } |
1002 | | /* Next plane */ |
1003 | 0 | curr_data += plane_height * raster_in; |
1004 | 0 | comps >>= 1; |
1005 | 0 | } |
1006 | 0 | code = dev_proc(tdev, copy_planes)(tdev, gb_buff, 0, raster, |
1007 | 0 | gs_no_bitmap_id, x, y - 1, w, 1, 1); |
1008 | 0 | } |
1009 | 0 | gs_free_object(mem, gb_buff, "overprint_copy_planes" ); |
1010 | 0 | return code; |
1011 | 0 | } else { |
1012 | | /* This is not a case where copy planes should be doing overprinting. |
1013 | | For example, if we came here via the pattern tiling code, so just |
1014 | | pass this along to the target */ |
1015 | 0 | return (*dev_proc(tdev, copy_planes)) (tdev, data, data_x, raster_in, id, |
1016 | 0 | x, y, w, h, plane_height); |
1017 | 0 | } |
1018 | 0 | } |
1019 | | static void |
1020 | | my_memset16_be(uint16_t *dst, uint16_t col, size_t w) |
1021 | 0 | { |
1022 | 0 | #if !ARCH_IS_BIG_ENDIAN |
1023 | 0 | col = (col>>8) | (col<<8); |
1024 | 0 | #endif |
1025 | 0 | while (w--) { |
1026 | 0 | *dst++ = col; |
1027 | 0 | } |
1028 | 0 | } |
1029 | | |
1030 | | /* Currently we really should only be here if the target device is planar |
1031 | | AND it supports devn colors AND is 8 or 16 bit. */ |
1032 | | static int |
1033 | | overprint_fill_rectangle_hl_color(gx_device *dev, |
1034 | | const gs_fixed_rect *rect, const gs_gstate *pgs, |
1035 | | const gx_drawing_color *pdcolor, const gx_clip_path *pcpath) |
1036 | 0 | { |
1037 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
1038 | 0 | gx_device * tdev = opdev->target; |
1039 | 0 | byte * gb_buff = 0; |
1040 | 0 | gs_get_bits_params_t gb_params; |
1041 | 0 | gs_int_rect gb_rect; |
1042 | 0 | int code = 0; |
1043 | 0 | unsigned int raster; |
1044 | 0 | int byte_depth; |
1045 | 0 | int depth; |
1046 | 0 | uchar num_comps; |
1047 | 0 | int x, y, w, h; |
1048 | 0 | uchar k, j; |
1049 | 0 | gs_memory_t * mem = dev->memory; |
1050 | 0 | gx_color_index comps, comps2; |
1051 | 0 | gx_color_index mask; |
1052 | 0 | int shift; |
1053 | 0 | int deep; |
1054 | |
|
1055 | 0 | if (tdev == 0) |
1056 | 0 | return 0; |
1057 | | |
1058 | 0 | assert(opdev->op_state != OP_STATE_NONE); |
1059 | | |
1060 | | /* See if we even need to do any overprinting. We have to maintain |
1061 | | the compositor active for fill/stroke cases even if we are only |
1062 | | doing a fill or a stroke */ |
1063 | 0 | if ((opdev->op_state == OP_STATE_FILL && opdev->retain_none_fill) || |
1064 | 0 | (opdev->op_state == OP_STATE_STROKE && opdev->retain_none_stroke)) |
1065 | 0 | return (*dev_proc(tdev, fill_rectangle_hl_color)) (tdev, rect, pgs, pdcolor, pcpath); |
1066 | | |
1067 | 0 | depth = tdev->color_info.depth; |
1068 | 0 | num_comps = tdev->color_info.num_components; |
1069 | |
|
1070 | 0 | x = fixed2int(rect->p.x); |
1071 | 0 | y = fixed2int(rect->p.y); |
1072 | 0 | w = fixed2int(rect->q.x) - x; |
1073 | 0 | h = fixed2int(rect->q.y) - y; |
1074 | |
|
1075 | 0 | fit_fill(tdev, x, y, w, h); |
1076 | 0 | byte_depth = depth / num_comps; |
1077 | 0 | mask = ((gx_color_index)1 << byte_depth) - 1; |
1078 | 0 | shift = 16 - byte_depth; |
1079 | 0 | deep = byte_depth == 16; |
1080 | | |
1081 | | /* allocate a buffer for the returned data */ |
1082 | 0 | raster = bitmap_raster(w * byte_depth); |
1083 | 0 | gb_buff = gs_alloc_bytes(mem, raster * num_comps , "overprint_fill_rectangle_hl_color"); |
1084 | 0 | if (gb_buff == 0) |
1085 | 0 | return gs_note_error(gs_error_VMerror); |
1086 | | |
1087 | | /* Initialize the get_bits parameters. Here we just get a plane at a time. */ |
1088 | 0 | gb_params.options = GB_COLORS_NATIVE |
1089 | 0 | | GB_ALPHA_NONE |
1090 | 0 | | GB_DEPTH_ALL |
1091 | 0 | | GB_PACKING_PLANAR |
1092 | 0 | | GB_RETURN_COPY |
1093 | 0 | | GB_ALIGN_STANDARD |
1094 | 0 | | GB_OFFSET_0 |
1095 | 0 | | GB_RASTER_STANDARD |
1096 | 0 | | GB_SELECT_PLANES; |
1097 | |
|
1098 | 0 | gb_params.x_offset = 0; /* for consistency */ |
1099 | 0 | gb_params.raster = raster; |
1100 | 0 | gb_rect.p.x = x; |
1101 | 0 | gb_rect.q.x = x + w; |
1102 | | |
1103 | | /* step through the height */ |
1104 | 0 | comps2 = opdev->op_state == OP_STATE_FILL ? opdev->drawn_comps_fill : opdev->drawn_comps_stroke; |
1105 | | /* If we are dealing with tags, and we are writing ANY components, then we want to write the |
1106 | | * tag plane too. */ |
1107 | 0 | if (comps2 != 0 && device_encodes_tags(dev)) { |
1108 | | /* Careful to allow for gx_color_index being larger than an int here! */ |
1109 | 0 | comps2 |= ((gx_color_index)1)<<(tdev->color_info.num_components-1); |
1110 | 0 | } |
1111 | 0 | while (h-- > 0 && code >= 0) { |
1112 | 0 | gb_rect.p.y = y++; |
1113 | 0 | gb_rect.q.y = y; |
1114 | 0 | comps = comps2; |
1115 | | /* And now through each plane */ |
1116 | 0 | for (k = 0; k < tdev->color_info.num_components; k++) { |
1117 | | /* First set the params to zero for all planes except the one we want */ |
1118 | 0 | for (j = 0; j < tdev->color_info.num_components; j++) |
1119 | 0 | gb_params.data[j] = 0; |
1120 | 0 | gb_params.data[k] = gb_buff + k * raster; |
1121 | 0 | code = dev_proc(tdev, get_bits_rectangle) (tdev, &gb_rect, |
1122 | 0 | &gb_params); |
1123 | 0 | if (code < 0) { |
1124 | 0 | gs_free_object(mem, gb_buff, |
1125 | 0 | "overprint_fill_rectangle_hl_color" ); |
1126 | 0 | return code; |
1127 | 0 | } |
1128 | | /* Skip the plane if this component is not to be drawn. We have |
1129 | | to do a get bits for each plane due to the fact that we have |
1130 | | to do a copy_planes at the end. If we had a copy_plane |
1131 | | operation we would just get the ones needed and set those. */ |
1132 | 0 | if ((comps & 0x01) == 1) { |
1133 | | /* Not sure if a loop or a memset is better here */ |
1134 | 0 | if (deep) |
1135 | 0 | my_memset16_be((uint16_t *)(gb_params.data[k]), |
1136 | 0 | pdcolor->colors.devn.values[k], w); |
1137 | 0 | else |
1138 | 0 | memset(gb_params.data[k], |
1139 | 0 | ((pdcolor->colors.devn.values[k]) >> shift & mask), w); |
1140 | 0 | } |
1141 | 0 | comps >>= 1; |
1142 | 0 | } |
1143 | 0 | code = dev_proc(tdev, copy_planes)(tdev, gb_buff, 0, raster, |
1144 | 0 | gs_no_bitmap_id, x, y - 1, w, 1, 1); |
1145 | 0 | } |
1146 | 0 | gs_free_object(mem, gb_buff, |
1147 | 0 | "overprint_fill_rectangle_hl_color" ); |
1148 | 0 | return code; |
1149 | 0 | } |
1150 | | |
1151 | | static int |
1152 | | overprint_sep_fill_rectangle( |
1153 | | gx_device * dev, |
1154 | | int x, |
1155 | | int y, |
1156 | | int width, |
1157 | | int height, |
1158 | | gx_color_index color ) |
1159 | 0 | { |
1160 | 0 | overprint_device_t * opdev = (overprint_device_t *)dev; |
1161 | 0 | gx_device * tdev = opdev->target; |
1162 | |
|
1163 | 0 | if (tdev == 0) |
1164 | 0 | return 0; |
1165 | 0 | else { |
1166 | 0 | int depth = tdev->color_info.depth; |
1167 | |
|
1168 | 0 | assert(opdev->op_state != OP_STATE_NONE); |
1169 | | |
1170 | | /* See if we even need to do any overprinting. We have to maintain |
1171 | | the compositor active for fill/stroke cases even if we are only |
1172 | | doing a fill or a stroke */ |
1173 | 0 | if ((opdev->op_state == OP_STATE_FILL && opdev->retain_none_fill) || |
1174 | 0 | (opdev->op_state == OP_STATE_STROKE && opdev->retain_none_stroke)) |
1175 | 0 | return (*dev_proc(tdev, fill_rectangle)) (tdev, x, y, width, height, color); |
1176 | | |
1177 | | /* |
1178 | | * Swap the color index into the order required by a byte-oriented |
1179 | | * bitmap. This is required only for littl-endian processors, and |
1180 | | * then only if the depth > 8. |
1181 | | */ |
1182 | 0 | #if !ARCH_IS_BIG_ENDIAN |
1183 | 0 | if (depth > 8) |
1184 | 0 | color = swap_color_index(depth, color); |
1185 | 0 | #endif |
1186 | | |
1187 | | /* |
1188 | | * We can handle rectangle filling via bits_fill_rectangle_masked |
1189 | | * if the depth is a divisor of 8 * sizeof(mono_fill_chunk). The |
1190 | | * non-masked fill_rectangle code uses a byte-oriented routine |
1191 | | * if depth > 8, but there is not much advantage to doing so if |
1192 | | * masking is required. |
1193 | | * |
1194 | | * Directly testing (8 * sizeof(mono_fill_chunk)) % depth is |
1195 | | * potentially expensive, since many rectangles are small. We |
1196 | | * can avoid the modulus operation by noting that |
1197 | | * 8 * sizeof(mono_fill_chunk) will be a power of 2, and so |
1198 | | * we need only check that depth is a power of 2 and |
1199 | | * depth < 8 * sizeof(mono_fill_chunk). |
1200 | | */ |
1201 | 0 | if ( depth <= 8 * sizeof(mono_fill_chunk) && (depth & (depth - 1)) == 0) |
1202 | 0 | return gx_overprint_sep_fill_rectangle_1(tdev, opdev->op_state == OP_STATE_FILL ? |
1203 | 0 | opdev->retain_mask_fill : opdev->retain_mask_stroke, |
1204 | 0 | x, y, width, height, |
1205 | 0 | color, dev->memory); |
1206 | 0 | else |
1207 | 0 | return gx_overprint_sep_fill_rectangle_2(tdev, opdev->op_state == OP_STATE_FILL ? |
1208 | 0 | opdev->retain_mask_fill : opdev->retain_mask_stroke, |
1209 | 0 | x, y, width, height, |
1210 | 0 | color, dev->memory); |
1211 | 0 | } |
1212 | 0 | } |
1213 | | |
1214 | | /* We need this to ensure the device knows we are doing a fill */ |
1215 | | static int |
1216 | | overprint_fill_path(gx_device* pdev, const gs_gstate* pgs, |
1217 | | gx_path* ppath, const gx_fill_params* params_fill, |
1218 | | const gx_device_color* pdcolor, const gx_clip_path* pcpath) |
1219 | 0 | { |
1220 | 0 | overprint_device_t* opdev = (overprint_device_t*)pdev; |
1221 | 0 | OP_FS_STATE save_op_state = opdev->op_state; |
1222 | 0 | int code; |
1223 | |
|
1224 | 0 | opdev->op_state = OP_STATE_FILL; |
1225 | 0 | code = gx_default_fill_path(pdev, pgs, ppath, params_fill, pdcolor, pcpath); |
1226 | 0 | opdev->op_state = save_op_state; |
1227 | 0 | return code; |
1228 | 0 | } |
1229 | | |
1230 | | /* We need this to ensure the device knows we are doing a stroke */ |
1231 | | static int |
1232 | | overprint_stroke_path(gx_device* pdev, const gs_gstate* pgs, |
1233 | | gx_path* ppath, const gx_stroke_params* params_stroke, |
1234 | | const gx_device_color* pdcolor, const gx_clip_path* pcpath) |
1235 | 0 | { |
1236 | 0 | overprint_device_t* opdev = (overprint_device_t*)pdev; |
1237 | 0 | OP_FS_STATE save_op_state = opdev->op_state; |
1238 | 0 | int code; |
1239 | |
|
1240 | 0 | opdev->op_state = OP_STATE_STROKE; |
1241 | | |
1242 | | /* Stroke methods use fill path so set that to default to |
1243 | | avoid mix up of is_fill_color */ |
1244 | 0 | opdev->procs.fill_path = gx_default_fill_path; |
1245 | 0 | code = gx_default_stroke_path(pdev, pgs, ppath, params_stroke, pdcolor, pcpath); |
1246 | 0 | opdev->procs.fill_path = overprint_fill_path; |
1247 | 0 | opdev->op_state = save_op_state; |
1248 | |
|
1249 | 0 | return code; |
1250 | 0 | } |
1251 | | |
1252 | | /* |
1253 | | * Cannot use default_fill_stroke_path because we need to set the is_fill_color |
1254 | | */ |
1255 | | static int |
1256 | | overprint_fill_stroke_path(gx_device * pdev, const gs_gstate * pgs, |
1257 | | gx_path * ppath, |
1258 | | const gx_fill_params * params_fill, |
1259 | | const gx_device_color * pdevc_fill, |
1260 | | const gx_stroke_params * params_stroke, |
1261 | | const gx_device_color * pdevc_stroke, |
1262 | | const gx_clip_path * pcpath) |
1263 | 0 | { |
1264 | 0 | int code; |
1265 | 0 | overprint_device_t *opdev = (overprint_device_t *)pdev; |
1266 | 0 | OP_FS_STATE save_op_state = opdev->op_state; |
1267 | |
|
1268 | 0 | opdev->op_state = OP_STATE_FILL; |
1269 | 0 | code = dev_proc(pdev, fill_path)(pdev, pgs, ppath, params_fill, pdevc_fill, pcpath); |
1270 | 0 | if (code < 0) |
1271 | 0 | return code; |
1272 | | |
1273 | | /* Set up for stroke */ |
1274 | 0 | opdev->op_state = OP_STATE_STROKE; |
1275 | 0 | code = dev_proc(pdev, stroke_path)(pdev, pgs, ppath, params_stroke, pdevc_stroke, pcpath); |
1276 | 0 | opdev->op_state = save_op_state; |
1277 | 0 | return code; |
1278 | 0 | } |
1279 | | |
1280 | | /* We need to make sure we are set up properly based upon the text mode */ |
1281 | | static int |
1282 | | overprint_text_begin(gx_device* dev, gs_gstate* pgs, |
1283 | | const gs_text_params_t* text, gs_font* font, |
1284 | | const gx_clip_path* pcpath, |
1285 | | gs_text_enum_t** ppte) |
1286 | 0 | { |
1287 | 0 | overprint_device_t* opdev = (overprint_device_t*)dev; |
1288 | 0 | OP_FS_STATE save_op_state = opdev->op_state; |
1289 | 0 | int code = 0; |
1290 | |
|
1291 | 0 | if (pgs->text_rendering_mode == 0) |
1292 | 0 | opdev->op_state = OP_STATE_FILL; |
1293 | 0 | else if (pgs->text_rendering_mode == 1) |
1294 | 0 | opdev->op_state = OP_STATE_STROKE; |
1295 | |
|
1296 | 0 | code = gx_default_text_begin(dev, pgs, text, font, pcpath, ppte); |
1297 | 0 | opdev->op_state = save_op_state; |
1298 | 0 | return code; |
1299 | 0 | } |
1300 | | |
1301 | | static int |
1302 | | overprint_dev_spec_op(gx_device* pdev, int dev_spec_op, |
1303 | | void* data, int size) |
1304 | 0 | { |
1305 | 0 | overprint_device_t* opdev = (overprint_device_t*)pdev; |
1306 | 0 | gx_device* tdev = opdev->target; |
1307 | |
|
1308 | 0 | if (tdev == 0) |
1309 | 0 | return 0; |
1310 | | |
1311 | 0 | if (dev_spec_op == gxdso_overprint_active) |
1312 | 0 | return !opdev->is_idle; |
1313 | | |
1314 | 0 | if (dev_spec_op == gxdso_abuf_optrans) |
1315 | 0 | { |
1316 | 0 | overprint_abuf_state_t *state = (overprint_abuf_state_t *)data; |
1317 | 0 | switch (state->op_trans) |
1318 | 0 | { |
1319 | 0 | case OP_FS_TRANS_PREFILL: |
1320 | 0 | state->storage[0] = opdev->op_state; |
1321 | 0 | opdev->op_state = OP_STATE_FILL; |
1322 | 0 | break; |
1323 | 0 | case OP_FS_TRANS_PRESTROKE: |
1324 | 0 | opdev->op_state = OP_STATE_STROKE; |
1325 | 0 | break; |
1326 | 0 | default: |
1327 | 0 | case OP_FS_TRANS_POSTSTROKE: |
1328 | 0 | case OP_FS_TRANS_CLEANUP: |
1329 | 0 | opdev->op_state = (OP_FS_STATE)state->storage[0]; |
1330 | 0 | break; |
1331 | 0 | } |
1332 | 0 | return 0; |
1333 | 0 | } |
1334 | | |
1335 | 0 | if (dev_spec_op == gxdso_device_child) { |
1336 | 0 | gxdso_device_child_request *d = (gxdso_device_child_request *)data; |
1337 | 0 | if (d->target == pdev) { |
1338 | 0 | d->target = tdev; |
1339 | 0 | return 1; |
1340 | 0 | } |
1341 | 0 | } |
1342 | 0 | if (dev_spec_op == gxdso_device_insert_child) { |
1343 | 0 | opdev->target = (gx_device *)data; |
1344 | 0 | rc_increment(opdev->target); |
1345 | 0 | rc_decrement_only(tdev, "overprint_dev_spec_op"); |
1346 | 0 | return 0; |
1347 | 0 | } |
1348 | 0 | return dev_proc(tdev, dev_spec_op)(tdev, dev_spec_op, data, size); |
1349 | 0 | } |
1350 | | |
1351 | | /* complete a procedure set */ |
1352 | | static int |
1353 | | fill_in_procs(gx_device_procs * pprocs, |
1354 | | dev_proc_initialize_device_procs(initialize_device_procs), |
1355 | | int num_planar_planes) |
1356 | 0 | { |
1357 | 0 | gx_device_forward tmpdev; |
1358 | | |
1359 | | /* |
1360 | | * gx_device_forward_fill_in_procs calls gx_device_fill_in_procs, which |
1361 | | * requires the color_info field of the device be set to "reasonable" |
1362 | | * values. Which values is irrelevant in this case, but they must not |
1363 | | * contain dangling pointers, excessive numbers of components, etc. |
1364 | | */ |
1365 | 0 | memcpy( &tmpdev.color_info, |
1366 | 0 | &gs_overprint_device.color_info, |
1367 | 0 | sizeof(tmpdev.color_info) ); |
1368 | 0 | tmpdev.num_planar_planes = num_planar_planes; |
1369 | | |
1370 | | /* |
1371 | | * Prevent the check_device_separable routine from executing while we |
1372 | | * fill in the procs. Our tmpdev is not complete enough for it. |
1373 | | */ |
1374 | 0 | tmpdev.color_info.separable_and_linear = GX_CINFO_SEP_LIN_NONE; |
1375 | 0 | memset(&tmpdev.procs, 0, sizeof(tmpdev.procs)); |
1376 | 0 | tmpdev.initialize_device_procs = initialize_device_procs; |
1377 | 0 | initialize_device_procs((gx_device *)&tmpdev); |
1378 | 0 | gx_device_forward_fill_in_procs(&tmpdev); |
1379 | 0 | memcpy(pprocs, &tmpdev.procs, sizeof(tmpdev.procs)); |
1380 | |
|
1381 | 0 | return 0; |
1382 | 0 | } |
1383 | | |
1384 | | /* |
1385 | | * Create an overprint compositor. |
1386 | | * |
1387 | | * Note that this routine will be called only if the device is not already |
1388 | | * an overprint compositor. Hence, if pct->params.retain_any_comps is |
1389 | | * false, we can just return. |
1390 | | */ |
1391 | | static int |
1392 | | c_overprint_create_default_compositor( |
1393 | | const gs_composite_t * pct, |
1394 | | gx_device ** popdev, |
1395 | | gx_device * tdev, |
1396 | | gs_gstate * pgs, |
1397 | | gs_memory_t * mem ) |
1398 | 3.08M | { |
1399 | 3.08M | const gs_overprint_t * ovrpct = (const gs_overprint_t *)pct; |
1400 | 3.08M | overprint_device_t * opdev = 0; |
1401 | 3.08M | gs_overprint_params_t params; |
1402 | 3.08M | int code; |
1403 | | |
1404 | | /* see if there is anything to do */ |
1405 | 3.08M | if ( !ovrpct->params.retain_any_comps) { |
1406 | 3.08M | *popdev = tdev; |
1407 | 3.08M | return 0; |
1408 | 3.08M | } |
1409 | 0 | if (pct->idle) { |
1410 | 0 | *popdev = tdev; |
1411 | 0 | return 0; |
1412 | 0 | } |
1413 | | |
1414 | | /* build the overprint device */ |
1415 | 0 | opdev = gs_alloc_struct_immovable(mem, |
1416 | 0 | overprint_device_t, |
1417 | 0 | &st_overprint_device_t, |
1418 | 0 | "create overprint compositor" ); |
1419 | 0 | *popdev = (gx_device *)opdev; |
1420 | 0 | if (opdev == NULL) |
1421 | 0 | return_error(gs_error_VMerror); |
1422 | 0 | code = gx_device_init((gx_device *)opdev, |
1423 | 0 | (const gx_device *)&gs_overprint_device, |
1424 | 0 | mem, |
1425 | 0 | false); |
1426 | 0 | if (code < 0) |
1427 | 0 | return code; |
1428 | 0 | code = fill_in_procs(&opdev->no_overprint_procs, |
1429 | 0 | nooverprint_initialize_device_procs, |
1430 | 0 | tdev->num_planar_planes); |
1431 | 0 | if (code < 0) |
1432 | 0 | return code; |
1433 | 0 | code = fill_in_procs(&opdev->generic_overprint_procs, |
1434 | 0 | generic_overprint_initialize_device_procs, |
1435 | 0 | tdev->num_planar_planes); |
1436 | 0 | if (code < 0) |
1437 | 0 | return code; |
1438 | 0 | code = fill_in_procs(&opdev->sep_overprint_procs, |
1439 | 0 | sep_overprint_initialize_device_procs, |
1440 | 0 | tdev->num_planar_planes); |
1441 | 0 | if (code < 0) |
1442 | 0 | return code; |
1443 | | |
1444 | 0 | gx_device_copy_params((gx_device *)opdev, tdev); |
1445 | 0 | gx_device_set_target((gx_device_forward *)opdev, tdev); |
1446 | 0 | opdev->pad = tdev->pad; |
1447 | 0 | opdev->log2_align_mod = tdev->log2_align_mod; |
1448 | 0 | opdev->num_planar_planes = tdev->num_planar_planes; |
1449 | |
|
1450 | 0 | params = ovrpct->params; |
1451 | 0 | params.idle = ovrpct->idle; |
1452 | | |
1453 | | /* Initialize the stroke and fill states */ |
1454 | 0 | opdev->retain_none_fill = true; |
1455 | 0 | opdev->retain_none_stroke = true; |
1456 | | |
1457 | | /* set up the overprint parameters */ |
1458 | 0 | code = update_overprint_params(opdev, ¶ms); |
1459 | 0 | if (code < 0) |
1460 | 0 | return code; |
1461 | 0 | return 1; |
1462 | 0 | } |