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.30 by greg, Tue Mar 22 15:26:05 2005 UTC vs.
Revision 2.32 by greg, Fri Aug 19 02:31:32 2005 UTC

# Line 362 | Line 362 | initfromtif(void)              /* initialize conversion from TIFF
362                  quiterr("unknown input image resolution");
363  
364          if (!TIFFGetField(cvts.tif, TIFFTAG_STONITS, &cvts.stonits))
365 <                cvts.stonits = 1.;
365 >                cvts.stonits = -1.;
366  
367          if (!TIFFGetField(cvts.tif, TIFFTAG_DATETIME, &cp))
368                  cvts.capdate[0] = '\0';
# Line 380 | Line 380 | initfromtif(void)              /* initialize conversion from TIFF
380          if (cvts.pixrat < .99 || cvts.pixrat > 1.01)
381                  fputaspect(cvts.pixrat, cvts.rfp);
382          if (CHK(C_XYZE)) {
383 <                fputexpos(pow(2.,(double)cvts.bradj)/cvts.stonits, cvts.rfp);
383 >                if (cvts.stonits > .0)
384 >                        fputexpos(pow(2.,(double)cvts.bradj)/cvts.stonits, cvts.rfp);
385                  fputformat(CIEFMT, cvts.rfp);
386          } else {
387                  if (CHK(C_PRIM))
388                          fputprims(cvts.prims, cvts.rfp);
389 <                fputexpos(WHTEFFICACY*pow(2.,(double)cvts.bradj)/cvts.stonits,
390 <                                cvts.rfp);
389 >                if (cvts.stonits > .0)
390 >                        fputexpos(WHTEFFICACY*pow(2.,(double)cvts.bradj)/cvts.stonits,
391 >                                        cvts.rfp);
392                  fputformat(COLRFMT, cvts.rfp);
393          }
394          if (cvts.capdate[0])
# Line 656 | Line 658 | Luv2Color(                     /* read/convert/write Luv->COLOR scanline
658          if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_RFLT|C_TFLT))
659                  quiterr("internal error 1 in Luv2Color");
660  
661 +        if (cvts.pconf != PLANARCONFIG_CONTIG)
662 +                quiterr("cannot handle separate 32-bit color planes");
663 +
664          if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
665                  quiterr("error reading TIFF input");
666                                          /* also works for float RGB */
# Line 693 | Line 698 | RRGGBB2Color(                  /* read/convert/write RGB16->COLOR sca
698  
699          if (CHK(C_RFLT|C_TWRD|C_TFLT|C_GRY) != (C_TWRD|C_RFLT))
700                  quiterr("internal error 1 in RRGGBB2Color");
701 +
702 +        if (cvts.pconf != PLANARCONFIG_CONTIG)
703 +                quiterr("cannot handle separate 16-bit color planes");
704  
705          if (TIFFReadScanline(cvts.tif, cvts.t.p, y, 0) < 0)
706                  quiterr("error reading TIFF input");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines