ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/ra_tiff.c
(Generate patch)

Comparing ray/src/px/ra_tiff.c (file contents):
Revision 2.15 by gregl, Wed Sep 24 14:54:03 1997 UTC vs.
Revision 2.22 by greg, Tue Jul 1 22:44:02 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1997 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  Program to convert between RADIANCE and TIFF files.
6 < *  Added experimental LogLuv encodings 7/97 (GWL).
6 > *  Added LogLuv encodings 7/97 (GWL).
7 > *  Added white-balance adjustment 10/01 (GW).
8   */
9  
10   #include  <stdio.h>
11   #include  <math.h>
12 + #include  <ctype.h>
13   #include  "tiffio.h"
14   #include  "color.h"
15   #include  "resolu.h"
16  
17   #define  GAMCOR         2.2             /* default gamma */
18  
20 #ifndef malloc
21 extern char  *malloc();
22 #endif
19                                  /* conversion flags */
20   #define C_CXFM          0x1             /* needs color transformation */
21   #define C_GAMUT         0x2             /* needs gamut mapping */
# Line 28 | Line 24 | extern char  *malloc();
24   #define C_XYZE          0x10            /* Radiance is XYZE */
25   #define C_RFLT          0x20            /* Radiance data is float */
26   #define C_TFLT          0x40            /* TIFF data is float */
27 < #define C_PRIM          0x80            /* has assigned primaries */
27 > #define C_TWRD          0x80            /* TIFF data is 16-bit */
28 > #define C_PRIM          0x100           /* has assigned primaries */
29  
30   struct {
31          uint16  flags;          /* conversion flags (defined above) */
32 +        char    capdate[20];    /* capture date/time */
33 +        char    owner[256];     /* content owner */
34          uint16  comp;           /* TIFF compression type */
35          uint16  phot;           /* TIFF photometric type */
36          uint16  pconf;          /* TIFF planar configuration */
# Line 52 | Line 51 | struct {
51          } r;                    /* Radiance scanline */
52          union {
53                  uint8   *bp;            /* byte pointer */
54 +                uint16  *wp;            /* word pointer */
55                  float   *fp;            /* float pointer */
56                  char    *p;             /* generic pointer */
57          } t;                    /* TIFF scanline */
58 <        int     (*tf)();        /* translation procedure */
58 >        void    (*tf)();        /* translation procedure */
59   }       cvts = {        /* conversion structure */
60 <        0, COMPRESSION_NONE, PHOTOMETRIC_RGB,
60 >        0, "", "", COMPRESSION_NONE, PHOTOMETRIC_RGB,
61          PLANARCONFIG_CONTIG, GAMCOR, 0, 1, 1., 1.,
62   };
63  
# Line 66 | Line 66 | struct {
66   #define CLR(f)          (cvts.flags &= ~(f))
67   #define TGL(f)          (cvts.flags ^= (f))
68  
69 < int     Luv2Color(), L2Color(), RGB2Colr(), Gry2Colr();
70 < int     Color2Luv(), Color2L(), Colr2RGB(), Colr2Gry();
69 > void    Luv2Color(), L2Color(), RGB2Colr(), Gry2Colr();
70 > void    Color2Luv(), Color2L(), Colr2RGB(), Colr2Gry();
71 > void    RRGGBB2Color(), GGry2Color(), Color2RRGGBB(), Color2GGry();
72  
73 + #define RfGfBf2Color    Luv2Color
74 + #define Gryf2Color      L2Color
75 + #define Color2Gryf      Color2L
76 + #define Color2RfGfBf    Color2Luv
77 +
78   short   ortab[8] = {            /* orientation conversion table */
79          YMAJOR|YDECR,
80          YMAJOR|YDECR|XDECR,
# Line 82 | Line 88 | short  ortab[8] = {            /* orientation conversion table */
88  
89   #define pixorder()      ortab[cvts.orient-1]
90  
91 + extern char     TMSTR[];        /* "CAPDATE=" from header.c */
92 + char            OWNSTR[] = "OWNER=";
93 +
94   char  *progname;
95  
96  
# Line 114 | Line 123 | char  *argv[];
123                                  cvts.comp = COMPRESSION_SGILOG24;
124                                  cvts.phot = PHOTOMETRIC_LOGLUV;
125                                  break;
126 +                        case 'w':               /* 16-bit/primary output? */
127 +                                TGL(C_TWRD);
128 +                                break;
129 +                        case 'f':               /* IEEE float output? */
130 +                                TGL(C_TFLT);
131 +                                break;
132                          case 'b':               /* greyscale output? */
133                                  TGL(C_GRY);
134                                  break;
# Line 144 | Line 159 | doneopts:
159  
160                  if (i != argc-2)
161                          goto userr;
162 <
163 <                if (CHK(C_GRY))         /* consistency corrections */
162 >                                                /* consistency checks */
163 >                if (CHK(C_GRY))
164                          if (cvts.phot == PHOTOMETRIC_RGB)
165                                  cvts.phot = PHOTOMETRIC_MINISBLACK;
166                          else {
167                                  cvts.phot = PHOTOMETRIC_LOGL;
168                                  cvts.comp = COMPRESSION_SGILOG;
169                          }
170 +                if (CHK(C_TWRD|C_TFLT) == (C_TWRD|C_TFLT))
171 +                        goto userr;
172  
173                  ra2tiff(i, argv);
174          }
# Line 159 | Line 176 | doneopts:
176          exit(0);
177   userr:
178          fprintf(stderr,
179 <        "Usage: %s [-z|-L|-l][-b][-e +/-stops][-g gamma] {in.pic|-} out.tif\n",
179 >        "Usage: %s [-z|-L|-l|-f|-w][-b][-e +/-stops][-g gamma] {in.pic|-} out.tif\n",
180                          progname);
181          fprintf(stderr,
182          "   Or: %s -r [-x][-e +/-stops][-g gamma] in.tif [out.pic|-]\n",
# Line 184 | Line 201 | allocbufs()                    /* allocate scanline buffers */
201          int     rsiz, tsiz;
202  
203          rsiz = CHK(C_RFLT) ? sizeof(COLOR) : sizeof(COLR);
204 <        tsiz = (CHK(C_TFLT) ? sizeof(float) : sizeof(uint8)) *
204 >        tsiz = (CHK(C_TFLT) ? sizeof(float) :
205 >                        CHK(C_TWRD) ? sizeof(uint16) : sizeof(uint8)) *
206                          (CHK(C_GRY) ? 1 : 3);
207          cvts.r.p = (char *)malloc(rsiz*cvts.xmax);
208          cvts.t.p = (char *)malloc(tsiz*cvts.xmax);
# Line 196 | Line 214 | allocbufs()                    /* allocate scanline buffers */
214   initfromtif()           /* initialize conversion from TIFF input */
215   {
216          uint16  hi;
217 +        char    *cp;
218          float   *fa, f1, f2;
219  
220 <        CLR(C_GRY|C_GAMMA|C_PRIM|C_RFLT|C_TFLT|C_CXFM);
220 >        CLR(C_GRY|C_GAMMA|C_PRIM|C_RFLT|C_TFLT|C_TWRD|C_CXFM);
221  
222          TIFFGetFieldDefaulted(cvts.tif, TIFFTAG_PLANARCONFIG, &cvts.pconf);
223  
# Line 261 | Line 280 | initfromtif()          /* initialize conversion from TIFF inpu
280                          quiterr("unsupported photometric type");
281                  /* fall through */
282          case PHOTOMETRIC_RGB:
283 <                SET(C_GAMMA|C_GAMUT);
283 >                SET(C_GAMMA);
284                  setcolrgam(cvts.gamcor);
285                  if (CHK(C_XYZE)) {
286 <                        comprgb2xyzmat(cvts.cmat,
286 >                        comprgb2xyzWBmat(cvts.cmat,
287                                          CHK(C_PRIM) ? cvts.prims : stdprims);
288                          SET(C_CXFM);
289                  }
290                  if (!TIFFGetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, &hi) ||
291                                  hi != 3)
292                          quiterr("unsupported samples per pixel for RGB");
293 <                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi) ||
294 <                                hi != 8)
293 >                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi))
294 >                        hi = -1;
295 >                switch (hi) {
296 >                case 8:
297 >                        cvts.tf = RGB2Colr;
298 >                        break;
299 >                case 16:
300 >                        cvts.tf = RRGGBB2Color;
301 >                        SET(C_RFLT|C_TWRD);
302 >                        break;
303 >                case 32:
304 >                        cvts.tf = RfGfBf2Color;
305 >                        SET(C_RFLT|C_TFLT);
306 >                        break;
307 >                default:
308                          quiterr("unsupported bits per sample for RGB");
309 <                cvts.tf = RGB2Colr;
309 >                }
310                  break;
311          case PHOTOMETRIC_MINISBLACK:
312 <                SET(C_GRY|C_GAMMA|C_GAMUT);
312 >                SET(C_GRY|C_GAMMA);
313                  setcolrgam(cvts.gamcor);
314                  cvts.pconf = PLANARCONFIG_CONTIG;
315                  if (!TIFFGetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, &hi) ||
316                                  hi != 1)
317                          quiterr("unsupported samples per pixel for greyscale");
318 <                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi) ||
319 <                                hi != 8)
320 <                        quiterr("unsupported bits per sample for greyscale");
321 <                cvts.tf = Gry2Colr;
318 >                if (!TIFFGetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, &hi))
319 >                        hi = -1;
320 >                switch (hi) {
321 >                case 8:
322 >                        cvts.tf = Gry2Colr;
323 >                        break;
324 >                case 16:
325 >                        cvts.tf = GGry2Color;
326 >                        SET(C_RFLT|C_TWRD);
327 >                        break;
328 >                case 32:
329 >                        cvts.tf = Gryf2Color;
330 >                        SET(C_RFLT|C_TFLT);
331 >                        break;
332 >                default:
333 >                        quiterr("unsupported bits per sample for Gray");
334 >                }
335                  break;
336          default:
337                  quiterr("unsupported photometric type");
# Line 299 | Line 344 | initfromtif()          /* initialize conversion from TIFF inpu
344  
345          if (!TIFFGetField(cvts.tif, TIFFTAG_STONITS, &cvts.stonits))
346                  cvts.stonits = 1.;
347 +
348 +        if (!TIFFGetField(cvts.tif, TIFFTAG_DATETIME, &cp))
349 +                cvts.capdate[0] = '\0';
350 +        else {
351 +                strncpy(cvts.capdate, cp, 19);
352 +                cvts.capdate[19] = '\0';
353 +        }
354 +        if (!TIFFGetField(cvts.tif, TIFFTAG_ARTIST, &cp))
355 +                cvts.owner[0] = '\0';
356 +        else {
357 +                strncpy(cvts.owner, cp, sizeof(cvts.owner));
358 +                cvts.owner[sizeof(cvts.owner)-1] = '\0';
359 +        }
360                                          /* add to Radiance header */
361          if (cvts.pixrat < .99 || cvts.pixrat > 1.01)
362                  fputaspect(cvts.pixrat, cvts.rfp);
# Line 312 | Line 370 | initfromtif()          /* initialize conversion from TIFF inpu
370                                  cvts.rfp);
371                  fputformat(COLRFMT, cvts.rfp);
372          }
373 +        if (cvts.capdate[0])
374 +                fprintf(cvts.rfp, "%s %s\n", TMSTR, cvts.capdate);
375 +        if (cvts.owner[0])
376 +                fprintf(cvts.rfp, "%s %s\n", OWNSTR, cvts.owner);
377  
378          allocbufs();                    /* allocate scanline buffers */
379   }
# Line 351 | Line 413 | int
413   headline(s)                     /* process Radiance input header line */
414   char    *s;
415   {
416 +        static int      tmstrlen = 0;
417 +        static int      ownstrlen = 0;
418          char    fmt[32];
419  
420 +        if (!tmstrlen)
421 +                tmstrlen = strlen(TMSTR);
422 +        if (!ownstrlen)
423 +                ownstrlen = strlen(OWNSTR);
424          if (formatval(fmt, s)) {
425                  if (!strcmp(fmt, COLRFMT))
426                          CLR(C_XYZE);
# Line 360 | Line 428 | char   *s;
428                          SET(C_XYZE);
429                  else
430                          quiterr("unrecognized input picture format");
431 <                return;
431 >                return(1);
432          }
433          if (isexpos(s)) {
434                  cvts.stonits /= exposval(s);
435 <                return;
435 >                return(1);
436          }
437          if (isaspect(s)) {
438                  cvts.pixrat *= aspectval(s);
439 <                return;
439 >                return(1);
440          }
441          if (isprims(s)) {
442                  primsval(cvts.prims, s);
443                  SET(C_PRIM);
444 <                return;
444 >                return(1);
445          }
446 +        if (isdate(s)) {
447 +                if (s[tmstrlen] == ' ')
448 +                        strncpy(cvts.capdate, s+tmstrlen+1, 19);
449 +                else
450 +                        strncpy(cvts.capdate, s+tmstrlen, 19);
451 +                cvts.capdate[19] = '\0';
452 +                return(1);
453 +        }
454 +        if (!strncmp(s, OWNSTR, ownstrlen)) {
455 +                register char   *cp = s + ownstrlen;
456 +
457 +                while (isspace(*cp))
458 +                        ++cp;
459 +                strncpy(cvts.owner, cp, sizeof(cvts.owner));
460 +                cvts.owner[sizeof(cvts.owner)-1] = '\0';
461 +                for (cp = cvts.owner; *cp; cp++)
462 +                        ;
463 +                while (cp > cvts.owner && isspace(cp[-1]))
464 +                        *--cp = '\0';
465 +                return(1);
466 +        }
467 +        return(0);
468   }
469  
470  
# Line 382 | Line 472 | initfromrad()                  /* initialize input from a Radiance pi
472   {
473          int     i1, i2, po;
474                                                  /* read Radiance header */
475 <        CLR(C_RFLT|C_TFLT|C_XYZE|C_PRIM|C_GAMMA|C_CXFM);
475 >        CLR(C_RFLT|C_XYZE|C_PRIM|C_GAMMA|C_CXFM);
476 >        cvts.capdate[0] = '\0';
477 >        cvts.owner[0] = '\0';
478          cvts.stonits = 1.;
479          cvts.pixrat = 1.;
480          cvts.pconf = PLANARCONFIG_CONTIG;
# Line 408 | Line 500 | initfromrad()                  /* initialize input from a Radiance pi
500          switch (cvts.phot) {
501          case PHOTOMETRIC_LOGLUV:
502                  SET(C_RFLT|C_TFLT);
503 <                CLR(C_GRY);
503 >                CLR(C_GRY|C_TWRD);
504                  if (!CHK(C_XYZE)) {
505 <                        cpcolormat(cvts.cmat, rgb2xyzmat);
505 >                        comprgb2xyzWBmat(cvts.cmat,
506 >                                        CHK(C_PRIM) ? cvts.prims : stdprims);
507                          SET(C_CXFM);
508                  }
509                  if (cvts.comp != COMPRESSION_SGILOG &&
# Line 422 | Line 515 | initfromrad()                  /* initialize input from a Radiance pi
515                  break;
516          case PHOTOMETRIC_LOGL:
517                  SET(C_GRY|C_RFLT|C_TFLT);
518 +                CLR(C_TWRD);
519                  if (cvts.comp != COMPRESSION_SGILOG)    
520                          quiterr("internal error 3 in initfromrad");
521                  TIFFSetField(cvts.tif, TIFFTAG_SGILOGDATAFMT,
# Line 433 | Line 527 | initfromrad()                  /* initialize input from a Radiance pi
527                  CLR(C_GRY);
528                  setcolrgam(cvts.gamcor);
529                  if (CHK(C_XYZE)) {
530 <                        compxyz2rgbmat(cvts.cmat,
530 >                        compxyz2rgbWBmat(cvts.cmat,
531                                          CHK(C_PRIM) ? cvts.prims : stdprims);
532                          SET(C_CXFM);
533                  }
# Line 443 | Line 537 | initfromrad()                  /* initialize input from a Radiance pi
537                          TIFFSetField(cvts.tif, TIFFTAG_WHITEPOINT,
538                                          (float *)cvts.prims[WHT]);
539                  }
540 <                cvts.tf = Colr2RGB;
540 >                if (CHK(C_TWRD)) {
541 >                        cvts.tf = Color2RRGGBB;
542 >                        SET(C_RFLT);
543 >                } else if (CHK(C_TFLT)) {
544 >                        cvts.tf = Color2RfGfBf;
545 >                        SET(C_RFLT);
546 >                } else
547 >                        cvts.tf = Colr2RGB;
548                  break;
549          case PHOTOMETRIC_MINISBLACK:
550                  SET(C_GRY|C_GAMMA|C_GAMUT);
551                  setcolrgam(cvts.gamcor);
552 <                cvts.tf = Colr2Gry;
552 >                if (CHK(C_TWRD)) {
553 >                        cvts.tf = Color2GGry;
554 >                        SET(C_RFLT);
555 >                } else if (CHK(C_TFLT)) {
556 >                        cvts.tf = Color2Gryf;
557 >                        SET(C_RFLT);
558 >                } else
559 >                        cvts.tf = Colr2Gry;
560                  break;
561          default:
562                  quiterr("internal error 4 in initfromrad");
# Line 458 | Line 566 | initfromrad()                  /* initialize input from a Radiance pi
566          TIFFSetField(cvts.tif, TIFFTAG_IMAGEWIDTH, cvts.xmax);
567          TIFFSetField(cvts.tif, TIFFTAG_IMAGELENGTH, cvts.ymax);
568          TIFFSetField(cvts.tif, TIFFTAG_SAMPLESPERPIXEL, CHK(C_GRY) ? 1 : 3);
569 <        TIFFSetField(cvts.tif, TIFFTAG_BITSPERSAMPLE, CHK(C_TFLT) ? 32 : 8);
569 >        TIFFSetField(cvts.tif, TIFFTAG_BITSPERSAMPLE,
570 >                        CHK(C_TFLT) ? 32 : CHK(C_TWRD) ? 16 : 8);
571          TIFFSetField(cvts.tif, TIFFTAG_XRESOLUTION, 72.);
572          TIFFSetField(cvts.tif, TIFFTAG_YRESOLUTION, 72./cvts.pixrat);
573          TIFFSetField(cvts.tif, TIFFTAG_ORIENTATION, cvts.orient);
# Line 466 | Line 575 | initfromrad()                  /* initialize input from a Radiance pi
575          TIFFSetField(cvts.tif, TIFFTAG_PLANARCONFIG, cvts.pconf);
576          TIFFSetField(cvts.tif, TIFFTAG_STONITS,
577                          cvts.stonits/pow(2.,(double)cvts.bradj));
578 +        if (cvts.capdate[0])
579 +                TIFFSetField(cvts.tif, TIFFTAG_DATETIME, cvts.capdate);
580 +        if (cvts.owner[0])
581 +                TIFFSetField(cvts.tif, TIFFTAG_ARTIST, cvts.owner);
582          if (cvts.comp == COMPRESSION_NONE)
583                  i1 = TIFFScanlineSize(cvts.tif);
584          else
# Line 502 | Line 615 | char  *av[];
615   }
616  
617  
618 < int
618 > void
619   Luv2Color(y)                    /* read/convert/write Luv->COLOR scanline */
620   uint32  y;
621   {
622          register int    x;
623  
624 <        if (CHK(C_RFLT|C_TFLT) != (C_RFLT|C_TFLT) | CHK(C_GRY))
624 >        if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT))
625                  quiterr("internal error 1 in Luv2Color");
626  
627          if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
628                  quiterr("error reading TIFF input");
629 <        
629 >                                        /* also works for float RGB */
630          for (x = cvts.xmax; x--; ) {
631 <                cvts.r.colors[x][RED] = cvts.t.fp[3*x];
632 <                cvts.r.colors[x][GRN] = cvts.t.fp[3*x + 1];
633 <                cvts.r.colors[x][BLU] = cvts.t.fp[3*x + 2];
631 >                setcolor(cvts.r.colors[x],
632 >                                cvts.t.fp[3*x],
633 >                                cvts.t.fp[3*x + 1],
634 >                                cvts.t.fp[3*x + 2]);
635                  if (CHK(C_CXFM))
636                          colortrans(cvts.r.colors[x], cvts.cmat,
637                                          cvts.r.colors[x]);
# Line 536 | Line 650 | uint32 y;
650   }
651  
652  
653 < int
654 < L2Color(y)                      /* read/convert/write L16->COLOR scanline */
653 > void
654 > RRGGBB2Color(y)                 /* read/convert/write RGB16->COLOR scanline */
655   uint32  y;
656   {
657 +        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
658 +        register double d;
659          register int    x;
660  
661 <        if (CHK(C_RFLT|C_TFLT|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
662 <                quiterr("internal error 1 in L2Color");
661 >        if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_TWRD|C_RFLT))
662 >                quiterr("internal error 1 in RRGGBB2Color");
663  
664          if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
665                  quiterr("error reading TIFF input");
666          
667 <        for (x = cvts.xmax; x--; )
668 <                cvts.r.colors[x][RED] =
669 <                cvts.r.colors[x][GRN] =
670 <                cvts.r.colors[x][BLU] = cvts.t.fp[x] > 0. ? cvts.t.fp[x] : 0.;
667 >        for (x = cvts.xmax; x--; ) {
668 >                d = (cvts.t.wp[3*x] + 0.5)*(1./(1L<<16));
669 >                if (dogamma) d = pow(d, cvts.gamcor);
670 >                colval(cvts.r.colors[x],RED) = d;
671 >                d = (cvts.t.wp[3*x + 1] + 0.5)*(1./(1L<<16));
672 >                if (dogamma) d = pow(d, cvts.gamcor);
673 >                colval(cvts.r.colors[x],GRN) = d;
674 >                d = (cvts.t.wp[3*x + 2] + 0.5)*(1./(1L<<16));
675 >                if (dogamma) d = pow(d, cvts.gamcor);
676 >                colval(cvts.r.colors[x],BLU) = d;
677 >                if (CHK(C_CXFM))
678 >                        colortrans(cvts.r.colors[x], cvts.cmat,
679 >                                        cvts.r.colors[x]);
680 >                if (CHK(C_GAMUT))
681 >                        clipgamut(cvts.r.colors[x], cvts.t.fp[3*x + 1],
682 >                                        CGAMUT_LOWER, cblack, cwhite);
683 >        }
684 >        if (cvts.bradj) {
685 >                d = pow(2.,(double)cvts.bradj);
686 >                for (x = cvts.xmax; x--; )
687 >                        scalecolor(cvts.r.colors[x], d);
688 >        }
689  
690          if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
691                  quiterr("error writing Radiance picture");
692   }
693  
694  
695 < int
695 > void
696 > L2Color(y)                      /* read/convert/write Lfloat->COLOR scanline */
697 > uint32  y;
698 > {
699 >        float   m = pow(2., (double)cvts.bradj);
700 >        register int    x;
701 >
702 >        if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
703 >                quiterr("internal error 1 in L2Color");
704 >
705 >        if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
706 >                quiterr("error reading TIFF input");
707 >                                        /* also works for float greyscale */
708 >        for (x = cvts.xmax; x--; ) {
709 >                register float  f = cvts.t.fp[x];
710 >                if (cvts.bradj) f *= m;
711 >                setcolor(cvts.r.colors[x], f, f, f);
712 >        }
713 >        if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
714 >                quiterr("error writing Radiance picture");
715 > }
716 >
717 >
718 > void
719   RGB2Colr(y)                     /* read/convert/write RGB->COLR scanline */
720   uint32  y;
721   {
722          COLOR   ctmp;
723          register int    x;
724  
725 <        if (CHK(C_RFLT|C_TFLT|C_GRY))
725 >        if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY))
726                  quiterr("internal error 1 in RGB2Colr");
727  
728          if (cvts.pconf == PLANARCONFIG_CONTIG) {
# Line 614 | Line 771 | readerr:
771   }
772  
773  
774 < int
774 > void
775   Gry2Colr(y)                     /* read/convert/write G8->COLR scanline */
776   uint32  y;
777   {
778          register int    x;
779  
780 <        if (CHK(C_RFLT|C_TFLT) | !CHK(C_GRY))
780 >        if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != C_GRY)
781                  quiterr("internal error 1 in Gry2Colr");
782  
783          if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
# Line 640 | Line 797 | uint32 y;
797   }
798  
799  
800 < int
801 < Color2L(y)                      /* read/convert/write COLOR->L16 scanline */
800 > void
801 > GGry2Color(y)                   /* read/convert/write G16->COLOR scanline */
802   uint32  y;
803   {
804 <        double  m = pow(2.,(double)cvts.bradj);
804 >        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
805 >        double  m;
806 >        register double d;
807          register int    x;
808  
809 <        if (CHK(C_RFLT|C_TFLT|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
809 >        if (CHK(C_TFLT|C_TWRD|C_GRY|C_RFLT) != (C_GRY|C_RFLT|C_TWRD))
810 >                quiterr("internal error 1 in GGry2Color");
811 >
812 >        if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
813 >                quiterr("error reading TIFF input");
814 >
815 >        if (cvts.bradj)
816 >                m = pow(2., (double)cvts.bradj);
817 >        for (x = cvts.xmax; x--; ) {
818 >                d = (cvts.t.wp[x] + 0.5)*(1./(1L<<16));
819 >                if (dogamma) d = pow(d, cvts.gamcor);
820 >                if (cvts.bradj) d *= m;
821 >                colval(cvts.r.colors[x],RED) =
822 >                colval(cvts.r.colors[x],GRN) =
823 >                colval(cvts.r.colors[x],BLU) = d;
824 >        }
825 >        if (fwritescan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
826 >                quiterr("error writing Radiance picture");
827 > }
828 >
829 >
830 > void
831 > Color2GGry(y)                   /* read/convert/write COLOR->G16 scanline */
832 > uint32  y;
833 > {
834 >        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
835 >        float   m = pow(2.,(double)cvts.bradj);
836 >        register int    x;
837 >
838 >        if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TWRD|C_GRY))
839 >                quiterr("internal error 1 in Color2GGry");
840 >
841 >        if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
842 >                quiterr("error reading Radiance picture");
843 >
844 >        for (x = cvts.xmax; x--; ) {
845 >                register float  f = m*( CHK(C_XYZE) ?
846 >                                                colval(cvts.r.colors[x],CIEY)
847 >                                                : bright(cvts.r.colors[x]) );
848 >                if (f <= 0)
849 >                        cvts.t.wp[x] = 0;
850 >                else if (f >= 1)
851 >                        cvts.t.wp[x] = 0xffff;
852 >                else if (dogamma)
853 >                        cvts.t.wp[x] = (int)((float)(1L<<16) *
854 >                                                pow(f, 1./cvts.gamcor));
855 >                else
856 >                        cvts.t.wp[x] = (int)((float)(1L<<16) * f);
857 >        }
858 >
859 >        if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
860 >                quiterr("error writing TIFF output");
861 > }
862 >
863 >
864 > void
865 > Color2L(y)                      /* read/convert/write COLOR->Lfloat scanline */
866 > uint32  y;
867 > {
868 >        float   m = pow(2.,(double)cvts.bradj);
869 >        register int    x;
870 >
871 >        if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TFLT|C_GRY))
872                  quiterr("internal error 1 in Color2L");
873  
874          if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
# Line 662 | Line 883 | uint32 y;
883   }
884  
885  
886 < int
886 > void
887   Color2Luv(y)                    /* read/convert/write COLOR->Luv scanline */
888   uint32  y;
889   {
890          register int    x;
891  
892 <        if (CHK(C_RFLT|C_TFLT) != (C_RFLT|C_TFLT) | CHK(C_GRY))
892 >        if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT))
893                  quiterr("internal error 1 in Color2Luv");
894  
895          if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
# Line 683 | Line 904 | uint32 y;
904                  for (x = cvts.xmax; x--; )
905                          scalecolor(cvts.r.colors[x], m);
906          }
907 <
907 >                                        /* also works for float RGB */
908          for (x = cvts.xmax; x--; ) {
909 <                cvts.t.fp[3*x] = colval(cvts.r.colors[x],RED);
910 <                cvts.t.fp[3*x+1] = colval(cvts.r.colors[x],GRN);
911 <                cvts.t.fp[3*x+2] = colval(cvts.r.colors[x],BLU);
909 >                cvts.t.fp[3*x] = colval(cvts.r.colors[x],CIEX);
910 >                cvts.t.fp[3*x+1] = colval(cvts.r.colors[x],CIEY);
911 >                cvts.t.fp[3*x+2] = colval(cvts.r.colors[x],CIEZ);
912          }
913  
914          if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
# Line 695 | Line 916 | uint32 y;
916   }
917  
918  
919 < int
919 > void
920 > Color2RRGGBB(y)                 /* read/convert/write COLOR->RGB16 scanline */
921 > uint32  y;
922 > {
923 >        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
924 >        float   m = pow(2.,(double)cvts.bradj);
925 >        register int    x, i;
926 >
927 >        if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY) != (C_RFLT|C_TWRD))
928 >                quiterr("internal error 1 in Color2RRGGBB");
929 >
930 >        if (freadscan(cvts.r.colors, cvts.xmax, cvts.rfp) < 0)
931 >                quiterr("error reading Radiance picture");
932 >
933 >        for (x = cvts.xmax; x--; )
934 >            for (i = 3; i--; ) {
935 >                register float  f = m*colval(cvts.r.colors[x],i);
936 >                if (f <= 0)
937 >                        cvts.t.wp[3*x + i] = 0;
938 >                else if (f >= 1)
939 >                        cvts.t.wp[3*x + i] = 0xffff;
940 >                else if (dogamma)
941 >                        cvts.t.wp[3*x + i] = (int)((float)(1L<<16) *
942 >                                                pow(f, 1./cvts.gamcor));
943 >                else
944 >                        cvts.t.wp[3*x + i] = (int)((float)(1L<<16)*f);
945 >            }
946 >
947 >        if (TIFFWriteScanline(cvts.tif, cvts.t.p, y, 0) < 0)
948 >                quiterr("error writing TIFF output");
949 > }
950 >
951 >
952 > void
953   Colr2Gry(y)                     /* read/convert/write COLR->RGB scanline */
954   uint32  y;
955   {
956          register int    x;
957  
958 <        if (CHK(C_RFLT|C_TFLT) | !CHK(C_GRY))
958 >        if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != C_GRY)
959                  quiterr("internal error 1 in Colr2Gry");
960  
961          if (freadcolrs(cvts.r.colrs, cvts.xmax, cvts.rfp) < 0)
# Line 721 | Line 975 | uint32 y;
975   }
976  
977  
978 < int
978 > void
979   Colr2RGB(y)                     /* read/convert/write COLR->RGB scanline */
980   uint32  y;
981   {
982          COLOR   ctmp;
983          register int    x;
984  
985 <        if (CHK(C_RFLT|C_TFLT|C_GRY))
985 >        if (CHK(C_RFLT|C_TFLT|C_TWRD|C_GRY))
986                  quiterr("internal error 1 in Colr2RGB");
987  
988          if (freadcolrs(cvts.r.colrs, cvts.xmax, cvts.rfp) < 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines