47 |
|
|
48 |
|
char errmsg[128]; |
49 |
|
|
50 |
< |
COLR *inline; |
50 |
> |
COLR *inl; |
51 |
|
|
52 |
|
int xmax, ymax; |
53 |
|
|
113 |
|
head.ras_depth != 8) |
114 |
|
quiterr("incompatible format"); |
115 |
|
/* put header */ |
116 |
< |
printargs(argc, argv, stdout); |
116 |
> |
printargs(i, argv, stdout); |
117 |
> |
fputformat(COLRFMT, stdout); |
118 |
|
putchar('\n'); |
119 |
|
fputresolu(YMAJOR|YDECR, xmax, ymax, stdout); |
120 |
|
/* convert file */ |
186 |
|
p->fp = stdin; |
187 |
|
else if ((p->fp = fopen(fname, "r")) == NULL) |
188 |
|
return(NULL); |
189 |
< |
/* discard header */ |
190 |
< |
getheader(p->fp, NULL); |
191 |
< |
if (fgetresolu(&xmax, &ymax, p->fp) != (YMAJOR|YDECR)) |
192 |
< |
quiterr("bad picture size"); |
189 |
> |
/* check header */ |
190 |
> |
if (checkheader(p->fp, COLRFMT, NULL) < 0 || |
191 |
> |
fgetresolu(&xmax, &ymax, p->fp) != (YMAJOR|YDECR)) |
192 |
> |
quiterr("bad picture format"); |
193 |
|
p->nexty = 0; |
194 |
|
p->bytes_line = 0; /* variable length lines */ |
195 |
|
p->pos.y = (long *)ecalloc(ymax, sizeof(long)); |
204 |
|
h->ras_maptype = RMT_EQUAL_RGB; |
205 |
|
h->ras_maplength = 256*3; |
206 |
|
/* allocate scanline */ |
207 |
< |
inline = (COLR *)emalloc(xmax*sizeof(COLR)); |
207 |
> |
inl = (COLR *)emalloc(xmax*sizeof(COLR)); |
208 |
|
|
209 |
|
return(p); |
210 |
|
} |
278 |
|
if (inpic->bytes_line == 0) { |
279 |
|
if (inpic->pos.y[y] == 0) { |
280 |
|
while (inpic->nexty < y) { |
281 |
< |
if (freadcolrs(inline, xmax, inpic->fp) < 0) |
281 |
> |
if (freadcolrs(inl, xmax, inpic->fp) < 0) |
282 |
|
quiterr("read error in picreadline3"); |
283 |
|
inpic->pos.y[++inpic->nexty] = ftell(inpic->fp); |
284 |
|
} |
288 |
|
quiterr("seek error in picreadline3"); |
289 |
|
} else if (inpic->bytes_line == 0 && inpic->pos.y[inpic->nexty] == 0) |
290 |
|
inpic->pos.y[inpic->nexty] = ftell(inpic->fp); |
291 |
< |
if (freadcolrs(inline, xmax, inpic->fp) < 0) /* read scanline */ |
291 |
> |
if (freadcolrs(inl, xmax, inpic->fp) < 0) /* read scanline */ |
292 |
|
quiterr("read error in picreadline3"); |
293 |
|
inpic->nexty = y+1; |
294 |
|
/* convert scanline */ |
295 |
< |
normcolrs(inline, xmax, 0); |
295 |
> |
normcolrs(inl, xmax, 0); |
296 |
|
for (i = 0; i < xmax; i++) { |
297 |
< |
l3[i].r = inline[i][RED]; |
298 |
< |
l3[i].g = inline[i][GRN]; |
299 |
< |
l3[i].b = inline[i][BLU]; |
297 |
> |
l3[i].r = inl[i][RED]; |
298 |
> |
l3[i].g = inl[i][GRN]; |
299 |
> |
l3[i].b = inl[i][BLU]; |
300 |
|
} |
301 |
|
} |
302 |
|
|
350 |
|
register int i, val; |
351 |
|
|
352 |
|
for (i = 0; i < 256; i++) { |
353 |
< |
val = pow(i/256.0, 1.0/gamma) * 256.0; |
353 |
> |
val = pow((i+0.5)/256.0, 1.0/gamma) * 256.0; |
354 |
|
map[0][i] = map[1][i] = map[2][i] = val; |
355 |
|
} |
356 |
|
} |