| 50 |
|
static long ncall = 0L; /* number of calls to getpictscan */ |
| 51 |
|
static long nread = 0L; /* number of scanlines read */ |
| 52 |
|
|
| 53 |
+ |
static int wrongformat = 0; |
| 54 |
+ |
|
| 55 |
|
SCAN *scanretire(); |
| 56 |
|
|
| 57 |
|
extern long ftell(); |
| 223 |
|
#endif |
| 224 |
|
n = 0; |
| 225 |
|
for (vh = -hsize; vh <= hsize; vh++) { |
| 226 |
< |
if (compdir(dir, vh, vv) < 0) { /* off viewable region */ |
| 226 |
> |
if (compdir(dir, vh, vv) < 0) { /* not in view */ |
| 227 |
|
vb[vh+hsize] = -1.0; |
| 228 |
|
continue; |
| 229 |
|
} |
| 289 |
|
getexpos(s) /* get exposure from header line */ |
| 290 |
|
char *s; |
| 291 |
|
{ |
| 292 |
+ |
char fmt[32]; |
| 293 |
+ |
|
| 294 |
|
if (isexpos(s)) |
| 295 |
|
exposure *= exposval(s); |
| 296 |
+ |
else if (isformat(s)) { |
| 297 |
+ |
formatval(fmt, s); |
| 298 |
+ |
wrongformat = strcmp(fmt, COLRFMT); |
| 299 |
+ |
} |
| 300 |
|
} |
| 301 |
|
|
| 302 |
|
|
| 303 |
|
open_pict(fn) /* open picture file */ |
| 304 |
|
char *fn; |
| 305 |
|
{ |
| 298 |
– |
register int i; |
| 299 |
– |
|
| 306 |
|
if ((pictfp = fopen(fn, "r")) == NULL) { |
| 307 |
|
fprintf("%s: cannot open\n", fn); |
| 308 |
|
exit(1); |
| 309 |
|
} |
| 310 |
|
exposure = 1.0; |
| 311 |
< |
getheader(pictfp, getexpos); |
| 312 |
< |
if (fgetresolu(&pxsiz, &pysiz, pictfp) != (YMAJOR|YDECR)) { |
| 313 |
< |
fprintf("%s: bad picture resolution\n", fn); |
| 311 |
> |
getheader(pictfp, getexpos, NULL); |
| 312 |
> |
if (wrongformat || |
| 313 |
> |
fgetresolu(&pxsiz, &pysiz, pictfp) != (YMAJOR|YDECR)) { |
| 314 |
> |
fprintf("%s: bad picture format\n", fn); |
| 315 |
|
exit(1); |
| 316 |
|
} |
| 317 |
|
initscans(); |
| 320 |
|
|
| 321 |
|
close_pict() /* done with picture */ |
| 322 |
|
{ |
| 316 |
– |
register int i; |
| 317 |
– |
|
| 323 |
|
if (pictfp == NULL) |
| 324 |
|
return; |
| 325 |
|
fclose(pictfp); |