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.20 by gregl, Fri Sep 26 14:20:38 1997 UTC vs.
Revision 2.24 by greg, Sat Feb 22 02:07:28 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   *  Radiance picture to PostScript file translator -- one way!
6   */
# Line 19 | Line 16 | static char SCCSid[] = "$SunId$ SGI";
16   #define UPPER(c)        ((c)&~0x20)             /* ASCII trick */
17  
18   #define CODE6GAM        1.47                    /* gamma for 6-bit codes */
19 < #define DEFDGAM         1.0                     /* default device gamma */
19 > #define DEFGGAM         1.0                     /* greyscale device gamma */
20 > #define DEFCGAM         1.8                     /* color device gamma */
21  
22   #define GRY             -1                      /* artificial index for grey */
23  
# Line 42 | Line 40 | char  code[] =                 /* 6-bit code lookup table */
40   int  wrongformat = 0;                   /* input in wrong format? */
41   double  pixaspect = 1.0;                /* pixel aspect ratio */
42  
43 < double  devgam = DEFDGAM;               /* device gamma response */
43 > double  devgam = 0.;                    /* device gamma response */
44   double  hmarg = DEFMARG,
45          vmarg = DEFMARG;                /* horizontal and vertical margins */
46   double  width = DEFWIDTH,
47          height = DEFHEIGHT;             /* default paper width and height */
48   double  dpi = 0;                        /* print density (0 if unknown) */
49 < int  docolor = 0;                       /* produce color image? */
49 > int  docolor = 1;                       /* produce color image? */
50   int  bradj = 0;                         /* brightness adjustment */
51   int  ncopies = 1;                       /* number of copies */
52  
# Line 60 | Line 58 | char  *progname;
58  
59   int  xmax, ymax;                        /* input image dimensions */
60  
63 extern char  *malloc();
61   extern double   unit2inch();
62  
63  
64 + int
65   headline(s)             /* check header line */
66   char  *s;
67   {
# Line 74 | Line 72 | char  *s;
72                  wrongformat = strcmp(fmt, COLRFMT);
73          } else if (isaspect(s))
74                  pixaspect *= aspectval(s);
75 +        return(0);
76   }
77  
78  
# Line 165 | Line 164 | char  *argv[];
164          if (wrongformat || fgetresolu(&xmax, &ymax, stdin) < 0)
165                  quiterr("bad picture format");
166                                  /* gamma compression */
167 +        if (devgam <= 0.05)
168 +                devgam = docolor ? DEFCGAM : DEFGGAM;
169          if (putprim == Cputprim)
170                  setcolrgam(CODE6GAM);
171          else if (devgam != 1.)
172                  setcolrgam(devgam);
173                                  /* write header */
174 <        PSheader(i <= argc-1 ? argv[i] : "<stdin>");
174 >        PSheader(argc, argv);
175                                  /* convert file */
176          ra2ps();
177                                  /* write trailer */
# Line 188 | Line 189 | double
189   unit2inch(s)            /* determine unit */
190   register char   *s;
191   {
192 <        static struct unit {char n; float f} u[] = {
192 >        static struct unit {char n; float f;} u[] = {
193                  'i', 1.,
194                  'm', 1./25.4,
195                  'c', 1./2.54,
# Line 289 | Line 290 | char  *err;
290   }
291  
292  
293 < PSheader(name)                  /* print PostScript header */
294 < char  *name;
293 > PSheader(ac, av)                /* print PostScript header */
294 > int  ac;
295 > char  **av;
296   {
297          char  *rstr;
298          int  landscape, rotate, n;
# Line 298 | Line 300 | char  *name;
300          double  iwidth, iheight;
301                                          /* EPS comments */
302          puts("%!PS-Adobe-2.0 EPSF-2.0");
303 <        printf("%%%%Title: %s\n", name);
304 <        printf("%%%%Creator: %s = %s\n", progname, SCCSid);
303 >        printf("%%%%Title: "); printargs(ac, av, stdout);
304 >        printf("%%%%Creator: %s\n", progname);
305          printf("%%%%Pages: %d\n", ncopies);
306          if (landscape = xmax > pixaspect*ymax)
307                  puts("%%Orientation: Landscape");
# Line 468 | Line 470 | ra2ps()                                /* convert Radiance scanlines to 6-bit */
470          }
471          putchar('\n');
472                                                  /* free scanline */
473 <        free((char *)scanin);
473 >        free((void *)scanin);
474   }
475  
476  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines