| 17 |
|
#include "color.h" |
| 18 |
|
|
| 19 |
|
extern char *malloc(); |
| 20 |
+ |
extern float *matchlamp(); |
| 21 |
|
|
| 22 |
|
#define CHECKRAD 1.5 /* radius to check for filtering */ |
| 23 |
|
|
| 45 |
|
|
| 46 |
|
char *tfname = NULL; |
| 47 |
|
|
| 48 |
+ |
char *lampdat = "lamp.tab"; /* lamp data file */ |
| 49 |
+ |
|
| 50 |
|
int xres, yres; /* resolution of input */ |
| 51 |
|
double inpaspect = 1.0; /* pixel aspect ratio of input */ |
| 52 |
|
int correctaspect = 0; /* aspect ratio correction? */ |
| 70 |
|
extern long ftell(); |
| 71 |
|
extern int quit(), headline(); |
| 72 |
|
FILE *fin; |
| 73 |
+ |
float *lampcolor; |
| 74 |
+ |
char *lamptype = NULL; |
| 75 |
|
long fpos; |
| 76 |
|
double outaspect = 0.0; |
| 77 |
|
double d; |
| 139 |
|
} |
| 140 |
|
i++; |
| 141 |
|
break; |
| 142 |
+ |
case 'f': |
| 143 |
+ |
lampdat = argv[++i]; |
| 144 |
+ |
break; |
| 145 |
+ |
case 't': |
| 146 |
+ |
lamptype = argv[++i]; |
| 147 |
+ |
break; |
| 148 |
|
case '1': |
| 149 |
|
singlepass = 1; |
| 150 |
|
break; |
| 204 |
|
} else { |
| 205 |
|
fprintf(stderr, "%s: bad # file arguments\n", progname); |
| 206 |
|
quit(1); |
| 207 |
+ |
} |
| 208 |
+ |
/* get lamp data (if necessary) */ |
| 209 |
+ |
if (lamptype != NULL) { |
| 210 |
+ |
if (loadlamps(lampdat) < 0) |
| 211 |
+ |
quit(1); |
| 212 |
+ |
if ((lampcolor = matchlamp(lamptype)) == NULL) { |
| 213 |
+ |
fprintf(stderr, "%s: unknown lamp type\n", lamptype); |
| 214 |
+ |
quit(1); |
| 215 |
+ |
} |
| 216 |
+ |
colval(exposure,RED) /= lampcolor[0]; |
| 217 |
+ |
colval(exposure,GRN) /= lampcolor[1]; |
| 218 |
+ |
colval(exposure,BLU) /= lampcolor[2]; |
| 219 |
+ |
freelamps(); |
| 220 |
|
} |
| 221 |
|
/* get header */ |
| 222 |
|
getheader(fin, headline); |