1 |
< |
/* Copyright (c) 1986 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1992 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
6 |
|
|
7 |
|
/* |
8 |
|
* oki20c.c - program to dump pixel file to OkiMate 20 color printer. |
9 |
– |
* |
10 |
– |
* 6/10/87 |
9 |
|
*/ |
10 |
|
|
11 |
|
#include <stdio.h> |
12 |
|
|
13 |
|
#include "color.h" |
14 |
+ |
#include "resolu.h" |
15 |
|
|
17 |
– |
|
16 |
|
#define NROWS 1440 /* 10" at 144 dpi */ |
17 |
|
#define NCOLS 960 /* 8" at 120 dpi */ |
18 |
|
|
19 |
+ |
#define ASPECT (120./144.) /* pixel aspect ratio */ |
20 |
+ |
|
21 |
+ |
#define FILTER "pfilt -1 -x %d -y %d -p %f %s",NCOLS,NROWS,ASPECT |
22 |
+ |
|
23 |
|
/* |
24 |
|
* Subtractive primaries are ordered: Yellow, Magenta, Cyan. |
25 |
|
*/ |
26 |
|
|
27 |
|
#define sub_add(sub) (2-(sub)) /* map subtractive to additive pri. */ |
28 |
|
|
27 |
– |
#ifdef BSD |
28 |
– |
#define clearlbuf() bzero((char *)lpat, sizeof(lpat)) |
29 |
– |
#else |
30 |
– |
#define clearlbuf() (void)memset((char *)lpat, 0, sizeof(lpat)) |
31 |
– |
#endif |
32 |
– |
|
29 |
|
long lpat[NCOLS][3]; |
30 |
|
|
31 |
+ |
int dofilter = 0; /* filter through pfilt first? */ |
32 |
|
|
33 |
+ |
|
34 |
|
main(argc, argv) |
35 |
|
int argc; |
36 |
|
char *argv[]; |
37 |
|
{ |
38 |
|
int i, status = 0; |
39 |
|
|
40 |
+ |
if (argc > 1 && !strcmp(argv[1], "-p")) { |
41 |
+ |
dofilter++; |
42 |
+ |
argv++; argc--; |
43 |
+ |
} |
44 |
+ |
#ifdef _IOLBF |
45 |
+ |
stdout->_flag &= ~_IOLBF; |
46 |
+ |
#endif |
47 |
|
if (argc < 2) |
48 |
|
status = printp(NULL) == -1; |
49 |
|
else |
56 |
|
printp(fname) /* print a picture */ |
57 |
|
char *fname; |
58 |
|
{ |
59 |
+ |
char buf[64]; |
60 |
|
FILE *input; |
61 |
|
int xres, yres; |
62 |
|
COLR scanline[NCOLS]; |
63 |
|
int i; |
64 |
|
|
65 |
< |
if (fname == NULL) { |
65 |
> |
if (dofilter) { |
66 |
> |
if (fname == NULL) { |
67 |
> |
sprintf(buf, FILTER, ""); |
68 |
> |
fname = "<stdin>"; |
69 |
> |
} else |
70 |
> |
sprintf(buf, FILTER, fname); |
71 |
> |
if ((input = popen(buf, "r")) == NULL) { |
72 |
> |
fprintf(stderr, "Cannot execute: %s\n", buf); |
73 |
> |
return(-1); |
74 |
> |
} |
75 |
> |
} else if (fname == NULL) { |
76 |
|
input = stdin; |
77 |
|
fname = "<stdin>"; |
78 |
|
} else if ((input = fopen(fname, "r")) == NULL) { |
80 |
|
return(-1); |
81 |
|
} |
82 |
|
/* discard header */ |
83 |
< |
getheader(input, NULL); |
83 |
> |
if (checkheader(input, COLRFMT, NULL) < 0) { |
84 |
> |
fprintf(stderr, "%s: not a Radiance picture\n", fname); |
85 |
> |
return(-1); |
86 |
> |
} |
87 |
|
/* get picture dimensions */ |
88 |
< |
if (fgetresolu(&xres, &yres, input) != (YMAJOR|YDECR)) { |
88 |
> |
if (fgetresolu(&xres, &yres, input) < 0) { |
89 |
|
fprintf(stderr, "%s: bad picture size\n", fname); |
90 |
|
return(-1); |
91 |
|
} |
92 |
< |
if (xres > NCOLS || yres > NROWS) { |
92 |
> |
if (xres > NCOLS) { |
93 |
|
fprintf(stderr, "%s: resolution mismatch\n", fname); |
94 |
|
return(-1); |
95 |
|
} |
96 |
|
/* set line spacing (overlap for knitting) */ |
97 |
|
fputs("\0333\042", stdout); |
79 |
– |
/* clear line buffer */ |
80 |
– |
clearlbuf(); |
98 |
|
/* put out scanlines */ |
99 |
|
for (i = yres-1; i >= 0; i--) { |
100 |
|
if (freadcolrs(scanline, xres, input) < 0) { |
107 |
|
/* advance page */ |
108 |
|
putchar('\f'); |
109 |
|
|
110 |
< |
fclose(input); |
110 |
> |
if (dofilter) |
111 |
> |
pclose(input); |
112 |
> |
else |
113 |
> |
fclose(input); |
114 |
|
|
115 |
|
return(0); |
116 |
|
} |
130 |
|
for (j = 0; j < 3; j++) |
131 |
|
for (i = 0; i < len; i++) |
132 |
|
lpat[i][j] |= (long)colbit(scan[i],i,j) << bpos; |
133 |
+ |
return; |
134 |
+ |
} |
135 |
+ |
fputs("\033\031", stdout); |
136 |
|
|
137 |
< |
} else { |
138 |
< |
|
139 |
< |
fputs("\033\031", stdout); |
140 |
< |
|
141 |
< |
for (j = 0; j < 3; j++) { |
142 |
< |
fputs("\033%O", stdout); |
143 |
< |
putchar(len & 255); |
144 |
< |
putchar(len >> 8); |
145 |
< |
for (i = 0; i < len; i++) { |
146 |
< |
c = lpat[i][j] | colbit(scan[i],i,j); |
147 |
< |
/* repeat this row */ |
137 |
> |
for (j = 0; j < 3; j++) { |
138 |
> |
i = (NCOLS + len)/2; /* center image */ |
139 |
> |
fputs("\033%O", stdout); |
140 |
> |
putchar(i & 255); |
141 |
> |
putchar(i >> 8); |
142 |
> |
while (i-- > len) { |
143 |
> |
putchar(0); |
144 |
> |
putchar(0); |
145 |
> |
putchar(0); |
146 |
> |
} |
147 |
> |
for (i = 0; i < len; i++) { |
148 |
> |
c = lpat[i][j] | colbit(scan[i],i,j); |
149 |
> |
putchar(c>>16); |
150 |
> |
putchar(c>>8 & 255); |
151 |
> |
putchar(c & 255); |
152 |
> |
if (y) /* repeat this row */ |
153 |
|
lpat[i][j] = (c & 1) << 23; |
154 |
< |
putchar(c>>16); |
155 |
< |
putchar(c>>8 & 255); |
128 |
< |
putchar(c & 255); |
129 |
< |
} |
130 |
< |
putchar('\r'); |
154 |
> |
else /* or clear for next image */ |
155 |
> |
lpat[i][j] = 0L; |
156 |
|
} |
157 |
< |
putchar('\n'); |
157 |
> |
putchar('\r'); |
158 |
|
} |
159 |
+ |
putchar('\n'); |
160 |
+ |
fflush(stdout); |
161 |
|
} |
162 |
|
|
163 |
|
|
168 |
|
{ |
169 |
|
static int cerr[NCOLS][3]; |
170 |
|
static int err[3]; |
171 |
< |
int b; |
171 |
> |
int b, errp; |
172 |
|
register int a, ison; |
173 |
|
|
174 |
|
a = sub_add(s); /* use additive primary */ |
175 |
|
b = col[a]; |
176 |
+ |
errp = err[a]; |
177 |
|
err[a] += b + cerr[x][a]; |
178 |
|
ison = err[a] < 128; |
179 |
|
if (!ison) err[a] -= 256; |
180 |
< |
cerr[x][a] = err[a] /= 2; |
180 |
> |
err[a] /= 3; |
181 |
> |
cerr[x][a] = err[a] + errp; |
182 |
|
return(ison); |
183 |
|
} |