aboutsummaryrefslogtreecommitdiffstats
path: root/src/cd/cdtest.c
blob: e1e697e1446c8115d6789c3ad9c773940d4e1ea1 (plain)
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
#include <malloc.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include "defines.h"
#include "cd.h"

/* cdtest.c: test program for the cgmdraw module.

        Written by G. Edward Johnson <mailto:lorax@nist.gov>
        Date: April 1996
        Copyright: cd software produced by NIST, an agency of the 
	U.S. government, is by statute not subject to copyright
	in the United States. Recipients of this software assume all 
	responsibilities associated with its operation, modification
	and maintenance.
 
*/


int main () {
cdImagePtr myimage;

	/* Color indexes */
        int white;
        int blue;
        int red;
        int green;
	int black;
	int lavender;
	/* points for polygons and polylines */
	cdPoint points[15];
	/* output file */
	FILE *outf;


/* create an image, 1000 by 1000 pixels */
myimage = cdImageCreate(1000, 1000);

/* Allocate the background color */
white = cdImageColorAllocate (myimage, 255,255,255);
        red = cdImageColorAllocate(myimage, 255, 0, 0);
        green = cdImageColorAllocate(myimage, 0, 255, 0);
        blue = cdImageColorAllocate(myimage, 0, 0, 255);
	black = cdImageColorAllocate(myimage, 0, 0, 0);

if (cdSetLineColor(myimage, blue)) {
  fprintf(stderr, "cdSetLineColor Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineColor Unsuccessfull\n");
}

if (cdSetLineColor(myimage, blue)) {
  fprintf(stderr, "cdSetLineColor Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineColor Unsuccessfull\n");
}


if (cdImageLine(myimage, 400, 8, 520, 8, green)) {
  fprintf(stderr, "cdImageLine Successfull\n");
}
else {
  fprintf(stderr, "cdImageLine Unsuccessfull\n");
}

if (cdImageLine(myimage, 50, 50, 500, 500, red)) {
  fprintf(stderr, "cdImageLine Successfull\n");
}
else {
  fprintf(stderr, "cdImageLine Unsuccessfull\n");
}

if (cdSetLineAttrib(myimage, 2, 3, red)) {
  fprintf(stderr, "cdSetLineAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineAttrib Unsuccessfull\n");
}

if (cdLine(myimage, 500, 50, 50, 500)) {
  fprintf(stderr, "cdLine Successfull\n");
}
else {
  fprintf(stderr, "cdLine Unsuccessfull\n");
}

/* Now, build a rectangle */
if (cdSetShapeFillAttrib(myimage, 3, blue, 6 )) {  
  fprintf(stderr, "cdSetShapeFillAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetShapeFillAttrib Unsuccessfull\n");
}

if (cdSetShapeEdgeAttrib(myimage, 1, 2, green, 1 )) {  
  fprintf(stderr, "cdSetShapeEdgeAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetShapeEdgeAttrib Unsuccessfull\n");
}

if (cdRectangle(myimage, 100, 100, 250, 250 )) {  
  fprintf(stderr, "cdRectangle Successfull\n");
}
else {
  fprintf(stderr, "cdRectangle Unsuccessfull\n");
}



/* now check out each of the line styles in order */

if (cdSetLineAttrib(myimage, 5, 4, green)) {
  fprintf(stderr, "cdSetLineAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineAttrib Unsuccessfull\n");
}

if (cdLine(myimage, 100, 600, 500, 600)) {
  fprintf(stderr, "cdLine Successfull\n");
}
else {
  fprintf(stderr, "cdLine Unsuccessfull\n");
}

if (cdSetLineAttrib(myimage, 4, -1, -1)) {
  fprintf(stderr, "cdSetLineAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineAttrib Unsuccessfull\n");
}
if (cdLine(myimage, 100, 625, 500, 625)) {
  fprintf(stderr, "cdLine Successfull\n");
}
else {
  fprintf(stderr, "cdLine Unsuccessfull\n");
}

if (cdSetLineAttrib(myimage, 3, -1, -1)) {
  fprintf(stderr, "cdSetLineAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineAttrib Unsuccessfull\n");
}
if (cdLine(myimage, 100, 650, 500, 650)) {
  fprintf(stderr, "cdLine Successfull\n");
}
else {
  fprintf(stderr, "cdLine Unsuccessfull\n");
}


if (cdSetLineAttrib(myimage, 2, -1, -1)) {
  fprintf(stderr, "cdSetLineAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineAttrib Unsuccessfull\n");
}
if (cdLine(myimage, 100, 675, 500, 675)) {
  fprintf(stderr, "cdLine Successfull\n");
}
else {
  fprintf(stderr, "cdLine Unsuccessfull\n");
}

if (cdSetLineAttrib(myimage, 1, -1, -1)) {
  fprintf(stderr, "cdSetLineAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineAttrib Unsuccessfull\n");
}
if (cdLine(myimage, 100, 700, 500, 700)) {
  fprintf(stderr, "cdLine Successfull\n");
}
else {
  fprintf(stderr, "cdLine Unsuccessfull\n");
}

/* now make a circle */
if (cdSetShapeFillAttrib(myimage, 1, -1, 6 )) {
  fprintf(stderr, "cdSetShapeFillAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetShapeFillAttrib Unsuccessfull\n");
}

if (cdSetShapeEdgeAttrib(myimage, 1, 2, green, 0 )) {
  fprintf(stderr, "cdSetShapeEdgeAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetShapeEdgeAttrib Unsuccessfull\n");
}

if (cdCircle(myimage, 500, 500, 25)) {
  fprintf(stderr, "cdCircle Successfull\n");
}
else {
  fprintf(stderr, "cdCircle Unsuccessfull\n");
}

/* how about a Circular Arc now */
if (cdArc3Pt(myimage, 550, 500, 600, 600, 650, 550 )) {
  fprintf(stderr, "cdArc3Pt Successfull\n");
}
else {
  fprintf(stderr, "cdArc3Pt Unsuccessfull\n");
}

/* now draw a closed Circular Arc */
if (cdArc3PtClose(myimage, 550, 200, 600, 300, 650, 250, 0 )) {
  fprintf(stderr, "cdArc3PtClose Successfull\n");
}
else {
  fprintf(stderr, "cdArc3PtClose Unsuccessfull\n");
}

/* and now for an ellipse */
if (cdSetShapeEdgeAttrib(myimage, 1, 2, green, 1 )) {
  fprintf(stderr, "cdSetShapeEdgeAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetShapeEdgeAttrib Unsuccessfull\n");
}

if (cdEllipse(myimage, 750, 200, 800, 250, 750, 300 )) {
  fprintf(stderr, "cdEllipse Successfull\n");
}
else {
  fprintf(stderr, "cdEllipse Unsuccessfull\n");
}


/* Now, the harder ones.  First lets try the polygon stuff */
/* a polygon with 7 or less points */

points[0].x = 700;
points[0].y = 700;
points[1].x = 725;
points[1].y = 750;
points[2].x = 775;
points[2].y = 650;

if (cdPolygon(myimage, points, 3)) {
  fprintf(stderr, "cdPolygon Successfull\n");
}
else {
  fprintf(stderr, "cdPolygon Unsuccessfull\n");
}

/* Here's a tough one, a polygon with more than seven points */

points[0].x = 100;
points[0].y = 100;

points[1].x = 100;
points[1].y = 400;

points[2].x = 400;
points[2].y = 400;

points[3].x = 400;
points[3].y = 100;

points[4].x = 100;
points[4].y = 100;

points[5].x = 200;
points[5].y = 200;

points[6].x = 200;
points[6].y = 300;

points[7].x = 300;
points[7].y = 300;

points[8].x = 300;
points[8].y = 200;

points[9].x = 200;
points[9].y = 200;

points[10].x = 100;
points[10].y = 100;

if (cdPolygon(myimage, points, 11)) {
  fprintf(stderr, "cdPolygon Successfull\n");
}
else {
  fprintf(stderr, "cdPolygon Unsuccessfull\n");
}


/* now for poly lines, just like polygons (except they're lines) */

if (cdSetLineAttrib(myimage, 1, 1, red)) {
  fprintf(stderr, "cdSetLineAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetLineAttrib Unsuccessfull\n");
}


points[0].x = 400;
points[0].y = 16;
points[1].x = 520;
points[1].y = 16;
if (cdPolyLine(myimage, points, 2)) {
  fprintf(stderr, "cdPolyLine Successfull\n");
}
else {
  fprintf(stderr, "cdPolyLine Unsuccessfull\n");
}

points[0].x = 800;
points[0].y = 650;
points[1].x = 825;
points[1].y = 675;
points[2].x = 850;
points[2].y = 650;
points[3].x = 875;
points[3].y = 700;
if (cdPolyLine(myimage, points, 4)) {
  fprintf(stderr, "cdPolyLine Successfull\n");
}
else {
  fprintf(stderr, "cdPolyLine Unsuccessfull\n");
}


/* Hey, things are going so well, lets do some text */
lavender = cdImageColorAllocate(myimage, 204, 102, 255);

if (cdSetTextAttrib(myimage, 1, lavender, 50)) {
  fprintf(stderr, "cdSetTextAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetTextAttrib Unsuccessfull\n");
}

if (cdText(myimage, 50, 800, "CGM Draw Version 1.2")) {
  fprintf(stderr, "cdText Successfull\n");
}
else {
  fprintf(stderr, "cdText Unsuccessfull\n");
}

/* More text.  This time test TextPath and TextOrient */
if (cdSetTextPath(myimage, 3)) {
  fprintf(stderr, "cdSetTextPath Successfull\n");
}
else {
  fprintf(stderr, "cdSetTextPath Unsuccessfull\n");
}

if (cdText(myimage, 50, 800, "CGM Draw")) {
  fprintf(stderr, "cdText Successfull\n");
}
else {
  fprintf(stderr, "cdText Unsuccessfull\n");
}

if (cdSetTextOrient(myimage, 1, 0, 0, -1)) {
  fprintf(stderr, "cdSetTextOrient Successfull\n");
}
else {
  fprintf(stderr, "cdSetTextOrient Unsuccessfull\n");
}

if (cdSetTextPath(myimage, 0)) {
  fprintf(stderr, "cdSetTextPath Successfull\n");
}
else {
  fprintf(stderr, "cdSetTextPath Unsuccessfull\n");
}

if (cdText(myimage, 950, 400, "CGM Draw")) {
  fprintf(stderr, "cdText Successfull\n");
}
else {
  fprintf(stderr, "cdText Unsuccessfull\n");
}


if (cdSetTextOrient(myimage, 0, 1, 1, 0)) {
  fprintf(stderr, "cdSetTextOrient Successfull\n");
}
else {
  fprintf(stderr, "cdSetTextOrient Unsuccessfull\n");
}


if (cdSetTextAttrib(myimage, 5, -1, 25)) {
  fprintf(stderr, "cdSetTextAttrib Successfull\n");
}
else {
  fprintf(stderr, "cdSetTextAttrib Unsuccessfull\n");
}

if (cdText(myimage, 5, 5, "G. Edward Johnson")) {
  fprintf(stderr, "cdText Successfull\n");
}
else {
  fprintf(stderr, "cdText Unsuccessfull\n");
}




outf = fopen("cdout.cgm", "wb");
if (!outf) return 0;
cdImageCgm(myimage, outf);
fclose(outf);
outf = 0;

cdImageDestroy(myimage);


return 1;  
}