--- ray/src/px/ra_ps.c 1992/07/13 10:53:42 2.3 +++ ray/src/px/ra_ps.c 1997/09/23 16:52:23 2.19 @@ -1,7 +1,7 @@ -/* Copyright (c) 1992 Regents of the University of California */ +/* Copyright (c) 1997 Silicon Graphics, Inc. */ #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static char SCCSid[] = "$SunId$ SGI"; #endif /* @@ -9,27 +9,60 @@ static char SCCSid[] = "$SunId$ LBL"; */ #include +#include +#include +#ifdef MSDOS +#include +#endif #include "color.h" -#include "random.h" -#define HMARGIN (.5*72) /* horizontal margin */ -#define VMARGIN (.5*72) /* vertical margin */ -#define PWIDTH (8.5*72-2*HMARGIN) /* width of device */ -#define PHEIGHT (11*72-2*VMARGIN) /* height of device */ +#define UPPER(c) ((c)&~0x20) /* ASCII trick */ +#define CODE6GAM 1.47 /* gamma for 6-bit codes */ +#define DEFDGAM 1.0 /* default device gamma */ + +#define GRY -1 /* artificial index for grey */ + +#define DEFMARG 0.5 /* default margin (inches) */ +#define DEFWIDTH 8.5 /* default page width */ +#define DEFHEIGHT 11 /* default page height */ +#define HMARGIN (hmarg*72) /* horizontal margin */ +#define VMARGIN (vmarg*72) /* vertical margin */ +#define PWIDTH (width*72-2*HMARGIN) /* width of device */ +#define PHEIGHT (height*72-2*VMARGIN) /* height of device */ + +#define RUNCHR '*' /* character to start rle */ +#define MINRUN 4 /* minimum run-length */ +#define RSTRT '!' /* character for MINRUN */ +#define MAXRUN (MINRUN+'~'-RSTRT) /* maximum run-length */ + char code[] = /* 6-bit code lookup table */ "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@+"; int wrongformat = 0; /* input in wrong format? */ -double pixaspect = 1.0; /* pixel aspect ratio */ +double pixaspect = 1.0; /* pixel aspect ratio */ +double devgam = DEFDGAM; /* device gamma response */ +double hmarg = DEFMARG, + vmarg = DEFMARG; /* horizontal and vertical margins */ +double width = DEFWIDTH, + height = DEFHEIGHT; /* default paper width and height */ +int docolor = 0; /* produce color image? */ int bradj = 0; /* brightness adjustment */ +int ncopies = 1; /* number of copies */ +extern int Aputprim(), Bputprim(), Cputprim(); + +int (*putprim)() = Aputprim; /* function for writing scanline */ + char *progname; int xmax, ymax; +extern char *malloc(); +extern double unit2inch(); + headline(s) /* check header line */ char *s; { @@ -48,17 +81,60 @@ int argc; char *argv[]; { int i; + double d; progname = argv[0]; for (i = 1; i < argc; i++) if (argv[i][0] == '-') switch (argv[i][1]) { + case 'b': /* produce b&w PostScript */ + docolor = 0; + break; + case 'c': /* produce color PostScript */ + docolor = 1; + break; + case 'A': /* standard ASCII encoding */ + putprim = Aputprim; + break; + case 'B': /* standard binary encoding */ + putprim = Bputprim; + break; + case 'C': /* compressed ASCII encoding */ + putprim = Cputprim; + break; + case 'g': /* device gamma adjustment */ + devgam = atof(argv[++i]); + break; + case 'p': /* paper size */ + parsepaper(argv[++i]); + break; + case 'm': /* margin */ + d = atof(argv[i+1]); + d *= unit2inch(argv[i+1]); + switch (argv[i][2]) { + case '\0': + hmarg = vmarg = d; + break; + case 'h': + hmarg = d; + break; + case 'v': + vmarg = d; + break; + default: + goto userr; + } + i++; + break; case 'e': /* exposure adjustment */ if (argv[i+1][0] != '+' && argv[i+1][0] != '-') goto userr; bradj = atoi(argv[++i]); break; + case 'n': /* number of copies */ + ncopies = atoi(argv[++i]); + break; default: goto userr; } @@ -73,14 +149,22 @@ char *argv[]; exit(1); } if (i == argc-2 && freopen(argv[i+1], "w", stdout) == NULL) { - fprintf(stderr, "can't open output \"%s\"\n", + fprintf(stderr, "%s: can't open output \"%s\"\n", progname, argv[i+1]); exit(1); } +#ifdef MSDOS + setmode(fileno(stdin), O_BINARY); +#endif /* get our header */ getheader(stdin, headline, NULL); if (wrongformat || fgetresolu(&xmax, &ymax, stdin) < 0) quiterr("bad picture format"); + /* gamma compression */ + if (putprim == Cputprim) + setcolrgam(CODE6GAM); + else if (devgam != 1.) + setcolrgam(devgam); /* write header */ PSheader(i <= argc-1 ? argv[i] : ""); /* convert file */ @@ -89,11 +173,107 @@ char *argv[]; PStrailer(); exit(0); userr: - fprintf(stderr, "Usage: %s [-e +/-stops] [input [output]]\n", progname); + fprintf(stderr, +"Usage: %s [-b|c][-A|B|C][-e +/-stops][-p paper][-m[h|v] margin][-g gamma] [input [output]]\n", + progname); exit(1); } +double +unit2inch(s) /* determine unit */ +register char *s; +{ + static struct unit {char n; float f} u[] = { + 'i', 1., + 'm', 1./25.4, + 'c', 1./2.54, + '\0' }; + register struct unit *up; + + while (*s && !isalpha(*s)) + s++; + for (up = u; up->n; up++) + if (up->n == *s) + return(up->f); + return(1.); +} + + +int +matchid(name, id) /* see if name matches id (case insensitive) */ +char *name; +register char *id; +{ + register char *s = name; + + while (*s) { + if (isalpha(*s)) { + if (!isalpha(*id) || UPPER(*s) != UPPER(*id)) + return(0); + } else if (*s != *id) + return(0); + s++; id++; + } + return(!*id || s-name >= 3); /* substrings >= 3 chars OK */ +} + + +parsepaper(ps) /* determine paper size from name */ +char *ps; +{ + static struct psize {char n[12]; float w,h;} p[] = { + "envelope", 4.12, 9.5, + "executive", 7.25, 10.5, + "letter", 8.5, 11., + "lettersmall", 7.68, 10.16, + "legal", 8.5, 14., + "monarch", 3.87, 7.5, + "statement", 5.5, 8.5, + "tabloid", 11., 17., + "A3", 11.69, 16.54, + "A4", 8.27, 11.69, + "A4small", 7.47, 10.85, + "A5", 6.00, 8.27, + "A6", 4.13, 6.00, + "B4", 10.12, 14.33, + "B5", 7.17, 10.12, + "C5", 6.38, 9.01, + "C6", 4.49, 6.38, + "DL", 4.33, 8.66, + "hagaki", 3.94, 5.83, + "" }; + register struct psize *pp; + register char *s = ps; + double d; + + if (isdigit(*s)) { /* check for WWxHH specification */ + width = atof(s); + while (*s && !isalpha(*s)) + s++; + d = unit2inch(s); + height = atof(++s); + width *= d; + height *= d; + if (width >= 1. & height >= 1.) + return; + } else /* check for match to standard size */ + for (pp = p; pp->n[0]; pp++) + if (matchid(s, pp->n)) { + width = pp->w; + height = pp->h; + return; + } + fprintf(stderr, "%s: unknown paper size \"%s\" -- known sizes:\n", + progname, ps); + fprintf(stderr, "_Name________Width_Height_(inches)\n"); + for (pp = p; pp->n[0]; pp++) + fprintf(stderr, "%-11s %5.2f %5.2f\n", pp->n, pp->w, pp->h); + fprintf(stderr, "Or use WWxHH size specification\n"); + exit(1); +} + + quiterr(err) /* print message and exit */ char *err; { @@ -108,28 +288,20 @@ char *err; PSheader(name) /* print PostScript header */ char *name; { + char *rstr; int landscape = 0; - double pwidth, pheight; - double iwidth, iheight; - - printf("%%!\n"); + double pwidth, pheight; + double iwidth, iheight; + /* EPS comments */ + puts("%!PS-Adobe-2.0 EPSF-2.0"); printf("%%%%Title: %s\n", name); - printf("%%%%Creator: %s\n", progname); - printf("%%%%Pages: 1\n"); + printf("%%%%Creator: %s = %s\n", progname, SCCSid); + printf("%%%%Pages: %d\n", ncopies); if (landscape = xmax > pixaspect*ymax) - printf("%%%%Landscape\n"); + puts("%%Orientation: Landscape"); else - printf("%%%%Portrait\n"); - printf("%%%%EndComments\n"); - printf("gsave\n"); - printf("64 dict begin\n"); - /* define image reader */ - PSprocdef("read6bit"); - /* set up transformation matrix */ - printf("%f %f translate\n", HMARGIN, VMARGIN); + puts("%%Orientation: Portrait"); if (PWIDTH > PHEIGHT ^ landscape) { - printf("0 %f translate\n", PHEIGHT); - printf("-90 rotate\n"); pwidth = PHEIGHT; pheight = PWIDTH; } else { @@ -143,21 +315,71 @@ char *name; iheight = pheight; iwidth = pheight*xmax/(pixaspect*ymax); } + if (pwidth == PHEIGHT) + printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n", + HMARGIN+(pheight-iheight)*.5, + VMARGIN+(pwidth-iwidth)*.5, + HMARGIN+(pheight-iheight)*.5+iheight, + VMARGIN+(pwidth-iwidth)*.5+iwidth); + else + printf("%%%%BoundingBox: %.0f %.0f %.0f %.0f\n", + HMARGIN+(pwidth-iwidth)*.5, + VMARGIN+(pheight-iheight)*.5, + HMARGIN+(pwidth-iwidth)*.5+iwidth, + VMARGIN+(pheight-iheight)*.5+iheight); + puts("%%EndComments"); + puts("gsave save"); + puts("17 dict begin"); + /* define image reader */ + if (docolor) { + printf("/redline %d string def\n", xmax); + printf("/grnline %d string def\n", xmax); + printf("/bluline %d string def\n", xmax); + } else + printf("/gryline %d string def\n", xmax); + /* use compressed encoding? */ + if (putprim == Cputprim) + PSprocdef("read6bitRLE"); + /* set up transformation matrix */ + printf("%f %f translate\n", HMARGIN, VMARGIN); + if (pwidth == PHEIGHT) { + printf("%f 0 translate\n", PWIDTH); + puts("90 rotate"); + } printf("%f %f translate\n", (pwidth-iwidth)*.5, (pheight-iheight)*.5); printf("%f %f scale\n", iwidth, iheight); - printf("%%%%EndProlog\n"); + puts("%%EndProlog"); /* start image procedure */ - printf("%d %d 8 [%d 0 0 %d 0 %d] {read6bit} image", xmax, ymax, - xmax, -ymax, ymax); + printf("%d %d 8 [%d 0 0 %d 0 %d]\n", xmax, ymax, xmax, -ymax, ymax); + if (putprim == Cputprim) { + if (docolor) { + puts("{redline read6bitRLE}"); + puts("{grnline read6bitRLE}"); + puts("{bluline read6bitRLE}"); + puts("true 3 colorimage"); + } else + puts("{gryline read6bitRLE} image"); + } else { + rstr = putprim==Aputprim ? "readhexstring" : "readstring"; + if (docolor) { + printf("{currentfile redline %s pop}\n", rstr); + printf("{currentfile grnline %s pop}\n", rstr); + printf("{currentfile bluline %s pop}\n", rstr); + puts("true 3 colorimage"); + } else + printf("{currentfile gryline %s pop} image\n", rstr); + } } PStrailer() /* print PostScript trailer */ { puts("%%Trailer"); - puts("end"); + if (ncopies > 1) + printf("/#copies %d def\n", ncopies); puts("showpage"); - puts("grestore"); + puts("end"); + puts("restore grestore"); puts("%%EOF"); } @@ -167,33 +389,44 @@ char *nam; { short itab[128]; register int i; - - for (i = 0; i < 128; i++) + /* assign code values */ + for (i = 0; i < 128; i++) /* clear */ itab[i] = -1; - for (i = 0; i < 64; i++) - itab[code[i]] = i<<2 | 2; - printf("/decode ["); + for (i = 1; i < 63; i++) /* assign greys */ + itab[code[i]] = 256.0*pow((i+.5)/64.0, CODE6GAM/devgam); + itab[code[0]] = 0; /* black is black */ + itab[code[63]] = 255; /* and white is white */ + printf("/codetab ["); for (i = 0; i < 128; i++) { if (!(i & 0xf)) putchar('\n'); printf(" %3d", itab[i]); } printf("\n] def\n"); - printf("/scanline %d string def\n", xmax); - printf("/%s {\n", nam); + printf("/nrept 0 def\n"); + printf("/readbyte { currentfile read not {stop} if } bind def\n"); + printf("/decode { codetab exch get } bind def\n"); + printf("/%s {\t%% scanbuffer\n", nam); + printf("\t/scanline exch def\n"); printf("\t{ 0 1 %d { scanline exch\n", xmax-1); - printf("\t\t{ decode currentfile read not {stop} if get\n"); - printf("\tdup 0 lt {pop} {exit} ifelse } loop put } for\n"); - printf("} stopped {pop pop pop 0 string} {scanline} ifelse } def\n"); + printf("\t\tnrept 0 le\n"); + printf("\t\t\t{ { readbyte dup %d eq\n", RUNCHR); + printf("\t\t\t\t\t{ pop /nrept readbyte %d sub def\n", RSTRT-MINRUN+1); + printf("\t\t\t\t\t\t/reptv readbyte decode def\n"); + printf("\t\t\t\t\t\treptv exit }\n"); + printf("\t\t\t\t\t{ decode dup 0 lt {pop} {exit} ifelse }\n"); + printf("\t\t\t\tifelse } loop }\n"); + printf("\t\t\t{ /nrept nrept 1 sub def reptv }\n"); + printf("\t\tifelse put\n"); + printf("\t\t} for\n"); + printf("\t} stopped {pop pop 0 string} {scanline} ifelse\n"); + printf("} bind def\n"); } ra2ps() /* convert Radiance scanlines to 6-bit */ { - COLR *scanin; - register int col = 0; - register int c; - register int x; + register COLR *scanin; int y; /* allocate scanline */ scanin = (COLR *)malloc(xmax*sizeof(COLR)); @@ -203,18 +436,116 @@ ra2ps() /* convert Radiance scanlines to 6-bit */ for (y = ymax-1; y >= 0; y--) { if (freadcolrs(scanin, xmax, stdin) < 0) quiterr("error reading Radiance picture"); - normcolrs(scanin, xmax, bradj); /* normalize */ - for (x = 0; x < xmax; x++) { - if (!(col++ & 0x3f)) - putchar('\n'); - c = normbright(scanin[x]) + (random()&3); - if (c > 255) c = 255; - putchar(code[c>>2]); - } + if (putprim == Cputprim || devgam != 1.) { + if (bradj) /* adjust exposure */ + shiftcolrs(scanin, xmax, bradj); + colrs_gambs(scanin, xmax); /* gamma compression */ + } else + normcolrs(scanin, xmax, bradj); + if (docolor) { + (*putprim)(scanin, RED); + (*putprim)(scanin, GRN); + (*putprim)(scanin, BLU); + } else + (*putprim)(scanin, GRY); if (ferror(stdout)) quiterr("error writing PostScript file"); } putchar('\n'); /* free scanline */ free((char *)scanin); +} + + +int +Aputprim(scn, pri) /* put out hex ASCII primary from scanline */ +COLR *scn; +int pri; +{ + static char hexdigit[] = "0123456789ABCDEF"; + static int col = 0; + register int x, c; + + for (x = 0; x < xmax; x++) { + if (pri == GRY) + c = normbright(scn[x]); + else + c = scn[x][pri]; + if (c > 255) c = 255; + putchar(hexdigit[c>>4]); + putchar(hexdigit[c&0xf]); + if ((col += 2) >= 72) { + putchar('\n'); + col = 0; + } + } +} + + +int +Bputprim(scn, pri) /* put out binary primary from scanline */ +COLR *scn; +int pri; +{ + register int x, c; + + for (x = 0; x < xmax; x++) { + if (pri == GRY) + c = normbright(scn[x]); + else + c = scn[x][pri]; + if (c > 255) c = 255; + putchar(c); + } +} + + +int +Cputprim(scn, pri) /* put out compressed primary from scanline */ +COLR *scn; +int pri; +{ + register int c; + register int x; + int lastc, cnt; + + lastc = -1; cnt = 0; + for (x = 0; x < xmax; x++) { + if (pri == GRY) + c = normbright(scn[x]) + 2; + else + c = scn[x][pri] + 2; + if (c > 255) c = 255; + c = code[c>>2]; + if (c == lastc && cnt < MAXRUN) + cnt++; + else { + putrle(cnt, lastc); + lastc = c; + cnt = 1; + } + } + putrle(cnt, lastc); +} + + +putrle(cnt, cod) /* put out cnt of cod */ +register int cnt, cod; +{ + static int col = 0; + + if (cnt >= MINRUN) { + col += 3; + putchar(RUNCHR); + putchar(RSTRT-MINRUN+cnt); + putchar(cod); + } else { + col += cnt; + while (cnt-- > 0) + putchar(cod); + } + if (col >= 72) { + putchar('\n'); + col = 0; + } }