ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/ra_tiff.c
Revision: 2.33
Committed: Mon Nov 10 19:08:19 2008 UTC (15 years, 5 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad4R0
Changes since 2.32: +3 -3 lines
Log Message:
Changed ".pic" extension to ".hdr" throughout

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.33 static const char RCSid[] = "$Id: ra_tiff.c,v 2.32 2005/08/19 02:31:32 greg Exp $";
3 greg 1.1 #endif
4     /*
5 gregl 2.9 * Program to convert between RADIANCE and TIFF files.
6 greg 2.20 * Added LogLuv encodings 7/97 (GWL).
7     * Added white-balance adjustment 10/01 (GW).
8 greg 1.1 */
9    
10     #include <stdio.h>
11 greg 2.3 #include <math.h>
12 greg 2.22 #include <ctype.h>
13 greg 2.24 #include <time.h>
14 schorsch 2.27 #include <string.h>
15    
16 greg 1.1 #include "tiffio.h"
17     #include "color.h"
18 greg 1.6 #include "resolu.h"
19    
20 greg 2.8 #define GAMCOR 2.2 /* default gamma */
21    
22 gregl 2.9 /* conversion flags */
23     #define C_CXFM 0x1 /* needs color transformation */
24     #define C_GAMUT 0x2 /* needs gamut mapping */
25     #define C_GAMMA 0x4 /* needs gamma correction */
26     #define C_GRY 0x8 /* TIFF is greyscale */
27     #define C_XYZE 0x10 /* Radiance is XYZE */
28     #define C_RFLT 0x20 /* Radiance data is float */
29     #define C_TFLT 0x40 /* TIFF data is float */
30 gwlarson 2.19 #define C_TWRD 0x80 /* TIFF data is 16-bit */
31     #define C_PRIM 0x100 /* has assigned primaries */
32 greg 1.1
33 schorsch 2.28 typedef void colcvf_t(uint32 y);
34    
35 gregl 2.9 struct {
36     uint16 flags; /* conversion flags (defined above) */
37 greg 2.22 char capdate[20]; /* capture date/time */
38     char owner[256]; /* content owner */
39 gregl 2.9 uint16 comp; /* TIFF compression type */
40 gregl 2.10 uint16 phot; /* TIFF photometric type */
41 gregl 2.9 uint16 pconf; /* TIFF planar configuration */
42     float gamcor; /* gamma correction value */
43     short bradj; /* Radiance exposure adjustment (stops) */
44     uint16 orient; /* visual orientation (TIFF spec.) */
45 gregl 2.11 double stonits; /* input conversion to nits */
46 gregl 2.9 float pixrat; /* pixel aspect ratio */
47     FILE *rfp; /* Radiance stream pointer */
48     TIFF *tif; /* TIFF pointer */
49     uint32 xmax, ymax; /* image dimensions */
50     COLORMAT cmat; /* color transformation matrix */
51     RGBPRIMS prims; /* RGB primaries */
52     union {
53     COLR *colrs; /* 4-byte ???E pointer */
54     COLOR *colors; /* float array pointer */
55     char *p; /* generic pointer */
56     } r; /* Radiance scanline */
57     union {
58     uint8 *bp; /* byte pointer */
59 gwlarson 2.18 uint16 *wp; /* word pointer */
60 gregl 2.9 float *fp; /* float pointer */
61     char *p; /* generic pointer */
62     } t; /* TIFF scanline */
63 schorsch 2.28 colcvf_t *tf; /* translation procedure */
64 gregl 2.9 } cvts = { /* conversion structure */
65 greg 2.22 0, "", "", COMPRESSION_NONE, PHOTOMETRIC_RGB,
66 gregl 2.10 PLANARCONFIG_CONTIG, GAMCOR, 0, 1, 1., 1.,
67 gregl 2.9 };
68 greg 1.4
69 gregl 2.9 #define CHK(f) (cvts.flags & (f))
70     #define SET(f) (cvts.flags |= (f))
71     #define CLR(f) (cvts.flags &= ~(f))
72     #define TGL(f) (cvts.flags ^= (f))
73 greg 1.5
74 schorsch 2.28 static colcvf_t Luv2Color, L2Color, RGB2Colr, Gry2Colr;
75     static colcvf_t Color2Luv, Color2L, Colr2RGB, Colr2Gry;
76     static colcvf_t RRGGBB2Color, GGry2Color, Color2RRGGBB, Color2GGry;
77    
78     static gethfunc headline;
79     static void quiterr(char *err);
80     static void allocbufs(void);
81     static void initfromtif(void);
82     static void tiff2ra(int ac, char *av[]);
83     static void initfromrad(void);
84     static void ra2tiff(int ac, char *av[]);
85    
86    
87 greg 2.21
88     #define RfGfBf2Color Luv2Color
89     #define Gryf2Color L2Color
90     #define Color2Gryf Color2L
91     #define Color2RfGfBf Color2Luv
92 greg 1.1
93 gregl 2.9 short ortab[8] = { /* orientation conversion table */
94     YMAJOR|YDECR,
95     YMAJOR|YDECR|XDECR,
96     YMAJOR|XDECR,
97     YMAJOR,
98     YDECR,
99     XDECR|YDECR,
100     XDECR,
101     0
102     };
103 greg 1.1
104 gregl 2.9 #define pixorder() ortab[cvts.orient-1]
105    
106 greg 2.22 extern char TMSTR[]; /* "CAPDATE=" from header.c */
107     char OWNSTR[] = "OWNER=";
108    
109 greg 1.1 char *progname;
110    
111 schorsch 2.27
112 schorsch 2.28 int
113     main(int argc, char *argv[])
114 greg 1.1 {
115     int reverse = 0;
116     int i;
117    
118     progname = argv[0];
119    
120     for (i = 1; i < argc; i++)
121     if (argv[i][0] == '-')
122     switch (argv[i][1]) {
123 gregl 2.9 case 'g': /* gamma correction */
124     cvts.gamcor = atof(argv[++i]);
125 greg 1.1 break;
126 gregl 2.9 case 'x': /* XYZE Radiance output */
127     TGL(C_XYZE);
128 greg 1.4 break;
129 gregl 2.9 case 'z': /* LZW compressed output */
130     cvts.comp = COMPRESSION_LZW;
131 greg 1.5 break;
132 gregl 2.9 case 'L': /* LogLuv 32-bit output */
133 gregl 2.10 cvts.comp = COMPRESSION_SGILOG;
134     cvts.phot = PHOTOMETRIC_LOGLUV;
135 gregl 2.9 break;
136     case 'l': /* LogLuv 24-bit output */
137 gregl 2.10 cvts.comp = COMPRESSION_SGILOG24;
138     cvts.phot = PHOTOMETRIC_LOGLUV;
139 gregl 2.9 break;
140 greg 2.21 case 'w': /* 16-bit/primary output? */
141     TGL(C_TWRD);
142     break;
143     case 'f': /* IEEE float output? */
144     TGL(C_TFLT);
145     break;
146 gregl 2.9 case 'b': /* greyscale output? */
147     TGL(C_GRY);
148     break;
149     case 'e': /* exposure adjustment */
150 greg 1.1 if (argv[i+1][0] != '+' && argv[i+1][0] != '-')
151     goto userr;
152 gregl 2.9 cvts.bradj = atoi(argv[++i]);
153 greg 1.1 break;
154 gregl 2.9 case 'r': /* reverse conversion? */
155 greg 1.1 reverse = !reverse;
156     break;
157     case '\0':
158     goto doneopts;
159     default:
160     goto userr;
161     }
162     else
163     break;
164     doneopts:
165 gregl 2.9 if (reverse) {
166 greg 1.1
167     if (i != argc-2 && i != argc-1)
168     goto userr;
169 gregl 2.9
170     tiff2ra(i, argv);
171    
172     } else {
173    
174 greg 1.1 if (i != argc-2)
175     goto userr;
176 greg 2.21 /* consistency checks */
177 schorsch 2.25 if (CHK(C_GRY)) {
178 gregl 2.10 if (cvts.phot == PHOTOMETRIC_RGB)
179     cvts.phot = PHOTOMETRIC_MINISBLACK;
180     else {
181     cvts.phot = PHOTOMETRIC_LOGL;
182     cvts.comp = COMPRESSION_SGILOG;
183     }
184 schorsch 2.25 }
185 greg 2.21 if (CHK(C_TWRD|C_TFLT) == (C_TWRD|C_TFLT))
186     goto userr;
187 gregl 2.9
188     ra2tiff(i, argv);
189     }
190    
191 greg 1.1 exit(0);
192     userr:
193 greg 1.4 fprintf(stderr,
194 greg 2.33 "Usage: %s [-z|-L|-l|-f|-w][-b][-e +/-stops][-g gamma] {in.hdr|-} out.tif\n",
195 greg 1.1 progname);
196 gregl 2.9 fprintf(stderr,
197 greg 2.33 " Or: %s -r [-x][-e +/-stops][-g gamma] in.tif [out.hdr|-]\n",
198 gregl 2.9 progname);
199 greg 1.1 exit(1);
200     }
201    
202    
203 schorsch 2.28 static void
204     quiterr( /* print message and exit */
205     char *err
206     )
207 greg 1.1 {
208     if (err != NULL) {
209     fprintf(stderr, "%s: %s\n", progname, err);
210     exit(1);
211     }
212     exit(0);
213     }
214    
215    
216 schorsch 2.28 static void
217     allocbufs(void) /* allocate scanline buffers */
218 greg 1.1 {
219 gregl 2.9 int rsiz, tsiz;
220    
221     rsiz = CHK(C_RFLT) ? sizeof(COLOR) : sizeof(COLR);
222 gwlarson 2.19 tsiz = (CHK(C_TFLT) ? sizeof(float) :
223     CHK(C_TWRD) ? sizeof(uint16) : sizeof(uint8)) *
224 gregl 2.9 (CHK(C_GRY) ? 1 : 3);
225     cvts.r.p = (char *)malloc(rsiz*cvts.xmax);
226     cvts.t.p = (char *)malloc(tsiz*cvts.xmax);
227 schorsch 2.26 if ((cvts.r.p == NULL) | (cvts.t.p == NULL))
228 gregl 2.9 quiterr("no memory to allocate scanline buffers");
229     }
230    
231    
232 schorsch 2.28 static void
233     initfromtif(void) /* initialize conversion from TIFF input */
234 gregl 2.9 {
235     uint16 hi;
236 greg 2.22 char *cp;
237 gregl 2.9 float *fa, f1, f2;
238    
239 greg 2.21 CLR(C_GRY|C_GAMMA|C_PRIM|C_RFLT|C_TFLT|C_TWRD|C_CXFM);
240 gregl 2.9
241     TIFFGetFieldDefaulted(cvts.tif, TIFFTAG_PLANARCONFIG, &cvts.pconf);
242    
243     if (TIFFGetField(cvts.tif, TIFFTAG_PRIMARYCHROMATICITIES, &fa)) {
244     cvts.prims[RED][CIEX] = fa[0];
245     cvts.prims[RED][CIEY] = fa[1];
246     cvts.prims[GRN][CIEX] = fa[2];
247     cvts.prims[GRN][CIEY] = fa[3];
248     cvts.prims[BLU][CIEX] = fa[4];
249     cvts.prims[BLU][CIEY] = fa[5];
250     cvts.prims[WHT][CIEX] = 1./3.;
251     cvts.prims[WHT][CIEY] = 1./3.;
252     if (TIFFGetField(cvts.tif, TIFFTAG_WHITEPOINT, &fa)) {
253     cvts.prims[WHT][CIEX] = fa[0];
254     cvts.prims[WHT][CIEY] = fa[1];
255     }
256     SET(C_PRIM);
257     }
258    
259     if (!TIFFGetField(cvts.tif, TIFFTAG_COMPRESSION, &cvts.comp))
260     cvts.comp = COMPRESSION_NONE;
261    
262     if (TIFFGetField(cvts.tif, TIFFTAG_XRESOLUTION, &f1) &&
263     TIFFGetField(cvts.tif, TIFFTAG_YRESOLUTION, &f2))
264     cvts.pixrat = f1/f2;
265    
266 gregl 2.10 TIFFGetFieldDefaulted(cvts.tif, TIFFTAG_ORIENTATION, &cvts.orient);
267 gregl 2.9
268 gregl 2.10 if (!TIFFGetFieldDefaulted(cvts.tif, TIFFTAG_PHOTOMETRIC, &cvts.phot))
269     quiterr("TIFF has unspecified photometric type");
270    
271     switch (cvts.phot) {
272     case PHOTOMETRIC_LOGLUV:
273 gregl 2.9 SET(C_RFLT|C_TFLT);
274     if (!CHK(C_XYZE)) {
275     cpcolormat(cvts.cmat, xyz2rgbmat);
276     SET(C_CXFM|C_GAMUT);
277 gregl 2.10 } else if (cvts.comp == COMPRESSION_SGILOG)
278 greg 2.29 SET(C_GAMUT); /* may be outside XYZ gamut */
279 gregl 2.9 if (cvts.pconf != PLANARCONFIG_CONTIG)
280     quiterr("cannot handle separate Luv planes");
281 gregl 2.10 TIFFSetField(cvts.tif, TIFFTAG_SGILOGDATAFMT,
282 gregl 2.12 SGILOGDATAFMT_FLOAT);
283 gregl 2.9 cvts.tf = Luv2Color;
284     break;
285 gregl 2.10 case PHOTOMETRIC_LOGL:
286     SET(C_GRY|C_RFLT|C_TFLT|C_GAMUT);
287     cvts.pconf = PLANARCONFIG_CONTIG;
288     TIFFSetField(cvts.tif, TIFFTAG_SGILOGDATAFMT,
289 gregl 2.12 SGILOGDATAFMT_FLOAT);
290 gregl 2.10 cvts.tf = L2Color;
291     break;
292 gregl 2.11 case PHOTOMETRIC_YCBCR:
293     if (cvts.comp == COMPRESSION_JPEG &&
294     cvts.pconf == PLANARCONFIG_CONTIG) {
295     TIFFSetField(cvts.tif, TIFFTAG_JPEGCOLORMODE,
296     JPEGCOLORMODE_RGB);
297     cvts.phot = PHOTOMETRIC_RGB;
298     } else
299     quiterr("unsupported photometric type");
300     /* fall through */
301 gregl 2.10 case PHOTOMETRIC_RGB:
302 gwlarson 2.18 SET(C_GAMMA);
303 gregl 2.9 setcolrgam(cvts.gamcor);
304     if (CHK(C_XYZE)) {
305 greg 2.20 comprgb2xyzWBmat(cvts.cmat,
306 gregl 2.9 CHK(C_PRIM) ? cvts.prims : stdprims);
307     SET(C_CXFM);
308     }
309     if (!TIFFGetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, &hi) ||
310 gregl 2.10 hi != 3)
311     quiterr("unsupported samples per pixel for RGB");
312 greg 2.21 if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi))
313     hi = -1;
314     switch (hi) {
315     case 8:
316 gwlarson 2.18 cvts.tf = RGB2Colr;
317 greg 2.21 break;
318     case 16:
319 gwlarson 2.18 cvts.tf = RRGGBB2Color;
320 gwlarson 2.19 SET(C_RFLT|C_TWRD);
321 greg 2.21 break;
322     case 32:
323     cvts.tf = RfGfBf2Color;
324     SET(C_RFLT|C_TFLT);
325     break;
326     default:
327     quiterr("unsupported bits per sample for RGB");
328 gwlarson 2.18 }
329 gregl 2.9 break;
330 gregl 2.10 case PHOTOMETRIC_MINISBLACK:
331 gwlarson 2.18 SET(C_GRY|C_GAMMA);
332 gregl 2.15 setcolrgam(cvts.gamcor);
333 gregl 2.10 cvts.pconf = PLANARCONFIG_CONTIG;
334     if (!TIFFGetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, &hi) ||
335     hi != 1)
336     quiterr("unsupported samples per pixel for greyscale");
337 greg 2.21 if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi))
338     hi = -1;
339     switch (hi) {
340     case 8:
341 gwlarson 2.18 cvts.tf = Gry2Colr;
342 greg 2.21 break;
343     case 16:
344 gwlarson 2.18 cvts.tf = GGry2Color;
345 gwlarson 2.19 SET(C_RFLT|C_TWRD);
346 greg 2.21 break;
347     case 32:
348     cvts.tf = Gryf2Color;
349     SET(C_RFLT|C_TFLT);
350     break;
351     default:
352     quiterr("unsupported bits per sample for Gray");
353 gwlarson 2.18 }
354 gregl 2.10 break;
355     default:
356     quiterr("unsupported photometric type");
357     break;
358 gregl 2.9 }
359    
360     if (!TIFFGetField(cvts.tif, TIFFTAG_IMAGEWIDTH, &cvts.xmax) ||
361     !TIFFGetField(cvts.tif, TIFFTAG_IMAGELENGTH, &cvts.ymax))
362 greg 1.1 quiterr("unknown input image resolution");
363 gregl 2.9
364     if (!TIFFGetField(cvts.tif, TIFFTAG_STONITS, &cvts.stonits))
365 greg 2.32 cvts.stonits = -1.;
366 greg 2.22
367     if (!TIFFGetField(cvts.tif, TIFFTAG_DATETIME, &cp))
368     cvts.capdate[0] = '\0';
369     else {
370     strncpy(cvts.capdate, cp, 19);
371     cvts.capdate[19] = '\0';
372     }
373     if (!TIFFGetField(cvts.tif, TIFFTAG_ARTIST, &cp))
374     cvts.owner[0] = '\0';
375     else {
376     strncpy(cvts.owner, cp, sizeof(cvts.owner));
377     cvts.owner[sizeof(cvts.owner)-1] = '\0';
378     }
379 gregl 2.9 /* add to Radiance header */
380     if (cvts.pixrat < .99 || cvts.pixrat > 1.01)
381     fputaspect(cvts.pixrat, cvts.rfp);
382     if (CHK(C_XYZE)) {
383 greg 2.32 if (cvts.stonits > .0)
384     fputexpos(pow(2.,(double)cvts.bradj)/cvts.stonits, cvts.rfp);
385 gregl 2.9 fputformat(CIEFMT, cvts.rfp);
386     } else {
387     if (CHK(C_PRIM))
388     fputprims(cvts.prims, cvts.rfp);
389 greg 2.32 if (cvts.stonits > .0)
390     fputexpos(WHTEFFICACY*pow(2.,(double)cvts.bradj)/cvts.stonits,
391     cvts.rfp);
392 gregl 2.9 fputformat(COLRFMT, cvts.rfp);
393     }
394 greg 2.22 if (cvts.capdate[0])
395     fprintf(cvts.rfp, "%s %s\n", TMSTR, cvts.capdate);
396     if (cvts.owner[0])
397     fprintf(cvts.rfp, "%s %s\n", OWNSTR, cvts.owner);
398 gregl 2.9
399     allocbufs(); /* allocate scanline buffers */
400     }
401    
402    
403 schorsch 2.28 static void
404     tiff2ra( /* convert TIFF image to Radiance picture */
405     int ac,
406     char *av[]
407     )
408 gregl 2.9 {
409     int32 y;
410     /* open TIFF input */
411     if ((cvts.tif = TIFFOpen(av[ac], "r")) == NULL)
412     quiterr("cannot open TIFF input");
413     /* open Radiance output */
414     if (av[ac+1] == NULL || !strcmp(av[ac+1], "-"))
415     cvts.rfp = stdout;
416     else if ((cvts.rfp = fopen(av[ac+1], "w")) == NULL)
417     quiterr("cannot open Radiance output picture");
418     /* start output header */
419     newheader("RADIANCE", cvts.rfp);
420     printargs(ac, av, cvts.rfp);
421    
422     initfromtif(); /* initialize conversion */
423    
424     fputc('\n', cvts.rfp); /* finish Radiance header */
425     fputresolu(pixorder(), (int)cvts.xmax, (int)cvts.ymax, cvts.rfp);
426    
427     for (y = 0; y < cvts.ymax; y++) /* convert image */
428     (*cvts.tf)(y);
429     /* clean up */
430     fclose(cvts.rfp);
431     TIFFClose(cvts.tif);
432     }
433    
434    
435 schorsch 2.27 static int
436     headline( /* process Radiance input header line */
437     char *s,
438     void *p
439     )
440 gregl 2.9 {
441 greg 2.22 static int tmstrlen = 0;
442     static int ownstrlen = 0;
443 gregl 2.9 char fmt[32];
444    
445 greg 2.22 if (!tmstrlen)
446     tmstrlen = strlen(TMSTR);
447     if (!ownstrlen)
448     ownstrlen = strlen(OWNSTR);
449 gregl 2.9 if (formatval(fmt, s)) {
450     if (!strcmp(fmt, COLRFMT))
451     CLR(C_XYZE);
452     else if (!strcmp(fmt, CIEFMT))
453     SET(C_XYZE);
454     else
455     quiterr("unrecognized input picture format");
456 gwlarson 2.17 return(1);
457 gregl 2.9 }
458     if (isexpos(s)) {
459     cvts.stonits /= exposval(s);
460 gwlarson 2.17 return(1);
461 gregl 2.9 }
462     if (isaspect(s)) {
463     cvts.pixrat *= aspectval(s);
464 gwlarson 2.17 return(1);
465 gregl 2.9 }
466     if (isprims(s)) {
467     primsval(cvts.prims, s);
468     SET(C_PRIM);
469 gwlarson 2.17 return(1);
470 gregl 2.9 }
471 greg 2.22 if (isdate(s)) {
472     if (s[tmstrlen] == ' ')
473     strncpy(cvts.capdate, s+tmstrlen+1, 19);
474     else
475     strncpy(cvts.capdate, s+tmstrlen, 19);
476     cvts.capdate[19] = '\0';
477     return(1);
478     }
479     if (!strncmp(s, OWNSTR, ownstrlen)) {
480     register char *cp = s + ownstrlen;
481    
482     while (isspace(*cp))
483     ++cp;
484     strncpy(cvts.owner, cp, sizeof(cvts.owner));
485     cvts.owner[sizeof(cvts.owner)-1] = '\0';
486     for (cp = cvts.owner; *cp; cp++)
487     ;
488     while (cp > cvts.owner && isspace(cp[-1]))
489     *--cp = '\0';
490     return(1);
491     }
492 gwlarson 2.17 return(0);
493 gregl 2.9 }
494    
495    
496 schorsch 2.28 static void
497     initfromrad(void) /* initialize input from a Radiance picture */
498 gregl 2.9 {
499     int i1, i2, po;
500     /* read Radiance header */
501 greg 2.21 CLR(C_RFLT|C_XYZE|C_PRIM|C_GAMMA|C_CXFM);
502 greg 2.22 cvts.capdate[0] = '\0';
503     cvts.owner[0] = '\0';
504 gregl 2.9 cvts.stonits = 1.;
505     cvts.pixrat = 1.;
506     cvts.pconf = PLANARCONFIG_CONTIG;
507     getheader(cvts.rfp, headline, NULL);
508     if ((po = fgetresolu(&i1, &i2, cvts.rfp)) < 0)
509     quiterr("bad Radiance picture");
510     cvts.xmax = i1; cvts.ymax = i2;
511     for (i1 = 0; i1 < 8; i1++) /* interpret orientation */
512     if (ortab[i1] == po) {
513     cvts.orient = i1 + 1;
514     break;
515 greg 1.1 }
516 gregl 2.9 if (i1 >= 8)
517     quiterr("internal error 1 in initfromrad");
518     if (!(po & YMAJOR))
519     cvts.pixrat = 1./cvts.pixrat;
520     if (!CHK(C_XYZE))
521     cvts.stonits *= WHTEFFICACY;
522     /* set up conversion */
523     TIFFSetField(cvts.tif, TIFFTAG_COMPRESSION, cvts.comp);
524 gregl 2.10 TIFFSetField(cvts.tif, TIFFTAG_PHOTOMETRIC, cvts.phot);
525 gregl 2.9
526 gregl 2.10 switch (cvts.phot) {
527     case PHOTOMETRIC_LOGLUV:
528 gregl 2.9 SET(C_RFLT|C_TFLT);
529 greg 2.21 CLR(C_GRY|C_TWRD);
530 gregl 2.9 if (!CHK(C_XYZE)) {
531 greg 2.20 comprgb2xyzWBmat(cvts.cmat,
532     CHK(C_PRIM) ? cvts.prims : stdprims);
533 gregl 2.9 SET(C_CXFM);
534     }
535 gregl 2.10 if (cvts.comp != COMPRESSION_SGILOG &&
536     cvts.comp != COMPRESSION_SGILOG24)
537     quiterr("internal error 2 in initfromrad");
538     TIFFSetField(cvts.tif, TIFFTAG_SGILOGDATAFMT,
539 gregl 2.12 SGILOGDATAFMT_FLOAT);
540 gregl 2.9 cvts.tf = Color2Luv;
541     break;
542 gregl 2.10 case PHOTOMETRIC_LOGL:
543     SET(C_GRY|C_RFLT|C_TFLT);
544 greg 2.21 CLR(C_TWRD);
545 gregl 2.10 if (cvts.comp != COMPRESSION_SGILOG)
546     quiterr("internal error 3 in initfromrad");
547     TIFFSetField(cvts.tif, TIFFTAG_SGILOGDATAFMT,
548 gregl 2.12 SGILOGDATAFMT_FLOAT);
549 gregl 2.10 cvts.tf = Color2L;
550     break;
551     case PHOTOMETRIC_RGB:
552 gregl 2.9 SET(C_GAMMA|C_GAMUT);
553 gregl 2.10 CLR(C_GRY);
554 gregl 2.9 setcolrgam(cvts.gamcor);
555     if (CHK(C_XYZE)) {
556 greg 2.20 compxyz2rgbWBmat(cvts.cmat,
557 gregl 2.9 CHK(C_PRIM) ? cvts.prims : stdprims);
558     SET(C_CXFM);
559     }
560     if (CHK(C_PRIM)) {
561     TIFFSetField(cvts.tif, TIFFTAG_PRIMARYCHROMATICITIES,
562     (float *)cvts.prims);
563     TIFFSetField(cvts.tif, TIFFTAG_WHITEPOINT,
564     (float *)cvts.prims[WHT]);
565     }
566 greg 2.21 if (CHK(C_TWRD)) {
567     cvts.tf = Color2RRGGBB;
568     SET(C_RFLT);
569     } else if (CHK(C_TFLT)) {
570 greg 2.23 TIFFSetField(cvts.tif, TIFFTAG_SAMPLEFORMAT,
571     SAMPLEFORMAT_IEEEFP);
572 greg 2.21 cvts.tf = Color2RfGfBf;
573     SET(C_RFLT);
574 greg 2.29 CLR(C_GAMUT);
575 greg 2.21 } else
576     cvts.tf = Colr2RGB;
577 gregl 2.9 break;
578 gregl 2.10 case PHOTOMETRIC_MINISBLACK:
579     SET(C_GRY|C_GAMMA|C_GAMUT);
580     setcolrgam(cvts.gamcor);
581 greg 2.21 if (CHK(C_TWRD)) {
582     cvts.tf = Color2GGry;
583     SET(C_RFLT);
584     } else if (CHK(C_TFLT)) {
585 greg 2.23 TIFFSetField(cvts.tif, TIFFTAG_SAMPLEFORMAT,
586     SAMPLEFORMAT_IEEEFP);
587 greg 2.21 cvts.tf = Color2Gryf;
588     SET(C_RFLT);
589     } else
590     cvts.tf = Colr2Gry;
591 gregl 2.10 break;
592     default:
593     quiterr("internal error 4 in initfromrad");
594     break;
595 greg 1.1 }
596 gregl 2.9 /* set other TIFF fields */
597     TIFFSetField(cvts.tif, TIFFTAG_IMAGEWIDTH, cvts.xmax);
598     TIFFSetField(cvts.tif, TIFFTAG_IMAGELENGTH, cvts.ymax);
599     TIFFSetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, CHK(C_GRY) ? 1 : 3);
600 greg 2.21 TIFFSetField(cvts.tif, TIFFTAG_BITSPERSAMPLE,
601     CHK(C_TFLT) ? 32 : CHK(C_TWRD) ? 16 : 8);
602 gregl 2.9 TIFFSetField(cvts.tif, TIFFTAG_XRESOLUTION, 72.);
603     TIFFSetField(cvts.tif, TIFFTAG_YRESOLUTION, 72./cvts.pixrat);
604     TIFFSetField(cvts.tif, TIFFTAG_ORIENTATION, cvts.orient);
605     TIFFSetField(cvts.tif, TIFFTAG_RESOLUTIONUNIT, 2);
606     TIFFSetField(cvts.tif, TIFFTAG_PLANARCONFIG, cvts.pconf);
607     TIFFSetField(cvts.tif, TIFFTAG_STONITS,
608     cvts.stonits/pow(2.,(double)cvts.bradj));
609 greg 2.22 if (cvts.capdate[0])
610     TIFFSetField(cvts.tif, TIFFTAG_DATETIME, cvts.capdate);
611     if (cvts.owner[0])
612     TIFFSetField(cvts.tif, TIFFTAG_ARTIST, cvts.owner);
613 gregl 2.10 if (cvts.comp == COMPRESSION_NONE)
614     i1 = TIFFScanlineSize(cvts.tif);
615     else
616     i1 = 3*cvts.xmax; /* conservative guess */
617 gregl 2.9 i2 = 8192/i1; /* compute good strip size */
618     if (i2 < 1) i2 = 1;
619     TIFFSetField(cvts.tif, TIFFTAG_ROWSPERSTRIP, (uint32)i2);
620    
621     allocbufs(); /* allocate scanline buffers */
622     }
623    
624    
625 schorsch 2.28 static void
626     ra2tiff( /* convert Radiance picture to TIFF image */
627     int ac,
628     char *av[]
629     )
630 gregl 2.9 {
631     uint32 y;
632     /* open Radiance file */
633     if (!strcmp(av[ac], "-"))
634     cvts.rfp = stdin;
635     else if ((cvts.rfp = fopen(av[ac], "r")) == NULL)
636     quiterr("cannot open Radiance input picture");
637     /* open TIFF file */
638     if ((cvts.tif = TIFFOpen(av[ac+1], "w")) == NULL)
639     quiterr("cannot open TIFF output");
640    
641     initfromrad(); /* initialize conversion */
642    
643     for (y = 0; y < cvts.ymax; y++) /* convert image */
644     (*cvts.tf)(y);
645 greg 1.1 /* clean up */
646 gregl 2.9 TIFFClose(cvts.tif);
647     fclose(cvts.rfp);
648     }
649    
650    
651 schorsch 2.28 static void
652     Luv2Color( /* read/convert/write Luv->COLOR scanline */
653     uint32 y
654     )
655 gregl 2.9 {
656     register int x;
657    
658 gwlarson 2.19 if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT))
659 gregl 2.9 quiterr("internal error 1 in Luv2Color");
660    
661 greg 2.31 if (cvts.pconf != PLANARCONFIG_CONTIG)
662     quiterr("cannot handle separate 32-bit color planes");
663    
664 gregl 2.9 if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
665     quiterr("error reading TIFF input");
666 greg 2.21 /* also works for float RGB */
667 gregl 2.9 for (x = cvts.xmax; x--; ) {
668 greg 2.21 setcolor(cvts.r.colors[x],
669     cvts.t.fp[3*x],
670     cvts.t.fp[3*x + 1],
671     cvts.t.fp[3*x + 2]);
672 gregl 2.9 if (CHK(C_CXFM))
673     colortrans(cvts.r.colors[x], cvts.cmat,
674     cvts.r.colors[x]);
675     if (CHK(C_GAMUT))
676     clipgamut(cvts.r.colors[x], cvts.t.fp[3*x + 1],
677     CGAMUT_LOWER, cblack, cwhite);
678     }
679     if (cvts.bradj) {
680     double m = pow(2.,(double)cvts.bradj);
681     for (x = cvts.xmax; x--; )
682     scalecolor(cvts.r.colors[x], m);
683     }
684    
685     if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
686     quiterr("error writing Radiance picture");
687     }
688    
689    
690 schorsch 2.28 static void
691     RRGGBB2Color( /* read/convert/write RGB16->COLOR scanline */
692     uint32 y
693     )
694 gwlarson 2.18 {
695 schorsch 2.26 int dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
696 gwlarson 2.18 register double d;
697     register int x;
698    
699 gwlarson 2.19 if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_TWRD|C_RFLT))
700 gwlarson 2.18 quiterr("internal error 1 in RRGGBB2Color");
701    
702 greg 2.31 if (cvts.pconf != PLANARCONFIG_CONTIG)
703     quiterr("cannot handle separate 16-bit color planes");
704    
705 gwlarson 2.18 if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
706     quiterr("error reading TIFF input");
707    
708     for (x = cvts.xmax; x--; ) {
709     d = (cvts.t.wp[3*x] + 0.5)*(1./(1L<<16));
710     if (dogamma) d = pow(d, cvts.gamcor);
711     colval(cvts.r.colors[x],RED) = d;
712     d = (cvts.t.wp[3*x + 1] + 0.5)*(1./(1L<<16));
713     if (dogamma) d = pow(d, cvts.gamcor);
714     colval(cvts.r.colors[x],GRN) = d;
715     d = (cvts.t.wp[3*x + 2] + 0.5)*(1./(1L<<16));
716     if (dogamma) d = pow(d, cvts.gamcor);
717     colval(cvts.r.colors[x],BLU) = d;
718     if (CHK(C_CXFM))
719     colortrans(cvts.r.colors[x], cvts.cmat,
720     cvts.r.colors[x]);
721     }
722     if (cvts.bradj) {
723     d = pow(2.,(double)cvts.bradj);
724     for (x = cvts.xmax; x--; )
725     scalecolor(cvts.r.colors[x], d);
726     }
727    
728     if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
729     quiterr("error writing Radiance picture");
730     }
731    
732    
733 schorsch 2.28 static void
734     L2Color( /* read/convert/write Lfloat->COLOR scanline */
735     uint32 y
736     )
737 gregl 2.9 {
738 greg 2.21 float m = pow(2., (double)cvts.bradj);
739 gregl 2.9 register int x;
740    
741 gwlarson 2.19 if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
742 gregl 2.9 quiterr("internal error 1 in L2Color");
743    
744     if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
745     quiterr("error reading TIFF input");
746 greg 2.21 /* also works for float greyscale */
747     for (x = cvts.xmax; x--; ) {
748     register float f = cvts.t.fp[x];
749     if (cvts.bradj) f *= m;
750     setcolor(cvts.r.colors[x], f, f, f);
751     }
752 gregl 2.9 if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
753     quiterr("error writing Radiance picture");
754     }
755    
756    
757 schorsch 2.28 static void
758     RGB2Colr( /* read/convert/write RGB->COLR scanline */
759     uint32 y
760     )
761 gregl 2.9 {
762     COLOR ctmp;
763     register int x;
764    
765 gwlarson 2.19 if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY))
766 gregl 2.9 quiterr("internal error 1 in RGB2Colr");
767    
768     if (cvts.pconf == PLANARCONFIG_CONTIG) {
769     if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
770     goto readerr;
771     for (x = cvts.xmax; x--; ) {
772     cvts.r.colrs[x][RED] = cvts.t.bp[3*x];
773     cvts.r.colrs[x][GRN] = cvts.t.bp[3*x + 1];
774     cvts.r.colrs[x][BLU] = cvts.t.bp[3*x + 2];
775     }
776     } else {
777     if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
778     goto readerr;
779     if (TIFFReadScanline(cvts.tif,
780 gregl 2.14 (tdata_t)(cvts.t.bp + cvts.xmax), y, 1) < 0)
781 gregl 2.9 goto readerr;
782     if (TIFFReadScanline(cvts.tif,
783 gregl 2.14 (tdata_t)(cvts.t.bp + 2*cvts.xmax), y, 2) < 0)
784 gregl 2.9 goto readerr;
785     for (x = cvts.xmax; x--; ) {
786     cvts.r.colrs[x][RED] = cvts.t.bp[x];
787     cvts.r.colrs[x][GRN] = cvts.t.bp[cvts.xmax + x];
788     cvts.r.colrs[x][BLU] = cvts.t.bp[2*cvts.xmax + x];
789     }
790     }
791    
792     gambs_colrs(cvts.r.colrs, cvts.xmax);
793     if (CHK(C_CXFM))
794     for (x = cvts.xmax; x--; ) {
795     colr_color(ctmp, cvts.r.colrs[x]);
796     colortrans(ctmp, cvts.cmat, ctmp);
797     if (CHK(C_GAMUT)) /* !CHK(C_XYZE) */
798     clipgamut(ctmp, bright(ctmp), CGAMUT_LOWER,
799     cblack, cwhite);
800     setcolr(cvts.r.colrs[x], colval(ctmp,RED),
801     colval(ctmp,GRN), colval(ctmp,BLU));
802     }
803     if (cvts.bradj)
804     shiftcolrs(cvts.r.colrs, cvts.xmax, cvts.bradj);
805    
806     if (fwritecolrs(cvts.r.colrs, cvts.xmax, cvts.rfp) < 0)
807     quiterr("error writing Radiance picture");
808 greg 1.1 return;
809     readerr:
810     quiterr("error reading TIFF input");
811     }
812    
813    
814 schorsch 2.28 static void
815     Gry2Colr( /* read/convert/write G8->COLR scanline */
816     uint32 y
817     )
818 greg 1.1 {
819     register int x;
820 gregl 2.9
821 gwlarson 2.19 if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != C_GRY)
822 gregl 2.9 quiterr("internal error 1 in Gry2Colr");
823    
824     if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
825     quiterr("error reading TIFF input");
826    
827     for (x = cvts.xmax; x--; )
828     cvts.r.colrs[x][RED] =
829     cvts.r.colrs[x][GRN] =
830     cvts.r.colrs[x][BLU] = cvts.t.bp[x];
831    
832     gambs_colrs(cvts.r.colrs, cvts.xmax);
833     if (cvts.bradj)
834     shiftcolrs(cvts.r.colrs, cvts.xmax, cvts.bradj);
835    
836     if (fwritecolrs(cvts.r.colrs, cvts.xmax, cvts.rfp) < 0)
837     quiterr("error writing Radiance picture");
838     }
839    
840    
841 schorsch 2.28 static void
842     GGry2Color( /* read/convert/write G16->COLOR scanline */
843     uint32 y
844     )
845 gwlarson 2.18 {
846 schorsch 2.26 int dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
847 gwlarson 2.18 double m;
848     register double d;
849     register int x;
850    
851 gwlarson 2.19 if (CHK(C_TFLT|C_TWRD|C_GRY|C_RFLT) != (C_GRY|C_RFLT|C_TWRD))
852 gwlarson 2.18 quiterr("internal error 1 in GGry2Color");
853    
854     if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
855     quiterr("error reading TIFF input");
856    
857     if (cvts.bradj)
858     m = pow(2., (double)cvts.bradj);
859     for (x = cvts.xmax; x--; ) {
860     d = (cvts.t.wp[x] + 0.5)*(1./(1L<<16));
861     if (dogamma) d = pow(d, cvts.gamcor);
862     if (cvts.bradj) d *= m;
863     colval(cvts.r.colors[x],RED) =
864     colval(cvts.r.colors[x],GRN) =
865     colval(cvts.r.colors[x],BLU) = d;
866     }
867     if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
868     quiterr("error writing Radiance picture");
869     }
870    
871    
872 schorsch 2.28 static void
873     Color2GGry( /* read/convert/write COLOR->G16 scanline */
874     uint32 y
875     )
876 greg 2.21 {
877 schorsch 2.26 int dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
878 greg 2.21 float m = pow(2.,(double)cvts.bradj);
879     register int x;
880    
881     if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TWRD|C_GRY))
882     quiterr("internal error 1 in Color2GGry");
883    
884     if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
885     quiterr("error reading Radiance picture");
886    
887     for (x = cvts.xmax; x--; ) {
888     register float f = m*( CHK(C_XYZE) ?
889     colval(cvts.r.colors[x],CIEY)
890     : bright(cvts.r.colors[x]) );
891     if (f <= 0)
892     cvts.t.wp[x] = 0;
893     else if (f >= 1)
894     cvts.t.wp[x] = 0xffff;
895     else if (dogamma)
896     cvts.t.wp[x] = (int)((float)(1L<<16) *
897     pow(f, 1./cvts.gamcor));
898     else
899     cvts.t.wp[x] = (int)((float)(1L<<16) * f);
900     }
901    
902     if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
903     quiterr("error writing TIFF output");
904     }
905    
906    
907 schorsch 2.28 static void
908     Color2L( /* read/convert/write COLOR->Lfloat scanline */
909     uint32 y
910     )
911 gregl 2.9 {
912 greg 2.21 float m = pow(2.,(double)cvts.bradj);
913 gregl 2.9 register int x;
914    
915 gwlarson 2.19 if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
916 gregl 2.9 quiterr("internal error 1 in Color2L");
917    
918     if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
919     quiterr("error reading Radiance picture");
920    
921     for (x = cvts.xmax; x--; )
922     cvts.t.fp[x] = m*( CHK(C_XYZE) ? colval(cvts.r.colors[x],CIEY)
923     : bright(cvts.r.colors[x]) );
924    
925     if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
926     quiterr("error writing TIFF output");
927     }
928    
929    
930 schorsch 2.28 static void
931     Color2Luv( /* read/convert/write COLOR->Luv scanline */
932     uint32 y
933     )
934 gregl 2.9 {
935     register int x;
936    
937 gwlarson 2.19 if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT))
938 gregl 2.9 quiterr("internal error 1 in Color2Luv");
939    
940     if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
941     quiterr("error reading Radiance picture");
942    
943     if (CHK(C_CXFM))
944     for (x = cvts.xmax; x--; )
945     colortrans(cvts.r.colors[x], cvts.cmat,
946     cvts.r.colors[x]);
947     if (cvts.bradj) {
948     double m = pow(2.,(double)cvts.bradj);
949     for (x = cvts.xmax; x--; )
950     scalecolor(cvts.r.colors[x], m);
951     }
952 greg 2.21 /* also works for float RGB */
953 gregl 2.9 for (x = cvts.xmax; x--; ) {
954 gwlarson 2.16 cvts.t.fp[3*x] = colval(cvts.r.colors[x],CIEX);
955     cvts.t.fp[3*x+1] = colval(cvts.r.colors[x],CIEY);
956     cvts.t.fp[3*x+2] = colval(cvts.r.colors[x],CIEZ);
957 gregl 2.9 }
958    
959     if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
960     quiterr("error writing TIFF output");
961     }
962    
963    
964 schorsch 2.28 static void
965     Color2RRGGBB( /* read/convert/write COLOR->RGB16 scanline */
966     uint32 y
967     )
968 greg 2.21 {
969 schorsch 2.26 int dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
970 greg 2.21 float m = pow(2.,(double)cvts.bradj);
971     register int x, i;
972    
973     if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TWRD))
974     quiterr("internal error 1 in Color2RRGGBB");
975    
976     if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
977     quiterr("error reading Radiance picture");
978    
979 greg 2.29 for (x = cvts.xmax; x--; ) {
980     if (CHK(C_CXFM)) {
981     colortrans(cvts.r.colors[x], cvts.cmat,
982     cvts.r.colors[x]);
983     if (CHK(C_GAMUT))
984 greg 2.30 clipgamut(cvts.r.colors[x], bright(cvts.r.colors[x]),
985 greg 2.29 CGAMUT_LOWER, cblack, cwhite);
986     }
987 greg 2.21 for (i = 3; i--; ) {
988     register float f = m*colval(cvts.r.colors[x],i);
989     if (f <= 0)
990     cvts.t.wp[3*x + i] = 0;
991     else if (f >= 1)
992     cvts.t.wp[3*x + i] = 0xffff;
993     else if (dogamma)
994     cvts.t.wp[3*x + i] = (int)((float)(1L<<16) *
995     pow(f, 1./cvts.gamcor));
996     else
997     cvts.t.wp[3*x + i] = (int)((float)(1L<<16)*f);
998     }
999 greg 2.29 }
1000 greg 2.21
1001     if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
1002     quiterr("error writing TIFF output");
1003     }
1004    
1005    
1006 schorsch 2.28 static void
1007     Colr2Gry( /* read/convert/write COLR->RGB scanline */
1008     uint32 y
1009     )
1010 gregl 2.9 {
1011     register int x;
1012    
1013 gwlarson 2.19 if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != C_GRY)
1014 gregl 2.9 quiterr("internal error 1 in Colr2Gry");
1015    
1016     if (freadcolrs(cvts.r.colrs, cvts.xmax, cvts.rfp) < 0)
1017     quiterr("error reading Radiance picture");
1018    
1019     if (cvts.bradj)
1020     shiftcolrs(cvts.r.colrs, cvts.xmax, cvts.bradj);
1021     for (x = cvts.xmax; x--; )
1022     colval(cvts.r.colrs[x],CIEY) = normbright(cvts.r.colrs[x]);
1023     colrs_gambs(cvts.r.colrs, cvts.xmax);
1024    
1025     for (x = cvts.xmax; x--; )
1026     cvts.t.bp[x] = colval(cvts.r.colrs[x],CIEY);
1027    
1028     if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
1029     quiterr("error writing TIFF output");
1030     }
1031    
1032    
1033 schorsch 2.28 static void
1034     Colr2RGB( /* read/convert/write COLR->RGB scanline */
1035     uint32 y
1036     )
1037 gregl 2.9 {
1038     COLOR ctmp;
1039     register int x;
1040    
1041 gwlarson 2.19 if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY))
1042 gregl 2.9 quiterr("internal error 1 in Colr2RGB");
1043    
1044     if (freadcolrs(cvts.r.colrs, cvts.xmax, cvts.rfp) < 0)
1045     quiterr("error reading Radiance picture");
1046    
1047     if (cvts.bradj)
1048     shiftcolrs(cvts.r.colrs, cvts.xmax, cvts.bradj);
1049     if (CHK(C_CXFM))
1050     for (x = cvts.xmax; x--; ) {
1051     colr_color(ctmp, cvts.r.colrs[x]);
1052     colortrans(ctmp, cvts.cmat, ctmp);
1053     if (CHK(C_GAMUT))
1054     clipgamut(ctmp, bright(ctmp), CGAMUT,
1055     cblack, cwhite);
1056     setcolr(cvts.r.colrs[x], colval(ctmp,RED),
1057     colval(ctmp,GRN), colval(ctmp,BLU));
1058 greg 1.1 }
1059 gregl 2.9 colrs_gambs(cvts.r.colrs, cvts.xmax);
1060    
1061     for (x = cvts.xmax; x--; ) {
1062     cvts.t.bp[3*x] = cvts.r.colrs[x][RED];
1063     cvts.t.bp[3*x+1] = cvts.r.colrs[x][GRN];
1064     cvts.t.bp[3*x+2] = cvts.r.colrs[x][BLU];
1065 greg 1.1 }
1066 gregl 2.9
1067     if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
1068     quiterr("error writing TIFF output");
1069 greg 1.1 }