ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/ra_rgbe.c
Revision: 2.23
Committed: Tue Sep 10 20:24:42 2024 UTC (6 months, 2 weeks ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 2.22: +25 -6 lines
Log Message:
feat(ra_bmp,ra_rgbe,ximage): Added quick conversion of spectral inputs to RGB

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: ra_rgbe.c,v 2.22 2024/06/11 17:24:01 greg Exp $";
3 #endif
4 /*
5 * program to convert from RADIANCE RLE to flat format
6 */
7
8 #include <math.h>
9
10 #include "platform.h"
11 #include "rtio.h"
12 #include "paths.h"
13 #include "color.h"
14 #include "resolu.h"
15
16 #define dumpheader(fp) putbinary(headlines, 1, headlen, fp)
17
18 int bradj = 0; /* brightness adjustment */
19 int doflat = 1; /* produce flat file */
20 int force = 0; /* force file overwrite? */
21 int findframe = 0; /* find a specific frame? */
22 int frameno = 0; /* current frame number */
23 int fmterr = 0; /* got input format error */
24 char *headlines = NULL; /* current header info. */
25 int headlen1 = 0; /* length of initial frame header */
26 int headlen = 0; /* current header length */
27 char fmt[MAXFMTLEN]; /* input format */
28
29 char *progname;
30
31 static gethfunc addhline;
32 static int transfer(char *ospec);
33 static int loadheader(FILE *fp);
34
35
36 int
37 main(int argc, char *argv[])
38 {
39 char *ospec;
40 int i;
41
42 progname = argv[0];
43
44 for (i = 1; i < argc; i++)
45 if (argv[i][0] == '-')
46 switch (argv[i][1]) {
47 case 'r':
48 doflat = !doflat;
49 break;
50 case 'e':
51 if (argv[i+1][0] != '+' && argv[i+1][0] != '-')
52 goto userr;
53 bradj = atoi(argv[++i]);
54 break;
55 case 'n':
56 findframe = atoi(argv[++i]);
57 break;
58 case 'f':
59 force++;
60 break;
61 case '\0':
62 goto gotfile;
63 default:
64 goto userr;
65 }
66 else
67 break;
68 gotfile:
69 if (i < argc-2)
70 goto userr;
71 if (i <= argc-1 && strcmp(argv[i], "-") &&
72 freopen(argv[i], "r", stdin) == NULL) {
73 fprintf(stderr, "%s: can't open input \"%s\"\n",
74 progname, argv[i]);
75 exit(1);
76 }
77 SET_FILE_BINARY(stdin);
78 ospec = i==argc-2 ? argv[i+1] : (char *)NULL;
79 while (transfer(ospec))
80 ;
81 exit(0);
82 userr:
83 fprintf(stderr,
84 "Usage: %s [-r][-e +/-stops][-f][-n frame] [input [outspec]]\n",
85 progname);
86 exit(1);
87 }
88
89
90 static int
91 transfer( /* transfer a Radiance picture */
92 char *ospec
93 )
94 {
95 char oname[PATH_MAX];
96 FILE *fp;
97 int order;
98 int xmax, ymax;
99 COLR *scanin;
100 int y;
101 /* get header info. */
102 if (!(y = loadheader(stdin)))
103 return(0);
104 if (y < 0 || (order = fgetresolu(&xmax, &ymax, stdin)) < 0) {
105 fprintf(stderr, "%s: bad input format\n", progname);
106 exit(1);
107 }
108 /* did we pass the target frame? */
109 if (findframe && findframe < frameno)
110 return(0);
111 /* allocate scanline */
112 scanin = (COLR *)malloc(xmax*sizeof(COLR));
113 if (scanin == NULL) {
114 perror(progname);
115 exit(1);
116 }
117 /* skip frame? */
118 if (findframe > frameno) {
119 if (NCSAMP > 3) {
120 if (fseek(stdin, ymax*xmax*LSCOLR, SEEK_CUR) < 0) {
121 perror(progname);
122 exit(1);
123 }
124 } else
125 for (y = ymax; y--; )
126 if (freadcolrs(scanin, xmax, stdin) < 0) {
127 fprintf(stderr,
128 "%s: error reading input picture\n",
129 progname);
130 exit(1);
131 }
132 free(scanin);
133 return(1);
134 }
135 /* open output file/command */
136 if (ospec == NULL) {
137 strcpy(oname, "<stdout>");
138 fp = stdout;
139 } else {
140 sprintf(oname, ospec, frameno);
141 if (oname[0] == '!') {
142 if ((fp = popen(oname+1, "w")) == NULL) {
143 fprintf(stderr, "%s: cannot start \"%s\"\n",
144 progname, oname);
145 exit(1);
146 }
147 } else {
148 if (!force && access(oname, 0) >= 0) {
149 fprintf(stderr,
150 "%s: output file \"%s\" exists\n",
151 progname, oname);
152 exit(1);
153 }
154 if ((fp = fopen(oname, "w")) == NULL) {
155 fprintf(stderr, "%s: ", progname);
156 perror(oname);
157 exit(1);
158 }
159 }
160 }
161 SET_FILE_BINARY(fp);
162 newheader("RADIANCE", fp); /* put out header */
163 dumpheader(fp);
164 fputs(progname, fp);
165 if (bradj)
166 fprintf(fp, " -e %+d", bradj);
167 if (!doflat)
168 fputs(" -r", fp);
169 fputc('\n', fp);
170 if (bradj)
171 fputexpos(pow(2.0, (double)bradj), fp);
172 if (frameno)
173 fprintf(fp, "FRAME=%d\n", frameno);
174 if (fmt[0])
175 fputformat(fmt, fp);
176 fputc('\n', fp);
177 fputresolu(order, xmax, ymax, fp);
178 /* transfer picture */
179 for (y = ymax; y--; ) {
180 if (fread2colrs(scanin, xmax, stdin, NCSAMP, WLPART) < 0) {
181 fprintf(stderr, "%s: error reading input picture\n",
182 progname);
183 exit(1);
184 }
185 if (bradj)
186 shiftcolrs(scanin, xmax, bradj);
187 if (doflat ? (putbinary(scanin, sizeof(COLR), xmax, fp) != xmax) :
188 (fwritecolrs(scanin, xmax, fp) < 0))
189 goto writerr;
190 }
191 free(scanin); /* clean up */
192 if (fflush(fp) == EOF)
193 goto writerr;
194 if (oname[0] == '!')
195 pclose(fp);
196 else if (ospec != NULL)
197 fclose(fp);
198 return(1);
199 writerr:
200 fprintf(stderr, "%s: error writing output to \"%s\"\n",
201 progname, oname);
202 exit(1);
203 }
204
205
206 static int
207 addhline( /* add a line to our info. header */
208 char *s,
209 void *p
210 )
211 {
212 int n;
213
214 if (isheadid(s))
215 return(0);
216 if (!strncmp(s, "FRAME=", 6)) {
217 frameno = atoi(s+6);
218 return(0);
219 }
220 if (formatval(fmt, s)) {
221 if (!strcmp(fmt, SPECFMT))
222 strcpy(fmt, COLRFMT);
223 else
224 fmterr += !globmatch(PICFMT, fmt);
225 return(0);
226 }
227 if (isncomp(s)) {
228 NCSAMP = ncompval(s);
229 return(NCSAMP - 3);
230 }
231 if (iswlsplit(s)) {
232 wlsplitval(WLPART, s);
233 return(0);
234 }
235 n = strlen(s);
236 if (headlen)
237 headlines = (char *)realloc((void *)headlines, headlen+n+1);
238 else
239 headlines = (char *)malloc(n+1);
240 if (headlines == NULL) {
241 perror(progname);
242 exit(1);
243 }
244 strcpy(headlines+headlen, s);
245 headlen += n;
246 return(0);
247 }
248
249
250 static int
251 loadheader( /* load an info. header into memory */
252 FILE *fp
253 )
254 {
255 fmterr = 0; frameno = 0;
256 /* revert to initial header length */
257 if (!headlen1) headlen1 = headlen;
258 else headlen = headlen1;
259
260 if (getheader(fp, addhline, NULL) < 0)
261 return(0);
262 if (fmterr)
263 return(-1);
264 return(1);
265 }