-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput-eps.c
237 lines (195 loc) · 7 KB
/
output-eps.c
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
/* output-eps.c: utility routines for PostScript output.
Copyright (C) 2000, 2001 Martin Weber.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation; either version 2.1 of
the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* Def: HAVE_CONFIG_H */
#include "types.h"
#include "spline.h"
#include "color.h"
#include "output-eps.h"
#include "xstd.h"
#include "autotrace.h"
#include <time.h>
#include <string.h>
static at_string now (void);
#define SIGN(x) ((x) > 0 ? 1 : (x) < 0 ? -1 : 0)
#define ROUND(x) ((int) ((int) (x) + .5 * SIGN (x)))
/* Output macros. */
/* This should be used for outputting a string S on a line by itself. */
#define OUT_LINE(s) \
fprintf (ps_file, "%s\n", s)
/* These output their arguments, preceded by the indentation. */
#define OUT1(s, e) \
fprintf (ps_file, s, e)
#define OUT2(s, e1, e2) \
fprintf (ps_file, s, e1, e2)
#define OUT3(s, e1, e2, e3) \
fprintf (ps_file, s, e1, e2, e3)
#define OUT4(s, e1, e2, e3, e4) \
fprintf (ps_file, s, e1, e2, e3, e4)
#define OUT5(s, e1, e2, e3, e4, e5) \
fprintf (ps_file, s, e1, e2, e3, e4, e5)
/* These macros just output their arguments. */
#define OUT_STRING(s) fprintf (ps_file, "%s", s)
#define OUT_REAL(r) fprintf (ps_file, r == (ROUND (r = ROUND((at_real)6.0*r)/(at_real)6.0)) \
? "%.0f " : "%.3f ", r)
/* For a PostScript command with two real arguments, e.g., lineto. OP
should be a constant string. */
#define OUT_COMMAND2(first, second, op) \
do \
{ \
OUT_REAL (first); \
OUT_REAL (second); \
OUT_STRING (op "\n"); \
} \
while (0)
/* For a PostScript command with six real arguments, e.g., curveto.
Again, OP should be a constant string. */
#define OUT_COMMAND6(first, second, third, fourth, fifth, sixth, op) \
do \
{ \
OUT_REAL (first); \
OUT_REAL (second); \
OUT_STRING (" "); \
OUT_REAL (third); \
OUT_REAL (fourth); \
OUT_STRING (" "); \
OUT_REAL (fifth); \
OUT_REAL (sixth); \
OUT_STRING (" " op " \n"); \
} \
while (0)
/* This should be called before the others in this file. It opens the
output file `OUTPUT_NAME.ps', and writes some preliminary boilerplate. */
static int output_eps_header(FILE* ps_file, at_string name,
int llx, int lly, int urx, int ury)
{
at_string time;
OUT_LINE ("%!PS-Adobe-3.0 EPSF-3.0");
OUT1 ("%%%%Creator: Adobe Illustrator by %s\n", at_version(true));
OUT1 ("%%%%Title: %s\n", name);
OUT1 ("%%%%CreationDate: %s\n", time = now ());
OUT4 ("%%%%BoundingBox: %d %d %d %d\n", llx, lly, urx, ury);
OUT_LINE ("%%DocumentData: Clean7Bit");
OUT_LINE ("%%EndComments");
free (time);
/* Prolog to define Illustrator commands.
*
* The s and S commands are not used at the moment and could be
* removed or commented out.
*
* Calling f in *U is not really the right thing to do, but since all
* paths are simply filled currently, this is the easiest solution.
*/
OUT_LINE ("%%BeginProlog");
OUT_LINE ("/bd { bind def } bind def");
OUT_LINE ("/incompound false def");
OUT_LINE ("/m { moveto } bd");
OUT_LINE ("/l { lineto } bd");
OUT_LINE ("/c { curveto } bd");
OUT_LINE ("/F { incompound not {fill} if } bd");
OUT_LINE ("/f { closepath F } bd");
OUT_LINE ("/S { stroke } bd");
OUT_LINE ("/*u { /incompound true def } bd");
OUT_LINE ("/*U { /incompound false def f} bd");
OUT_LINE ("/k { setcmykcolor } bd"); /* must symbol k for CorelDraw 3/4 */
OUT_LINE ("/K { k } bd");
OUT_LINE ("%%EndProlog");
OUT_LINE ("%%BeginSetup"); /* needed for CorelDraw 3/4 */
OUT_LINE ("%%EndSetup"); /* needed for CorelDraw 3/4 */
return 0;
}
/* This outputs the PostScript code which produces the shape in
SHAPE. */
static void
out_splines (FILE * ps_file, spline_list_array_type shape)
{
unsigned this_list;
spline_list_type list;
color_type last_color = {0,0,0};
for (this_list = 0; this_list < SPLINE_LIST_ARRAY_LENGTH (shape);
this_list++)
{
unsigned this_spline;
int c, m, y, k;
spline_type first;
list = SPLINE_LIST_ARRAY_ELT (shape, this_list);
first = SPLINE_LIST_ELT (list, 0);
if (this_list == 0 || !COLOR_EQUAL(list.color, last_color))
{
if (this_list > 0)
OUT_LINE("*U");
c = k = 255 - list.color.r;
m = 255 - list.color.g;
if (m < k)
k = m;
y = 255 - list.color.b;
if (y < k)
k = y;
c -= k;
m -= k;
y -= k;
/* symbol k is used for CorelDraw 3/4 compatibility */
OUT5 ("%.3f %.3f %.3f %.3f %s\n", (double) c/255.0,
(double) m/255.0,(double) y/255.0, (double) k/255.0,
(shape.centerline || list.open) ? "K" : "k");
OUT_LINE("*u");
last_color = list.color;
}
OUT_COMMAND2 (START_POINT (first).x, START_POINT (first).y, "m");
for (this_spline = 0; this_spline < SPLINE_LIST_LENGTH (list);
this_spline++)
{
spline_type s = SPLINE_LIST_ELT (list, this_spline);
if (SPLINE_DEGREE (s) == LINEARTYPE)
OUT_COMMAND2 (END_POINT (s).x, END_POINT (s).y, "l");
else
OUT_COMMAND6 (CONTROL1 (s).x, CONTROL1 (s).y,
CONTROL2 (s).x, CONTROL2 (s).y,
END_POINT (s).x, END_POINT (s).y,
"c");
}
if (SPLINE_LIST_ARRAY_LENGTH(shape) > 0)
OUT_LINE ((shape.centerline || list.open) ? "S" : "f");
}
if (SPLINE_LIST_ARRAY_LENGTH(shape) > 0)
OUT_LINE("*U");
}
int output_eps_writer(FILE* ps_file, at_string name,
int llx, int lly, int urx, int ury,
at_output_opts_type * opts,
spline_list_array_type shape,
at_msg_func msg_func,
at_address msg_data)
{
int result;
result = output_eps_header(ps_file, name, llx, lly, urx, ury);
if (result != 0)
return result;
out_splines(ps_file, shape);
OUT_LINE ("%%Trailer");
OUT_LINE ("%%EOF");
return 0;
}
static at_string
now (void)
{
at_string time_string;
time_t t = time (0);
XMALLOC (time_string, 26); /* not 25 ! */
strcpy (time_string, ctime (&t));
time_string[24] = 0; /* No newline. */
return time_string;
}