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

Comparing ray/src/px/ra_t16.c (file contents):
Revision 1.9 by greg, Sat Oct 20 11:49:02 1990 UTC vs.
Revision 2.7 by schorsch, Thu Jun 5 19:29:34 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1986 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  ra_t16.c - program to convert between RADIANCE and
6   *              Targa 16, 24 and 32-bit images.
# Line 12 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   */
10  
11   #include  <stdio.h>
12 + #include  <time.h>
13 + #include  <math.h>
14  
15 + #include  "platform.h"
16   #include  "color.h"
17 <
17 > #include  "resolu.h"
18   #include  "random.h"
19
19   #include  "targa.h"
20  
21   #define  goodpic(h)     (((h)->dataType==IM_RGB || (h)->dataType==IM_CRGB) \
# Line 32 | Line 31 | static char SCCSid[] = "$SunId$ LBL";
31  
32   extern char     *ecalloc(), *emalloc();
33  
34 < extern double  atof(), pow();
34 > double  gamcor = 2.2;                   /* gamma correction */
35  
36 < double  gamma = 2.0;                    /* gamma correction */
36 > int  bradj = 0;                         /* brightness adjustment */
37  
38   char  *progname;
39  
# Line 48 | Line 47 | char  *argv[];
47          struct hdStruct  head;
48          int  reverse = 0;
49          int  i;
50 <        
50 >        SET_DEFAULT_BINARY();
51 >        SET_FILE_BINARY(stdin);
52 >        SET_FILE_BINARY(stdout);
53          progname = argv[0];
54  
55          head.dataBits = 16;
# Line 56 | Line 57 | char  *argv[];
57                  if (argv[i][0] == '-')
58                          switch (argv[i][1]) {
59                          case 'g':
60 <                                gamma = atof(argv[++i]);
60 >                                gamcor = atof(argv[++i]);
61                                  break;
62                          case 'r':
63                                  reverse = !reverse;
# Line 67 | Line 68 | char  *argv[];
68                          case '3':
69                                  head.dataBits = 24;
70                                  break;
71 +                        case 'e':
72 +                                if (argv[i+1][0] != '+' && argv[i+1][0] != '-')
73 +                                        goto userr;
74 +                                bradj = atoi(argv[++i]);
75 +                                break;
76                          default:
77                                  goto userr;
78                          }
# Line 86 | Line 92 | char  *argv[];
92                  quiterr(msg);
93          }
94                                          /* set gamma */
95 <        setcolrgam(gamma);
95 >        setcolrgam(gamcor);
96                                          /* convert */
97          if (reverse) {
98                                          /* get header */
# Line 95 | Line 101 | char  *argv[];
101                  if (!goodpic(&head))
102                          quiterr("incompatible format");
103                                          /* put header */
104 +                newheader("RADIANCE", stdout);
105                  printargs(i, argv, stdout);
106 +                fputformat(COLRFMT, stdout);
107                  putchar('\n');
108 <                fputresolu(YMAJOR|YDECR, head.x, head.y, stdout);
108 >                fprtresolu(head.x, head.y, stdout);
109                                          /* convert file */
110                  tg2ra(&head);
111          } else {
112 <                getheader(stdin, NULL);
113 <                if (fgetresolu(&head.x, &head.y, stdin) != (YMAJOR|YDECR))
112 >                if (checkheader(stdin, COLRFMT, NULL) < 0 ||
113 >                                fgetresolu(&head.x, &head.y, stdin) < 0)
114                          quiterr("bad picture file");
115                                          /* assign header */
116                  head.textSize = 0;
# Line 118 | Line 126 | char  *argv[];
126          }
127          exit(0);
128   userr:
129 <        fprintf(stderr, "Usage: %s [-2|-3|-r][-g gamma] [input [output]]\n",
129 >        fprintf(stderr, "Usage: %s [-2|-3|-r][-g gamma][-e +/-stops] [input [output]]\n",
130                          progname);
131          exit(1);
132   }
# Line 154 | Line 162 | char  *err;
162   }
163  
164  
165 + void
166   eputs(s)
167   char *s;
168   {
# Line 161 | Line 170 | char *s;
170   }
171  
172  
173 + void
174   quit(code)
175   int code;
176   {
# Line 266 | Line 276 | struct hdStruct  *hp;
276                          }
277                  }
278                  gambs_colrs(scanline, hp->x);
279 +                if (bradj)
280 +                        shiftcolrs(scanline, hp->x, bradj);
281                  if (fwritecolrs(scanline, hp->x, stdout) < 0)
282                          quiterr("error writing RADIANCE file");
283          }
284 <        free((char *)scanline);
285 <        free((char *)tarData);
284 >        free((void *)scanline);
285 >        free((void *)tarData);
286   }
287  
288  
# Line 287 | Line 299 | struct hdStruct  *hp;
299          for (j = hp->y-1; j >= 0; j--) {
300                  if (freadcolrs(inl, hp->x, stdin) < 0)
301                          quiterr("error reading RADIANCE file");
302 +                if (bradj)
303 +                        shiftcolrs(inl, hp->x, bradj);
304                  colrs_gambs(inl, hp->x);
305                  if (hp->dataBits == 16) {
306                          register unsigned short  *dp;
307 +                        register int  v;
308                          dp = (unsigned short *)tarData + j*hp->x;
309                          for (i = 0; i < hp->x; i++) {
310 <                                *dp = ((inl[i][RED]+(random()&7)) & 0xf8)<<7;
311 <                                *dp |= ((inl[i][GRN]+(random()&7)) & 0xf8)<<2;
312 <                                *dp++ |= (inl[i][BLU]+(random()&7))>>3;
310 >                                v = inl[i][RED] + (random()&7);
311 >                                if (v > 255) v = 255;
312 >                                *dp = (v&0xf8)<<7;
313 >                                v = inl[i][GRN] + (random()&7);
314 >                                if (v > 255) v = 255;
315 >                                *dp |= (v&0xf8)<<2;
316 >                                v = inl[i][BLU] + (random()&7);
317 >                                if (v > 255) v = 255;
318 >                                *dp++ |= v>>3;
319                          }
320                  } else {        /* hp->dataBits == 24 */
321                          register unsigned char  *dp;
322                          dp = (unsigned char *)tarData + j*3*hp->x;
323                          for (i = 0; i < hp->x; i++) {
303                                *dp++ = inl[i][RED];
304                                *dp++ = inl[i][GRN];
324                                  *dp++ = inl[i][BLU];
325 +                                *dp++ = inl[i][GRN];
326 +                                *dp++ = inl[i][RED];
327                          }
328                  }
329          }
330                                                  /* write out targa data */
331          writetarga(hp, tarData, stdout);
332  
333 <        free((char *)inl);
334 <        free((char *)tarData);
333 >        free((void *)inl);
334 >        free((void *)tarData);
335   }
336  
337  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines