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

Comparing ray/src/px/ra_ps.c (file contents):
Revision 2.9 by greg, Thu Feb 10 21:59:53 1994 UTC vs.
Revision 2.16 by greg, Fri Oct 6 12:38:38 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1992 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 9 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   */
10  
11   #include  <stdio.h>
12 + #include  <math.h>
13   #ifdef MSDOS
14   #include  <fcntl.h>
15   #endif
16   #include  "color.h"
17  
18 + #define GAMVAL          1.47                    /* gamma value for pixels */
19 +
20 + #define GRY             -1                      /* artificial index for grey */
21 +
22   #define HMARGIN         (.5*72)                 /* horizontal margin */
23   #define VMARGIN         (.5*72)                 /* vertical margin */
24   #define PWIDTH          (8.5*72-2*HMARGIN)      /* width of device */
# Line 30 | Line 35 | char  code[] =                 /* 6-bit code lookup table */
35   int  wrongformat = 0;                   /* input in wrong format? */
36   double  pixaspect = 1.0;                /* pixel aspect ratio */
37  
38 + int  docolor = 0;                       /* produce color image? */
39   int  bradj = 0;                         /* brightness adjustment */
40   int  ncopies = 1;                       /* number of copies */
41  
42 + extern int      Aputprim(), Bputprim(), Cputprim();
43 +
44 + int  (*putprim)() = Aputprim;           /* function for writing scanline */
45 +
46   char  *progname;
47  
48   int  xmax, ymax;
# Line 64 | Line 74 | char  *argv[];
74          for (i = 1; i < argc; i++)
75                  if (argv[i][0] == '-')
76                          switch (argv[i][1]) {
77 +                        case 'b':               /* produce b&w PostScript */
78 +                                docolor = 0;
79 +                                break;
80 +                        case 'c':               /* produce color PostScript */
81 +                                docolor = 1;
82 +                                break;
83 +                        case 'A':               /* standard ASCII encoding */
84 +                                putprim = Aputprim;
85 +                                break;
86 +                        case 'B':               /* standard binary encoding */
87 +                                putprim = Bputprim;
88 +                                break;
89 +                        case 'C':               /* compressed ASCII encoding */
90 +                                putprim = Cputprim;
91 +                                break;
92                          case 'e':               /* exposure adjustment */
93                                  if (argv[i+1][0] != '+' && argv[i+1][0] != '-')
94                                          goto userr;
# Line 97 | Line 122 | char  *argv[];
122          getheader(stdin, headline, NULL);
123          if (wrongformat || fgetresolu(&xmax, &ymax, stdin) < 0)
124                  quiterr("bad picture format");
125 +                                /* gamma compression */
126 +        if (putprim == Cputprim)
127 +                setcolrgam(GAMVAL);
128                                  /* write header */
129          PSheader(i <= argc-1 ? argv[i] : "<stdin>");
130                                  /* convert file */
# Line 105 | Line 133 | char  *argv[];
133          PStrailer();
134          exit(0);
135   userr:
136 <        fprintf(stderr, "Usage: %s [-e +/-stops] [input [output]]\n", progname);
136 >        fprintf(stderr, "Usage: %s [-b|c][-A|B|C][-e +/-stops] [input [output]]\n",
137 >                        progname);
138          exit(1);
139   }
140  
# Line 124 | Line 153 | char  *err;
153   PSheader(name)                  /* print PostScript header */
154   char  *name;
155   {
156 +        char  *rstr;
157          int  landscape = 0;
158          double  pwidth, pheight;
159          double  iwidth, iheight;
160 <
161 <        printf("%%!\n");
160 >                                        /* EPS comments */
161 >        puts("%!PS-Adobe-2.0 EPSF-2.0");
162          printf("%%%%Title: %s\n", name);
163 <        printf("%%%%Creator: %s\n", progname);
163 >        printf("%%%%Creator: %s = %s\n", progname, SCCSid);
164          printf("%%%%Pages: %d\n", ncopies);
165          if (landscape = xmax > pixaspect*ymax)
166 <                printf("%%%%Landscape\n");
166 >                puts("%%Orientation: Landscape");
167          else
168 <                printf("%%%%Portrait\n");
139 <        printf("%%%%EndComments\n");
140 <        printf("64 dict begin\n");
141 <                                        /* define image reader */
142 <        PSprocdef("read6bitRLE");
143 <                                        /* set up transformation matrix */
144 <        printf("%f %f translate\n", HMARGIN, VMARGIN);
168 >                puts("%%Orientation: Portrait");
169          if (PWIDTH > PHEIGHT ^ landscape) {
146                printf("0 %f translate\n", PHEIGHT);
147                printf("-90 rotate\n");
170                  pwidth = PHEIGHT;
171                  pheight = PWIDTH;
172          } else {
# Line 158 | Line 180 | char  *name;
180                  iheight = pheight;
181                  iwidth = pheight*xmax/(pixaspect*ymax);
182          }
183 +        if (pwidth == PHEIGHT)
184 +                printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n",
185 +                                HMARGIN+(pheight-iheight)*.5,
186 +                                VMARGIN+(pwidth-iwidth)*.5,
187 +                                HMARGIN+(pheight-iheight)*.5+iheight,
188 +                                VMARGIN+(pwidth-iwidth)*.5+iwidth);
189 +        else
190 +                printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n",
191 +                                HMARGIN+(pwidth-iwidth)*.5,
192 +                                VMARGIN+(pheight-iheight)*.5,
193 +                                HMARGIN+(pwidth-iwidth)*.5+iwidth,
194 +                                VMARGIN+(pheight-iheight)*.5+iheight);
195 +        puts("%%EndComments");
196 +        puts("gsave save");
197 +        puts("17 dict begin");
198 +                                        /* define image reader */
199 +        if (docolor) {
200 +                printf("/redline %d string def\n", xmax);
201 +                printf("/grnline %d string def\n", xmax);
202 +                printf("/bluline %d string def\n", xmax);
203 +        } else
204 +                printf("/gryline %d string def\n", xmax);
205 +                                        /* use compressed encoding? */
206 +        if (putprim == Cputprim)
207 +                PSprocdef("read6bitRLE");
208 +                                        /* set up transformation matrix */
209 +        printf("%f %f translate\n", HMARGIN, VMARGIN);
210 +        if (pwidth == PHEIGHT) {
211 +                printf("%f 0 translate\n", PWIDTH);
212 +                puts("90 rotate");
213 +        }
214          printf("%f %f translate\n", (pwidth-iwidth)*.5, (pheight-iheight)*.5);
215          printf("%f %f scale\n", iwidth, iheight);
216 <        printf("%%%%EndProlog\n");
216 >        puts("%%EndProlog");
217                                          /* start image procedure */
218 <        printf("%d %d 8 [%d 0 0 %d 0 %d] {read6bitRLE} image\n", xmax, ymax,
219 <                        xmax, -ymax, ymax);
218 >        printf("%d %d 8 [%d 0 0 %d 0 %d]\n", xmax, ymax, xmax, -ymax, ymax);
219 >        if (putprim == Cputprim) {
220 >                if (docolor) {
221 >                        puts("{redline read6bitRLE}");
222 >                        puts("{grnline read6bitRLE}");
223 >                        puts("{bluline read6bitRLE}");
224 >                        puts("true 3 colorimage");
225 >                } else
226 >                        puts("{gryline read6bitRLE} image");
227 >        } else {
228 >                rstr = putprim==Aputprim ? "readhexstring" : "readstring";
229 >                if (docolor) {
230 >                        printf("{currentfile redline %s pop}\n", rstr);
231 >                        printf("{currentfile grnline %s pop}\n", rstr);
232 >                        printf("{currentfile bluline %s pop}\n", rstr);
233 >                        puts("true 3 colorimage");
234 >                } else
235 >                        printf("{currentfile gryline %s pop} image\n", rstr);
236 >        }
237   }
238  
239  
# Line 174 | Line 244 | PStrailer()                    /* print PostScript trailer */
244                  printf("/#copies %d def\n", ncopies);
245          puts("showpage");
246          puts("end");
247 +        puts("restore grestore");
248          puts("%%EOF");
249   }
250  
# Line 187 | Line 258 | char  *nam;
258          for (i = 0; i < 128; i++)       /* clear */
259                  itab[i] = -1;
260          for (i = 1; i < 63; i++)        /* assign greys */
261 <                itab[code[i]] = i<<2 | 2;
261 >                itab[code[i]] = 256.0*pow((i+.5)/64.0, GAMVAL);
262          itab[code[0]] = 0;              /* black is black */
263          itab[code[63]] = 255;           /* and white is white */
264          printf("/codetab [");
# Line 197 | Line 268 | char  *nam;
268                  printf(" %3d", itab[i]);
269          }
270          printf("\n] def\n");
200        printf("/scanline %d string def\n", xmax);
271          printf("/nrept 0 def\n");
272 <        printf("/readbyte { currentfile read not {stop} if } def\n");
273 <        printf("/decode { codetab exch get } def\n");
274 <        printf("/%s {\n", nam);
272 >        printf("/readbyte { currentfile read not {stop} if } bind def\n");
273 >        printf("/decode { codetab exch get } bind def\n");
274 >        printf("/%s {\t%% scanbuffer\n", nam);
275 >        printf("\t/scanline exch def\n");
276          printf("\t{ 0 1 %d { scanline exch\n", xmax-1);
277          printf("\t\tnrept 0 le\n");
278          printf("\t\t\t{ { readbyte dup %d eq\n", RUNCHR);
# Line 221 | Line 292 | char  *nam;
292   ra2ps()                         /* convert Radiance scanlines to 6-bit */
293   {
294          register COLR   *scanin;
224        register int    c;
225        int     lastc, cnt;
226        register int    x;
295          int     y;
296                                                  /* allocate scanline */
297          scanin = (COLR *)malloc(xmax*sizeof(COLR));
# Line 233 | Line 301 | ra2ps()                                /* convert Radiance scanlines to 6-bit */
301          for (y = ymax-1; y >= 0; y--) {
302                  if (freadcolrs(scanin, xmax, stdin) < 0)
303                          quiterr("error reading Radiance picture");
304 <                normcolrs(scanin, xmax, bradj); /* normalize */
305 <                lastc = -1; cnt = 0;
306 <                for (x = 0; x < xmax; x++) {
307 <                        c = normbright(scanin[x]) + 2;
308 <                        if (c > 255) c = 255;
309 <                        c = code[c>>2];
310 <                        if (c == lastc && cnt < MAXRUN)
311 <                                cnt++;
312 <                        else {
313 <                                putrle(cnt, lastc);
314 <                                lastc = c;
315 <                                cnt = 1;
248 <                        }
249 <                }
250 <                putrle(cnt, lastc);
304 >                if (putprim == Cputprim) {
305 >                        if (bradj)                      /* adjust exposure */
306 >                                shiftcolrs(scanin, xmax, bradj);
307 >                        colrs_gambs(scanin, xmax);      /* gamma compression */
308 >                } else
309 >                        normcolrs(scanin, xmax, bradj);
310 >                if (docolor) {
311 >                        (*putprim)(scanin, RED);
312 >                        (*putprim)(scanin, GRN);
313 >                        (*putprim)(scanin, BLU);
314 >                } else
315 >                        (*putprim)(scanin, GRY);
316                  if (ferror(stdout))
317                          quiterr("error writing PostScript file");
318          }
319          putchar('\n');
320                                                  /* free scanline */
321          free((char *)scanin);
322 + }
323 +
324 +
325 + int
326 + Aputprim(scn, pri)              /* put out hex ASCII primary from scanline */
327 + COLR    *scn;
328 + int     pri;
329 + {
330 +        static char     hexdigit[] = "0123456789ABCDEF";
331 +        static int      col = 0;
332 +        register int    x, c;
333 +
334 +        for (x = 0; x < xmax; x++) {
335 +                if (pri == GRY)
336 +                        c = normbright(scn[x]);
337 +                else
338 +                        c = scn[x][pri];
339 +                if (c > 255) c = 255;
340 +                putchar(hexdigit[c>>4]);
341 +                putchar(hexdigit[c&0xf]);
342 +                if ((col += 2) >= 72) {
343 +                        putchar('\n');
344 +                        col = 0;
345 +                }
346 +        }
347 + }
348 +
349 +
350 + int
351 + Bputprim(scn, pri)              /* put out binary primary from scanline */
352 + COLR    *scn;
353 + int     pri;
354 + {
355 +        register int    x, c;
356 +
357 +        for (x = 0; x < xmax; x++) {
358 +                if (pri == GRY)
359 +                        c = normbright(scn[x]);
360 +                else
361 +                        c = scn[x][pri];
362 +                if (c > 255) c = 255;
363 +                putchar(c);
364 +        }
365 + }
366 +
367 +
368 + int
369 + Cputprim(scn, pri)              /* put out compressed primary from scanline */
370 + COLR    *scn;
371 + int     pri;
372 + {
373 +        register int    c;
374 +        register int    x;
375 +        int     lastc, cnt;
376 +
377 +        lastc = -1; cnt = 0;
378 +        for (x = 0; x < xmax; x++) {
379 +                if (pri == GRY)
380 +                        c = normbright(scn[x]) + 2;
381 +                else
382 +                        c = scn[x][pri] + 2;
383 +                if (c > 255) c = 255;
384 +                c = code[c>>2];
385 +                if (c == lastc && cnt < MAXRUN)
386 +                        cnt++;
387 +                else {
388 +                        putrle(cnt, lastc);
389 +                        lastc = c;
390 +                        cnt = 1;
391 +                }
392 +        }
393 +        putrle(cnt, lastc);
394   }
395  
396  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines