ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/ra_bmp.c
Revision: 2.14
Committed: Sun Apr 5 19:10:51 2020 UTC (4 years, 1 month ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R4, rad5R3, HEAD
Changes since 2.13: +5 -4 lines
Log Message:
Fixed segmentation error with -b on input with color primaries

File Contents

# User Rev Content
1 greg 2.1 #ifndef lint
2 greg 2.14 static const char RCSid[] = "$Id: ra_bmp.c,v 2.13 2019/07/19 17:37:56 greg Exp $";
3 greg 2.1 #endif
4     /*
5     * program to convert between RADIANCE and Windows BMP file
6     */
7    
8 greg 2.9 #include <math.h>
9 schorsch 2.3
10 greg 2.13 #include "rtio.h"
11 greg 2.1 #include "platform.h"
12     #include "color.h"
13 greg 2.4 #include "tonemap.h"
14 greg 2.1 #include "resolu.h"
15     #include "bmpfile.h"
16    
17 greg 2.9 int bradj = 0; /* brightness adjustment */
18 greg 2.1
19 greg 2.9 double gamcor = 2.2; /* gamma correction value */
20 greg 2.1
21 greg 2.9 char *progname;
22 greg 2.1
23 greg 2.4 static void quiterr(const char *err);
24     static void tmap2bmp(char *fnin, char *fnout, char *expec,
25     RGBPRIMP monpri, double gamval);
26 greg 2.9 static void rad2bmp(FILE *rfp, BMPWriter *bwr, int inv, RGBPRIMP monpri);
27 schorsch 2.3 static void bmp2rad(BMPReader *brd, FILE *rfp, int inv);
28 greg 2.1
29 greg 2.9 static RGBPRIMP rgbinp = stdprims; /* RGB input primitives */
30     static RGBPRIMS myinprims; /* custom primitives holder */
31    
32     static gethfunc headline;
33    
34 greg 2.1
35     int
36     main(int argc, char *argv[])
37     {
38 greg 2.4 char *inpfile=NULL, *outfile=NULL;
39     char *expec = NULL;
40     int reverse = 0;
41     RGBPRIMP rgbp = stdprims;
42     RGBPRIMS myprims;
43     RESOLU rs;
44     int i;
45 greg 2.1
46     progname = argv[0];
47    
48     for (i = 1; i < argc; i++)
49 greg 2.6 if (argv[i][0] == '-' && argv[i][1])
50 greg 2.1 switch (argv[i][1]) {
51     case 'b':
52 greg 2.4 rgbp = NULL;
53 greg 2.1 break;
54     case 'g':
55     gamcor = atof(argv[++i]);
56     break;
57     case 'e':
58     if (argv[i+1][0] != '+' && argv[i+1][0] != '-')
59 greg 2.4 expec = argv[++i];
60     else
61     bradj = atoi(argv[++i]);
62     break;
63     case 'p':
64     if (argc-i < 9)
65 greg 2.1 goto userr;
66 greg 2.4 myprims[RED][CIEX] = atof(argv[++i]);
67     myprims[RED][CIEY] = atof(argv[++i]);
68     myprims[GRN][CIEX] = atof(argv[++i]);
69     myprims[GRN][CIEY] = atof(argv[++i]);
70     myprims[BLU][CIEX] = atof(argv[++i]);
71     myprims[BLU][CIEY] = atof(argv[++i]);
72     myprims[WHT][CIEX] = atof(argv[++i]);
73     myprims[WHT][CIEY] = atof(argv[++i]);
74     if (rgbp == stdprims)
75     rgbp = myprims;
76 greg 2.1 break;
77     case 'r':
78     reverse = !reverse;
79     break;
80     default:
81     goto userr;
82     }
83     else
84     break;
85    
86     if (i < argc-2)
87     goto userr;
88    
89     SET_FILE_BINARY(stdin);
90     SET_FILE_BINARY(stdout);
91     SET_DEFAULT_BINARY();
92    
93     if (i <= argc-1 && strcmp(argv[i], "-"))
94     inpfile = argv[i];
95    
96     if (i == argc-2 && strcmp(argv[i+1], "-"))
97     outfile = argv[i+1];
98 greg 2.4 /* check for tone-mapping */
99     if (expec != NULL) {
100     if (reverse)
101     goto userr;
102     tmap2bmp(inpfile, outfile, expec, rgbp, gamcor);
103     return(0);
104     }
105 greg 2.1
106     setcolrgam(gamcor); /* set up conversion */
107    
108     if (reverse) {
109     BMPReader *rdr;
110     /* open BMP file or stream */
111     if (inpfile != NULL)
112     rdr = BMPopenInputFile(inpfile);
113     else
114     rdr = BMPopenInputStream(stdin);
115    
116     if (rdr == NULL) {
117     fprintf(stderr, "%s: cannot open or recognize BMP\n",
118     inpfile != NULL ? inpfile : "<stdin>");
119     exit(1);
120     }
121     /* open Radiance output */
122     if (outfile != NULL && freopen(outfile, "w", stdout) == NULL) {
123     fprintf(stderr, "%s: cannot open for output\n",
124     outfile);
125     exit(1);
126     }
127     /* put Radiance header */
128     newheader("RADIANCE", stdout);
129     printargs(i, argv, stdout);
130     fputformat(COLRFMT, stdout);
131     putchar('\n');
132     rs.xr = rdr->hdr->width;
133     rs.yr = rdr->hdr->height;
134     rs.rt = YMAJOR;
135 greg 2.2 /* write scans downward if we can */
136 greg 2.1 if (rdr->hdr->yIsDown || inpfile != NULL)
137     rs.rt |= YDECR;
138     fputsresolu(&rs, stdout);
139     /* convert file */
140     bmp2rad(rdr, stdout, !rdr->hdr->yIsDown && inpfile!=NULL);
141     /* flush output */
142 greg 2.2 BMPcloseInput(rdr);
143 greg 2.1 if (fflush(stdout) < 0)
144     quiterr("error writing Radiance output");
145     } else {
146     BMPHeader *hdr;
147     BMPWriter *wtr;
148     /* open Radiance input */
149     if (inpfile != NULL && freopen(inpfile, "r", stdin) == NULL) {
150     fprintf(stderr, "%s: cannot open input file\n",
151     inpfile);
152     exit(1);
153     }
154     /* get header info. */
155 greg 2.9 if (getheader(stdin, headline, NULL) < 0 ||
156 greg 2.1 !fgetsresolu(&rs, stdin))
157     quiterr("bad Radiance picture format");
158     /* initialize BMP header */
159 greg 2.4 if (rgbp == NULL) {
160     hdr = BMPmappedHeader(scanlen(&rs),
161     numscans(&rs), 0, 256);
162 greg 2.10 /*
163 greg 2.2 if (outfile != NULL)
164     hdr->compr = BI_RLE8;
165 greg 2.10 */
166 greg 2.2 } else
167 greg 2.4 hdr = BMPtruecolorHeader(scanlen(&rs),
168     numscans(&rs), 0);
169 greg 2.1 if (hdr == NULL)
170     quiterr("cannot initialize BMP header");
171 greg 2.2 /* set up output direction */
172 greg 2.7 hdr->yIsDown = ((outfile == NULL) | (hdr->compr == BI_RLE8));
173 greg 2.1 /* open BMP output */
174     if (outfile != NULL)
175     wtr = BMPopenOutputFile(outfile, hdr);
176     else
177     wtr = BMPopenOutputStream(stdout, hdr);
178 greg 2.2 if (wtr == NULL)
179     quiterr("cannot allocate writer structure");
180 greg 2.1 /* convert file */
181 greg 2.9 rad2bmp(stdin, wtr, !hdr->yIsDown, rgbp);
182 greg 2.1 /* flush output */
183     if (fflush((FILE *)wtr->c_data) < 0)
184     quiterr("error writing BMP output");
185 greg 2.2 BMPcloseOutput(wtr);
186 greg 2.1 }
187 greg 2.4 return(0); /* success */
188 greg 2.1 userr:
189     fprintf(stderr,
190 greg 2.4 "Usage: %s [-b][-g gamma][-e spec][-p xr yr xg yg xb yb xw yw] [input|- [output]]\n",
191 greg 2.1 progname);
192 greg 2.4 fprintf(stderr,
193     " or: %s -r [-g gamma][-e +/-stops] [input|- [output]]\n",
194     progname);
195     return(1);
196 greg 2.1 }
197    
198     /* print message and exit */
199 schorsch 2.3 static void
200 greg 2.1 quiterr(const char *err)
201     {
202     if (err != NULL) {
203     fprintf(stderr, "%s: %s\n", progname, err);
204     exit(1);
205     }
206     exit(0);
207     }
208    
209 greg 2.9 /* process header line (don't echo) */
210     static int
211     headline(char *s, void *p)
212     {
213 greg 2.12 char fmt[MAXFMTLEN];
214 greg 2.9
215     if (formatval(fmt, s)) { /* check if format string */
216     if (!strcmp(fmt,COLRFMT))
217     return(0);
218     if (!strcmp(fmt,CIEFMT)) {
219     rgbinp = TM_XYZPRIM;
220     return(0);
221     }
222     return(-1);
223     }
224     if (isprims(s)) { /* get input primaries */
225     primsval(myinprims, s);
226     rgbinp = myinprims;
227     return(0);
228     }
229     /* should I grok colcorr also? */
230     return(0);
231     }
232    
233    
234 greg 2.1 /* convert Radiance picture to BMP */
235 schorsch 2.3 static void
236 greg 2.9 rad2bmp(FILE *rfp, BMPWriter *bwr, int inv, RGBPRIMP monpri)
237 greg 2.1 {
238 greg 2.9 int usexfm = 0;
239     COLORMAT xfm;
240 greg 2.1 COLR *scanin;
241 greg 2.9 COLOR cval;
242 greg 2.1 int y, yend, ystp;
243     int x;
244     /* allocate scanline */
245     scanin = (COLR *)malloc(bwr->hdr->width*sizeof(COLR));
246     if (scanin == NULL)
247     quiterr("out of memory in rad2bmp");
248 greg 2.9 /* set up color conversion */
249     usexfm = (monpri != NULL ? rgbinp != monpri :
250     rgbinp != TM_XYZPRIM && rgbinp != stdprims);
251     if (usexfm) {
252 greg 2.14 RGBPRIMP destpri = monpri != NULL ? monpri : stdprims;
253     double expcomp = pow(2.0, (double)bradj);
254 greg 2.9 if (rgbinp == TM_XYZPRIM)
255 greg 2.14 compxyz2rgbWBmat(xfm, destpri);
256 greg 2.9 else
257 greg 2.14 comprgb2rgbWBmat(xfm, rgbinp, destpri);
258 greg 2.9 for (y = 0; y < 3; y++)
259     for (x = 0; x < 3; x++)
260     xfm[y][x] *= expcomp;
261     }
262 greg 2.1 /* convert image */
263     if (inv) {
264     y = bwr->hdr->height - 1;
265     ystp = -1; yend = -1;
266     } else {
267     y = 0;
268     ystp = 1; yend = bwr->hdr->height;
269     }
270     /* convert each scanline */
271     for ( ; y != yend; y += ystp) {
272     if (freadcolrs(scanin, bwr->hdr->width, rfp) < 0)
273     quiterr("error reading Radiance picture");
274 greg 2.9 if (usexfm)
275     for (x = bwr->hdr->width; x--; ) {
276     colr_color(cval, scanin[x]);
277     colortrans(cval, xfm, cval);
278     setcolr(scanin[x], colval(cval,RED),
279     colval(cval,GRN),
280     colval(cval,BLU));
281     }
282     else if (bradj)
283 greg 2.1 shiftcolrs(scanin, bwr->hdr->width, bradj);
284 greg 2.9 if (monpri == NULL && rgbinp != TM_XYZPRIM)
285     for (x = bwr->hdr->width; x--; )
286     scanin[x][GRN] = normbright(scanin[x]);
287 greg 2.1 colrs_gambs(scanin, bwr->hdr->width);
288 greg 2.9 if (monpri == NULL)
289 greg 2.1 for (x = bwr->hdr->width; x--; )
290     bwr->scanline[x] = scanin[x][GRN];
291     else
292     for (x = bwr->hdr->width; x--; ) {
293     bwr->scanline[3*x] = scanin[x][BLU];
294     bwr->scanline[3*x+1] = scanin[x][GRN];
295     bwr->scanline[3*x+2] = scanin[x][RED];
296     }
297     bwr->yscan = y;
298     x = BMPwriteScanline(bwr);
299     if (x != BIR_OK)
300     quiterr(BMPerrorMessage(x));
301     }
302     /* free scanline */
303     free((void *)scanin);
304     }
305    
306     /* convert BMP file to Radiance */
307 schorsch 2.3 static void
308 greg 2.1 bmp2rad(BMPReader *brd, FILE *rfp, int inv)
309     {
310     COLR *scanout;
311     int y, yend, ystp;
312     int x;
313     /* allocate scanline */
314     scanout = (COLR *)malloc(brd->hdr->width*sizeof(COLR));
315     if (scanout == NULL)
316     quiterr("out of memory in bmp2rad");
317     /* convert image */
318     if (inv) {
319     y = brd->hdr->height - 1;
320     ystp = -1; yend = -1;
321     } else {
322     y = 0;
323     ystp = 1; yend = brd->hdr->height;
324     }
325     /* convert each scanline */
326     for ( ; y != yend; y += ystp) {
327     x = BMPseekScanline(y, brd);
328     if (x != BIR_OK)
329     quiterr(BMPerrorMessage(x));
330     for (x = brd->hdr->width; x--; ) {
331     RGBquad rgbq = BMPdecodePixel(x, brd);
332     scanout[x][RED] = rgbq.r;
333     scanout[x][GRN] = rgbq.g;
334     scanout[x][BLU] = rgbq.b;
335     }
336     gambs_colrs(scanout, brd->hdr->width);
337     if (bradj)
338     shiftcolrs(scanout, brd->hdr->width, bradj);
339     if (fwritecolrs(scanout, brd->hdr->width, rfp) < 0)
340     quiterr("error writing Radiance picture");
341     }
342     /* clean up */
343     free((void *)scanout);
344     }
345 greg 2.4
346     /* Tone-map and convert Radiance picture */
347     static void
348     tmap2bmp(char *fnin, char *fnout, char *expec, RGBPRIMP monpri, double gamval)
349     {
350     int tmflags;
351     BMPHeader *hdr;
352     BMPWriter *wtr;
353     FILE *fp;
354     int xr, yr;
355 greg 2.11 uby8 *pa;
356 greg 2.4 int i;
357     /* check tone-mapping spec */
358     i = strlen(expec);
359     if (i && !strncmp(expec, "auto", i))
360     tmflags = TM_F_CAMERA;
361     else if (i && !strncmp(expec, "human", i))
362     tmflags = TM_F_HUMAN & ~TM_F_UNIMPL;
363     else if (i && !strncmp(expec, "linear", i))
364     tmflags = TM_F_LINEAR;
365     else
366     quiterr("illegal exposure specification (auto|human|linear)");
367     if (monpri == NULL) {
368     tmflags |= TM_F_BW;
369     monpri = stdprims;
370     }
371     /* open Radiance input */
372     if (fnin == NULL)
373     fp = stdin;
374     else if ((fp = fopen(fnin, "r")) == NULL) {
375     fprintf(stderr, "%s: cannot open\n", fnin);
376     exit(1);
377     }
378     /* tone-map picture */
379     if (tmMapPicture(&pa, &xr, &yr, tmflags, monpri, gamval,
380     0., 0., fnin, fp) != TM_E_OK)
381     exit(1);
382     /* initialize BMP header */
383     if (tmflags & TM_F_BW) {
384     hdr = BMPmappedHeader(xr, yr, 0, 256);
385 greg 2.5 if (fnout != NULL)
386     hdr->compr = BI_RLE8;
387 greg 2.4 } else
388     hdr = BMPtruecolorHeader(xr, yr, 0);
389     if (hdr == NULL)
390     quiterr("cannot initialize BMP header");
391     /* open BMP output */
392     if (fnout != NULL)
393     wtr = BMPopenOutputFile(fnout, hdr);
394     else
395     wtr = BMPopenOutputStream(stdout, hdr);
396     if (wtr == NULL)
397     quiterr("cannot allocate writer structure");
398     /* write to BMP file */
399     while (wtr->yscan < yr) {
400 greg 2.11 uby8 *scn = pa + xr*((tmflags & TM_F_BW) ? 1 : 3)*
401 greg 2.7 (yr-1 - wtr->yscan);
402 greg 2.4 if (tmflags & TM_F_BW)
403     memcpy((void *)wtr->scanline, (void *)scn, xr);
404     else
405     for (i = xr; i--; ) {
406     wtr->scanline[3*i] = scn[3*i+BLU];
407     wtr->scanline[3*i+1] = scn[3*i+GRN];
408     wtr->scanline[3*i+2] = scn[3*i+RED];
409     }
410     if ((i = BMPwriteScanline(wtr)) != BIR_OK)
411     quiterr(BMPerrorMessage(i));
412     }
413     /* flush output */
414     if (fflush((FILE *)wtr->c_data) < 0)
415     quiterr("error writing BMP output");
416     /* clean up */
417 greg 2.8 if (fnin != NULL)
418     fclose(fp);
419 greg 2.4 free((void *)pa);
420     BMPcloseOutput(wtr);
421     }