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.21 by greg, Tue Jul 1 19:04:08 2003 UTC vs.
Revision 2.28 by schorsch, Sun Mar 28 20:33:14 2004 UTC

# Line 9 | Line 9 | static const char      RCSid[] = "$Id$";
9  
10   #include  <stdio.h>
11   #include  <math.h>
12 + #include  <ctype.h>
13   #include  <time.h>
14 + #include  <string.h>
15 +
16   #include  "tiffio.h"
17   #include  "color.h"
18   #include  "resolu.h"
# Line 27 | Line 30 | static const char      RCSid[] = "$Id$";
30   #define C_TWRD          0x80            /* TIFF data is 16-bit */
31   #define C_PRIM          0x100           /* has assigned primaries */
32  
33 + typedef void colcvf_t(uint32 y);
34 +
35   struct {
36          uint16  flags;          /* conversion flags (defined above) */
37 +        char    capdate[20];    /* capture date/time */
38 +        char    owner[256];     /* content owner */
39          uint16  comp;           /* TIFF compression type */
40          uint16  phot;           /* TIFF photometric type */
41          uint16  pconf;          /* TIFF planar configuration */
# Line 53 | Line 60 | struct {
60                  float   *fp;            /* float pointer */
61                  char    *p;             /* generic pointer */
62          } t;                    /* TIFF scanline */
63 <        void    (*tf)();        /* translation procedure */
63 >        colcvf_t *tf;   /* translation procedure */
64   }       cvts = {        /* conversion structure */
65 <        0, COMPRESSION_NONE, PHOTOMETRIC_RGB,
65 >        0, "", "", COMPRESSION_NONE, PHOTOMETRIC_RGB,
66          PLANARCONFIG_CONTIG, GAMCOR, 0, 1, 1., 1.,
67   };
68  
# Line 64 | Line 71 | struct {
71   #define CLR(f)          (cvts.flags &= ~(f))
72   #define TGL(f)          (cvts.flags ^= (f))
73  
74 < void    Luv2Color(), L2Color(), RGB2Colr(), Gry2Colr();
75 < void    Color2Luv(), Color2L(), Colr2RGB(), Colr2Gry();
76 < void    RRGGBB2Color(), GGry2Color(), Color2RRGGBB(), Color2GGry();
74 > 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 +
88   #define RfGfBf2Color    Luv2Color
89   #define Gryf2Color      L2Color
90   #define Color2Gryf      Color2L
# Line 86 | Line 103 | short  ortab[8] = {            /* orientation conversion table */
103  
104   #define pixorder()      ortab[cvts.orient-1]
105  
106 + extern char     TMSTR[];        /* "CAPDATE=" from header.c */
107 + char            OWNSTR[] = "OWNER=";
108 +
109   char  *progname;
110  
111  
112 < main(argc, argv)
113 < int  argc;
94 < char  *argv[];
112 > int
113 > main(int  argc, char  *argv[])
114   {
115          int  reverse = 0;
116          int  i;
# Line 155 | Line 174 | doneopts:
174                  if (i != argc-2)
175                          goto userr;
176                                                  /* consistency checks */
177 <                if (CHK(C_GRY))
177 >                if (CHK(C_GRY)) {
178                          if (cvts.phot == PHOTOMETRIC_RGB)
179                                  cvts.phot = PHOTOMETRIC_MINISBLACK;
180                          else {
181                                  cvts.phot = PHOTOMETRIC_LOGL;
182                                  cvts.comp = COMPRESSION_SGILOG;
183                          }
184 +                }
185                  if (CHK(C_TWRD|C_TFLT) == (C_TWRD|C_TFLT))
186                          goto userr;
187  
# Line 180 | Line 200 | userr:
200   }
201  
202  
203 < quiterr(err)            /* print message and exit */
204 < char  *err;
203 > static void
204 > quiterr(                /* print message and exit */
205 >        char  *err
206 > )
207   {
208          if (err != NULL) {
209                  fprintf(stderr, "%s: %s\n", progname, err);
# Line 191 | Line 213 | char  *err;
213   }
214  
215  
216 < allocbufs()                     /* allocate scanline buffers */
216 > static void
217 > allocbufs(void)                 /* allocate scanline buffers */
218   {
219          int     rsiz, tsiz;
220  
# Line 201 | Line 224 | allocbufs()                    /* allocate scanline buffers */
224                          (CHK(C_GRY) ? 1 : 3);
225          cvts.r.p = (char *)malloc(rsiz*cvts.xmax);
226          cvts.t.p = (char *)malloc(tsiz*cvts.xmax);
227 <        if (cvts.r.p == NULL | cvts.t.p == NULL)
227 >        if ((cvts.r.p == NULL) | (cvts.t.p == NULL))
228                  quiterr("no memory to allocate scanline buffers");
229   }
230  
231  
232 < initfromtif()           /* initialize conversion from TIFF input */
232 > static void
233 > initfromtif(void)               /* initialize conversion from TIFF input */
234   {
235          uint16  hi;
236 +        char    *cp;
237          float   *fa, f1, f2;
238  
239          CLR(C_GRY|C_GAMMA|C_PRIM|C_RFLT|C_TFLT|C_TWRD|C_CXFM);
# Line 338 | Line 363 | initfromtif()          /* initialize conversion from TIFF inpu
363  
364          if (!TIFFGetField(cvts.tif, TIFFTAG_STONITS, &cvts.stonits))
365                  cvts.stonits = 1.;
366 +
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                                          /* add to Radiance header */
380          if (cvts.pixrat < .99 || cvts.pixrat > 1.01)
381                  fputaspect(cvts.pixrat, cvts.rfp);
# Line 351 | Line 389 | initfromtif()          /* initialize conversion from TIFF inpu
389                                  cvts.rfp);
390                  fputformat(COLRFMT, cvts.rfp);
391          }
392 +        if (cvts.capdate[0])
393 +                fprintf(cvts.rfp, "%s %s\n", TMSTR, cvts.capdate);
394 +        if (cvts.owner[0])
395 +                fprintf(cvts.rfp, "%s %s\n", OWNSTR, cvts.owner);
396  
397          allocbufs();                    /* allocate scanline buffers */
398   }
399  
400  
401 < tiff2ra(ac, av)         /* convert TIFF image to Radiance picture */
402 < int  ac;
403 < char  *av[];
401 > static void
402 > tiff2ra(                /* convert TIFF image to Radiance picture */
403 >        int  ac,
404 >        char  *av[]
405 > )
406   {
407          int32   y;
408                                          /* open TIFF input */
# Line 386 | Line 430 | char  *av[];
430   }
431  
432  
433 < int
434 < headline(s)                     /* process Radiance input header line */
435 < char    *s;
433 > static int
434 > headline(                       /* process Radiance input header line */
435 >        char    *s,
436 >        void    *p
437 > )
438   {
439 +        static int      tmstrlen = 0;
440 +        static int      ownstrlen = 0;
441          char    fmt[32];
442  
443 +        if (!tmstrlen)
444 +                tmstrlen = strlen(TMSTR);
445 +        if (!ownstrlen)
446 +                ownstrlen = strlen(OWNSTR);
447          if (formatval(fmt, s)) {
448                  if (!strcmp(fmt, COLRFMT))
449                          CLR(C_XYZE);
# Line 414 | Line 466 | char   *s;
466                  SET(C_PRIM);
467                  return(1);
468          }
469 +        if (isdate(s)) {
470 +                if (s[tmstrlen] == ' ')
471 +                        strncpy(cvts.capdate, s+tmstrlen+1, 19);
472 +                else
473 +                        strncpy(cvts.capdate, s+tmstrlen, 19);
474 +                cvts.capdate[19] = '\0';
475 +                return(1);
476 +        }
477 +        if (!strncmp(s, OWNSTR, ownstrlen)) {
478 +                register char   *cp = s + ownstrlen;
479 +
480 +                while (isspace(*cp))
481 +                        ++cp;
482 +                strncpy(cvts.owner, cp, sizeof(cvts.owner));
483 +                cvts.owner[sizeof(cvts.owner)-1] = '\0';
484 +                for (cp = cvts.owner; *cp; cp++)
485 +                        ;
486 +                while (cp > cvts.owner && isspace(cp[-1]))
487 +                        *--cp = '\0';
488 +                return(1);
489 +        }
490          return(0);
491   }
492  
493  
494 < initfromrad()                   /* initialize input from a Radiance picture */
494 > static void
495 > initfromrad(void)                       /* initialize input from a Radiance picture */
496   {
497          int     i1, i2, po;
498                                                  /* read Radiance header */
499          CLR(C_RFLT|C_XYZE|C_PRIM|C_GAMMA|C_CXFM);
500 +        cvts.capdate[0] = '\0';
501 +        cvts.owner[0] = '\0';
502          cvts.stonits = 1.;
503          cvts.pixrat = 1.;
504          cvts.pconf = PLANARCONFIG_CONTIG;
# Line 489 | Line 565 | initfromrad()                  /* initialize input from a Radiance pi
565                          cvts.tf = Color2RRGGBB;
566                          SET(C_RFLT);
567                  } else if (CHK(C_TFLT)) {
568 +                        TIFFSetField(cvts.tif, TIFFTAG_SAMPLEFORMAT,
569 +                                        SAMPLEFORMAT_IEEEFP);
570                          cvts.tf = Color2RfGfBf;
571                          SET(C_RFLT);
572                  } else
# Line 501 | Line 579 | initfromrad()                  /* initialize input from a Radiance pi
579                          cvts.tf = Color2GGry;
580                          SET(C_RFLT);
581                  } else if (CHK(C_TFLT)) {
582 +                        TIFFSetField(cvts.tif, TIFFTAG_SAMPLEFORMAT,
583 +                                        SAMPLEFORMAT_IEEEFP);
584                          cvts.tf = Color2Gryf;
585                          SET(C_RFLT);
586                  } else
# Line 523 | Line 603 | initfromrad()                  /* initialize input from a Radiance pi
603          TIFFSetField(cvts.tif, TIFFTAG_PLANARCONFIG, cvts.pconf);
604          TIFFSetField(cvts.tif, TIFFTAG_STONITS,
605                          cvts.stonits/pow(2.,(double)cvts.bradj));
606 +        if (cvts.capdate[0])
607 +                TIFFSetField(cvts.tif, TIFFTAG_DATETIME, cvts.capdate);
608 +        if (cvts.owner[0])
609 +                TIFFSetField(cvts.tif, TIFFTAG_ARTIST, cvts.owner);
610          if (cvts.comp == COMPRESSION_NONE)
611                  i1 = TIFFScanlineSize(cvts.tif);
612          else
# Line 535 | Line 619 | initfromrad()                  /* initialize input from a Radiance pi
619   }
620  
621  
622 < ra2tiff(ac, av)         /* convert Radiance picture to TIFF image */
623 < int  ac;
624 < char  *av[];
622 > static void
623 > ra2tiff(                /* convert Radiance picture to TIFF image */
624 >        int  ac,
625 >        char  *av[]
626 > )
627   {
628          uint32  y;
629                                                  /* open Radiance file */
# Line 559 | Line 645 | char  *av[];
645   }
646  
647  
648 < void
649 < Luv2Color(y)                    /* read/convert/write Luv->COLOR scanline */
650 < uint32  y;
648 > static void
649 > Luv2Color(                      /* read/convert/write Luv->COLOR scanline */
650 >        uint32  y
651 > )
652   {
653          register int    x;
654  
# Line 594 | Line 681 | uint32 y;
681   }
682  
683  
684 < void
685 < RRGGBB2Color(y)                 /* read/convert/write RGB16->COLOR scanline */
686 < uint32  y;
684 > static void
685 > RRGGBB2Color(                   /* read/convert/write RGB16->COLOR scanline */
686 >        uint32  y
687 > )
688   {
689 <        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
689 >        int     dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
690          register double d;
691          register int    x;
692  
# Line 636 | Line 724 | uint32 y;
724   }
725  
726  
727 < void
728 < L2Color(y)                      /* read/convert/write Lfloat->COLOR scanline */
729 < uint32  y;
727 > static void
728 > L2Color(                        /* read/convert/write Lfloat->COLOR scanline */
729 >        uint32  y
730 > )
731   {
732          float   m = pow(2., (double)cvts.bradj);
733          register int    x;
# Line 659 | Line 748 | uint32 y;
748   }
749  
750  
751 < void
752 < RGB2Colr(y)                     /* read/convert/write RGB->COLR scanline */
753 < uint32  y;
751 > static void
752 > RGB2Colr(                       /* read/convert/write RGB->COLR scanline */
753 >        uint32  y
754 > )
755   {
756          COLOR   ctmp;
757          register int    x;
# Line 715 | Line 805 | readerr:
805   }
806  
807  
808 < void
809 < Gry2Colr(y)                     /* read/convert/write G8->COLR scanline */
810 < uint32  y;
808 > static void
809 > Gry2Colr(                       /* read/convert/write G8->COLR scanline */
810 >        uint32  y
811 > )
812   {
813          register int    x;
814  
# Line 741 | Line 832 | uint32 y;
832   }
833  
834  
835 < void
836 < GGry2Color(y)                   /* read/convert/write G16->COLOR scanline */
837 < uint32  y;
835 > static void
836 > GGry2Color(                     /* read/convert/write G16->COLOR scanline */
837 >        uint32  y
838 > )
839   {
840 <        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
840 >        int     dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
841          double  m;
842          register double d;
843          register int    x;
# Line 771 | Line 863 | uint32 y;
863   }
864  
865  
866 < void
867 < Color2GGry(y)                   /* read/convert/write COLOR->G16 scanline */
868 < uint32  y;
866 > static void
867 > Color2GGry(                     /* read/convert/write COLOR->G16 scanline */
868 >        uint32  y
869 > )
870   {
871 <        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
871 >        int     dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
872          float   m = pow(2.,(double)cvts.bradj);
873          register int    x;
874  
# Line 805 | Line 898 | uint32 y;
898   }
899  
900  
901 < void
902 < Color2L(y)                      /* read/convert/write COLOR->Lfloat scanline */
903 < uint32  y;
901 > static void
902 > Color2L(                        /* read/convert/write COLOR->Lfloat scanline */
903 >        uint32  y
904 > )
905   {
906          float   m = pow(2.,(double)cvts.bradj);
907          register int    x;
# Line 827 | Line 921 | uint32 y;
921   }
922  
923  
924 < void
925 < Color2Luv(y)                    /* read/convert/write COLOR->Luv scanline */
926 < uint32  y;
924 > static void
925 > Color2Luv(                      /* read/convert/write COLOR->Luv scanline */
926 >        uint32  y
927 > )
928   {
929          register int    x;
930  
# Line 860 | Line 955 | uint32 y;
955   }
956  
957  
958 < void
959 < Color2RRGGBB(y)                 /* read/convert/write COLOR->RGB16 scanline */
960 < uint32  y;
958 > static void
959 > Color2RRGGBB(                   /* read/convert/write COLOR->RGB16 scanline */
960 >        uint32  y
961 > )
962   {
963 <        int     dogamma = cvts.gamcor < 0.99 | cvts.gamcor > 1.01;
963 >        int     dogamma = (cvts.gamcor < 0.99) | (cvts.gamcor > 1.01);
964          float   m = pow(2.,(double)cvts.bradj);
965          register int    x, i;
966  
# Line 893 | Line 989 | uint32 y;
989   }
990  
991  
992 < void
993 < Colr2Gry(y)                     /* read/convert/write COLR->RGB scanline */
994 < uint32  y;
992 > static void
993 > Colr2Gry(                       /* read/convert/write COLR->RGB scanline */
994 >        uint32  y
995 > )
996   {
997          register int    x;
998  
# Line 919 | Line 1016 | uint32 y;
1016   }
1017  
1018  
1019 < void
1020 < Colr2RGB(y)                     /* read/convert/write COLR->RGB scanline */
1021 < uint32  y;
1019 > static void
1020 > Colr2RGB(                       /* read/convert/write COLR->RGB scanline */
1021 >        uint32  y
1022 > )
1023   {
1024          COLOR   ctmp;
1025          register int    x;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines