1 |
< |
/* Copyright (c) 1986 Regents of the University of California */ |
1 |
> |
/* Copyright (c) 1991 Regents of the University of California */ |
2 |
|
|
3 |
|
#ifndef lint |
4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
13 |
|
#include <stdio.h> |
14 |
|
|
15 |
|
#include "color.h" |
16 |
+ |
#include "resolu.h" |
17 |
|
|
17 |
– |
|
18 |
|
#define NROWS 1440 /* 10" at 144 dpi */ |
19 |
|
#define NCOLS 960 /* 8" at 120 dpi */ |
20 |
|
|
21 |
+ |
#define ASPECT (120./144.) /* pixel aspect ratio */ |
22 |
+ |
|
23 |
+ |
#define FILTER "pfilt -1 -x %d -y %d -p %f %s",NCOLS,NROWS,ASPECT |
24 |
+ |
|
25 |
|
/* |
26 |
|
* Subtractive primaries are ordered: Yellow, Magenta, Cyan. |
27 |
|
*/ |
36 |
|
|
37 |
|
long lpat[NCOLS][3]; |
38 |
|
|
39 |
+ |
int dofilter = 0; /* filter through pfilt first? */ |
40 |
|
|
41 |
+ |
|
42 |
|
main(argc, argv) |
43 |
|
int argc; |
44 |
|
char *argv[]; |
45 |
|
{ |
46 |
|
int i, status = 0; |
47 |
|
|
48 |
+ |
if (argc > 1 && !strcmp(argv[1], "-p")) { |
49 |
+ |
dofilter++; |
50 |
+ |
argv++; argc--; |
51 |
+ |
} |
52 |
+ |
#ifdef _IOLBF |
53 |
+ |
stdout->_flag &= ~_IOLBF; |
54 |
+ |
#endif |
55 |
|
if (argc < 2) |
56 |
|
status = printp(NULL) == -1; |
57 |
|
else |
64 |
|
printp(fname) /* print a picture */ |
65 |
|
char *fname; |
66 |
|
{ |
67 |
+ |
char buf[64]; |
68 |
|
FILE *input; |
69 |
|
int xres, yres; |
70 |
|
COLR scanline[NCOLS]; |
71 |
|
int i; |
72 |
|
|
73 |
< |
if (fname == NULL) { |
73 |
> |
if (dofilter) { |
74 |
> |
if (fname == NULL) { |
75 |
> |
sprintf(buf, FILTER, ""); |
76 |
> |
fname = "<stdin>"; |
77 |
> |
} else |
78 |
> |
sprintf(buf, FILTER, fname); |
79 |
> |
if ((input = popen(buf, "r")) == NULL) { |
80 |
> |
fprintf(stderr, "Cannot execute: %s\n", buf); |
81 |
> |
return(-1); |
82 |
> |
} |
83 |
> |
} else if (fname == NULL) { |
84 |
|
input = stdin; |
85 |
|
fname = "<stdin>"; |
86 |
|
} else if ((input = fopen(fname, "r")) == NULL) { |
93 |
|
return(-1); |
94 |
|
} |
95 |
|
/* get picture dimensions */ |
96 |
< |
if (fgetresolu(&xres, &yres, input) != (YMAJOR|YDECR)) { |
96 |
> |
if (fgetresolu(&xres, &yres, input) < 0) { |
97 |
|
fprintf(stderr, "%s: bad picture size\n", fname); |
98 |
|
return(-1); |
99 |
|
} |
117 |
|
/* advance page */ |
118 |
|
putchar('\f'); |
119 |
|
|
120 |
< |
fclose(input); |
120 |
> |
if (dofilter) |
121 |
> |
pclose(input); |
122 |
> |
else |
123 |
> |
fclose(input); |
124 |
|
|
125 |
|
return(0); |
126 |
|
} |
146 |
|
fputs("\033\031", stdout); |
147 |
|
|
148 |
|
for (j = 0; j < 3; j++) { |
149 |
+ |
i = (NCOLS + len)/2; /* center image */ |
150 |
|
fputs("\033%O", stdout); |
151 |
< |
putchar(len & 255); |
152 |
< |
putchar(len >> 8); |
151 |
> |
putchar(i & 255); |
152 |
> |
putchar(i >> 8); |
153 |
> |
while (i-- > len) { |
154 |
> |
putchar(0); |
155 |
> |
putchar(0); |
156 |
> |
putchar(0); |
157 |
> |
} |
158 |
|
for (i = 0; i < len; i++) { |
159 |
|
c = lpat[i][j] | colbit(scan[i],i,j); |
160 |
|
/* repeat this row */ |
166 |
|
putchar('\r'); |
167 |
|
} |
168 |
|
putchar('\n'); |
169 |
+ |
fflush(stdout); |
170 |
|
} |
171 |
|
} |
172 |
|
|
178 |
|
{ |
179 |
|
static int cerr[NCOLS][3]; |
180 |
|
static int err[3]; |
181 |
< |
int b; |
181 |
> |
int b, errp; |
182 |
|
register int a, ison; |
183 |
|
|
184 |
|
a = sub_add(s); /* use additive primary */ |
185 |
|
b = col[a]; |
186 |
+ |
errp = err[a]; |
187 |
|
err[a] += b + cerr[x][a]; |
188 |
|
ison = err[a] < 128; |
189 |
|
if (!ison) err[a] -= 256; |
190 |
< |
cerr[x][a] = err[a] /= 2; |
190 |
> |
err[a] /= 3; |
191 |
> |
cerr[x][a] = err[a] + errp; |
192 |
|
return(ison); |
193 |
|
} |