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.18 by gregl, Thu Sep 18 18:01:24 1997 UTC vs.
Revision 2.20 by gregl, Fri Sep 26 14:20:38 1997 UTC

# Line 47 | Line 47 | double  hmarg = DEFMARG,
47          vmarg = DEFMARG;                /* horizontal and vertical margins */
48   double  width = DEFWIDTH,
49          height = DEFHEIGHT;             /* default paper width and height */
50 + double  dpi = 0;                        /* print density (0 if unknown) */
51   int  docolor = 0;                       /* produce color image? */
52   int  bradj = 0;                         /* brightness adjustment */
53   int  ncopies = 1;                       /* number of copies */
# Line 57 | Line 58 | int  (*putprim)() = Aputprim;          /* function for writing
58  
59   char  *progname;
60  
61 < int  xmax, ymax;
61 > int  xmax, ymax;                        /* input image dimensions */
62  
63   extern char  *malloc();
64   extern double   unit2inch();
# Line 103 | Line 104 | char  *argv[];
104                          case 'C':               /* compressed ASCII encoding */
105                                  putprim = Cputprim;
106                                  break;
107 +                        case 'd':               /* print density */
108 +                                dpi = atof(argv[++i]);
109 +                                break;
110                          case 'g':               /* device gamma adjustment */
111                                  devgam = atof(argv[++i]);
112                                  break;
# Line 162 | Line 166 | char  *argv[];
166                  quiterr("bad picture format");
167                                  /* gamma compression */
168          if (putprim == Cputprim)
169 <                setcolrgam(CODE6GAM/devgam);
169 >                setcolrgam(CODE6GAM);
170          else if (devgam != 1.)
171 <                setcolrgam(1./devgam);
171 >                setcolrgam(devgam);
172                                  /* write header */
173          PSheader(i <= argc-1 ? argv[i] : "<stdin>");
174                                  /* convert file */
# Line 174 | Line 178 | char  *argv[];
178          exit(0);
179   userr:
180          fprintf(stderr,
181 < "Usage: %s [-b|c][-A|B|C][-e +/-stops][-p paper][-m[h|v] margin][-g gamma] [input [output]]\n",
181 > "Usage: %s [-b|c][-A|B|C][-e +/-stops][-p paper][-m[h|v] margin][-d dpi][-g gamma] [input [output]]\n",
182                          progname);
183          exit(1);
184   }
# Line 223 | Line 227 | parsepaper(ps)         /* determine paper size from name */
227   char    *ps;
228   {
229          static struct psize {char n[12]; float w,h;} p[] = {
230 +                "envelope", 4.12, 9.5,
231 +                "executive", 7.25, 10.5,
232                  "letter", 8.5, 11.,
233 +                "lettersmall", 7.68, 10.16,
234                  "legal", 8.5, 14.,
228                "executive", 7.25, 10.5,
229                "envelope", 4.12, 9.5,
235                  "monarch", 3.87, 7.5,
236 +                "statement", 5.5, 8.5,
237                  "tabloid", 11., 17.,
238                  "A3", 11.69, 16.54,
239                  "A4", 8.27, 11.69,
240 +                "A4small", 7.47, 10.85,
241                  "A5", 6.00, 8.27,
242                  "A6", 4.13, 6.00,
243                  "B4", 10.12, 14.33,
244                  "B5", 7.17, 10.12,
238                "DL", 4.33, 8.66,
245                  "C5", 6.38, 9.01,
246                  "C6", 4.49, 6.38,
247 +                "DL", 4.33, 8.66,
248                  "hagaki", 3.94, 5.83,
249                  "" };
250          register struct psize   *pp;
# Line 266 | Line 273 | char   *ps;
273          fprintf(stderr, "_Name________Width_Height_(inches)\n");
274          for (pp = p; pp->n[0]; pp++)
275                  fprintf(stderr, "%-11s  %5.2f  %5.2f\n", pp->n, pp->w, pp->h);
276 +        fprintf(stderr, "Or use WWxHH size specification\n");
277          exit(1);
278   }
279  
# Line 285 | Line 293 | PSheader(name)                 /* print PostScript header */
293   char  *name;
294   {
295          char  *rstr;
296 <        int  landscape = 0;
296 >        int  landscape, rotate, n;
297          double  pwidth, pheight;
298          double  iwidth, iheight;
299                                          /* EPS comments */
# Line 297 | Line 305 | char  *name;
305                  puts("%%Orientation: Landscape");
306          else
307                  puts("%%Orientation: Portrait");
308 <        if (PWIDTH > PHEIGHT ^ landscape) {
308 >        if (rotate = PWIDTH > PHEIGHT ^ landscape) {
309                  pwidth = PHEIGHT;
310                  pheight = PWIDTH;
311          } else {
312                  pwidth = PWIDTH;
313                  pheight = PHEIGHT;
314          }
315 <        if (pheight/pwidth > pixaspect*ymax/xmax) {
316 <                iwidth = pwidth;
317 <                iheight = pwidth*pixaspect*ymax/xmax;
318 <        } else {
319 <                iheight = pheight;
320 <                iwidth = pheight*xmax/(pixaspect*ymax);
321 <        }
322 <        if (pwidth == PHEIGHT)
315 >        if (dpi > 100 && pixaspect >= 0.99 & pixaspect <= 1.01)
316 >                if (pheight/pwidth > ymax/xmax) {
317 >                        n = pwidth*dpi/xmax;    /* floor */
318 >                        iwidth = n > 0 ? (double)(n*xmax)/dpi : pwidth;
319 >                        iheight = iwidth*ymax/xmax;
320 >                } else {
321 >                        n = pheight*dpi/ymax;   /* floor */
322 >                        iheight = n > 0 ? (double)(n*ymax)/dpi : pheight;
323 >                        iwidth = iheight*xmax/ymax;
324 >                }
325 >        else
326 >                if (pheight/pwidth > pixaspect*ymax/xmax) {
327 >                        iwidth = pwidth;
328 >                        iheight = iwidth*pixaspect*ymax/xmax;
329 >                } else {
330 >                        iheight = pheight;
331 >                        iwidth = iheight*xmax/(pixaspect*ymax);
332 >                }
333 >        if (rotate)
334                  printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n",
335                                  HMARGIN+(pheight-iheight)*.5,
336                                  VMARGIN+(pwidth-iwidth)*.5,
# Line 338 | Line 357 | char  *name;
357                  PSprocdef("read6bitRLE");
358                                          /* set up transformation matrix */
359          printf("%f %f translate\n", HMARGIN, VMARGIN);
360 <        if (pwidth == PHEIGHT) {
360 >        if (rotate) {
361                  printf("%f 0 translate\n", PWIDTH);
362                  puts("90 rotate");
363          }
# Line 389 | Line 408 | char  *nam;
408          for (i = 0; i < 128; i++)       /* clear */
409                  itab[i] = -1;
410          for (i = 1; i < 63; i++)        /* assign greys */
411 <                itab[code[i]] = 256.0*pow((i+.5)/64.0, CODE6GAM);
411 >                itab[code[i]] = 256.0*pow((i+.5)/64.0, CODE6GAM/devgam);
412          itab[code[0]] = 0;              /* black is black */
413          itab[code[63]] = 255;           /* and white is white */
414          printf("/codetab [");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines