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
|
/* Copyright (C) 1997, 1998 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.
*/
/* Definitions for implementors of image types */
#ifndef gxiparam_INCLUDED
# define gxiparam_INCLUDED
#include "gxdevcli.h"
#ifndef gx_image_enum_common_t_DEFINED
# define gx_image_enum_common_t_DEFINED
typedef struct gx_image_enum_common_s gx_image_enum_common_t;
#endif
/*
* Define the procedures associated with an image enumerator.
*
* Note that image_plane_data and end_image used to be device procedures;
* they still take the device argument first for compatibility. However, in
* order to make forwarding begin_image work, the intermediary routines
* gx_image_[plane_]data and gx_image_end substitute the device from the
* enumerator for the explicit device argument, which is ignored.
* Eventually we should fix this by removing the device argument from
* gx_device..., just as we have done for text enumeration; but this would
* have caused major difficulties with 5.1x retrofitting of this code, and
* it's too much work to fix right now. ****** FIX THIS SOMEDAY ******
*/
typedef struct gx_image_enum_procs_s {
/*
* Pass the next batch of data for processing.
* image_enum_proc_plane_data is defined in gxdevcli.h.
*/
image_enum_proc_plane_data((*plane_data));
/*
* End processing an image. We keep this procedure as the last one that
* requires initialization, so that we can detect obsolete static
* initializers. dev_proc_end_image is defined in gxdevcli.h.
*/
#define image_enum_proc_end_image(proc)\
dev_proc_end_image(proc)
image_enum_proc_end_image((*end_image));
/*
* Flush any intermediate buffers to the target device.
* We need this for situations where two images interact
* (currently, only the mask and the data of ImageType 3).
* This procedure is optional (may be 0).
*/
#define image_enum_proc_flush(proc)\
int proc(P1(gx_image_enum_common_t *info))
image_enum_proc_flush((*flush));
} gx_image_enum_procs_t;
/*
* Define the common prefix of the image enumerator structure. All
* implementations of begin[_typed]_image must initialize all of the members
* of this structure, by calling gx_image_enum_common_init and then filling
* in whatever else they need to.
*
* Note that the structure includes a unique ID, so that the banding
* machinery could in principle keep track of multiple enumerations that may
* be in progress simultaneously.
*/
#define gx_image_enum_common\
const gx_image_type_t *image_type;\
const gx_image_enum_procs_t *procs;\
gx_device *dev;\
gs_id id;\
int num_planes;\
int plane_depths[gs_image_max_components] /* [num_planes] */
struct gx_image_enum_common_s {
gx_image_enum_common;
};
/*extern_st(st_gx_image_enum_common); */
#define public_st_gx_image_enum_common() /* in gdevddrw.c */\
gs_public_st_composite(st_gx_image_enum_common, gx_image_enum_common_t,\
"gx_image_enum_common_t",\
image_enum_common_enum_ptrs, image_enum_common_reloc_ptrs)
/*
* Initialize the common part of an image enumerator.
*/
int gx_image_enum_common_init(P7(gx_image_enum_common_t * piec,
const gs_image_common_t * pic,
const gx_image_enum_procs_t * piep,
gx_device * dev,
int bits_per_component, int num_components,
gs_image_format_t format));
/*
* Define the structure for defining image types. An image type includes
* not only the ImageType index, but also the default implementation of
* begin_typed_image.
*/
#ifndef gx_image_type_DEFINED
# define gx_image_type_DEFINED
typedef struct gx_image_type_s gx_image_type_t;
#endif
struct gx_image_type_s {
dev_proc_begin_typed_image((*begin_typed_image));
/*
* Compute the width and height of the source data. For images with
* explicit data, this information is in the gs_data_image_t
* structure, but ImageType 2 images must compute it.
*/
#define image_proc_source_size(proc)\
int proc(P3(const gs_imager_state *pis, const gs_image_common_t *pim,\
gs_int_point *psize))
image_proc_source_size((*source_size));
/*
* We put index last so that if we add more procedures and some
* implementor fails to initialize them, we'll get a type error.
*/
int index; /* PostScript ImageType */
};
/*
* Define the procedure for getting the source size of an image with
* explicit data.
*/
image_proc_source_size(gx_data_image_source_size);
/*
* Define image_plane_data and end_image procedures for image types that
* don't have any source data (ImageType 2 and composite images).
*/
image_enum_proc_plane_data(gx_no_plane_data);
image_enum_proc_end_image(gx_ignore_end_image);
/*
* Define the procedures and type data for ImageType 1 images,
* which are always included.
*/
dev_proc_begin_typed_image(gx_begin_image1);
image_enum_proc_plane_data(gx_image1_plane_data);
image_enum_proc_end_image(gx_image1_end_image);
image_enum_proc_flush(gx_image1_flush);
#define image1_type_data\
gx_begin_image1, gx_data_image_source_size, 1
#define image1_enum_procs_data\
gx_image1_plane_data, gx_image1_end_image, gx_image1_flush
#endif /* gxiparam_INCLUDED */
|