4 * Copyright (C) 1991-1997, Thomas G. Lane.
5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file contains routines to read input images in PPM/PGM format.
9 * The extended 2-byte-per-sample raw PPM/PGM formats are supported.
10 * The PBMPLUS library is NOT required to compile this software
11 * (but it is highly useful as a set of PPM image manipulation programs).
13 * These routines may need modification for non-Unix environments or
14 * specialized applications. As they stand, they assume input from
15 * an ordinary stdio stream. They further assume that reading begins
16 * at the start of the file; start_input may need work if the
17 * user interface has already read some data (e.g., to determine that
18 * the file is indeed PPM format).
21 #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
26 /* Portions of this code are based on the PBMPLUS library, which is:
28 ** Copyright (C) 1988 by Jef Poskanzer.
30 ** Permission to use, copy, modify, and distribute this software and its
31 ** documentation for any purpose and without fee is hereby granted, provided
32 ** that the above copyright notice appear in all copies and that both that
33 ** copyright notice and this permission notice appear in supporting
34 ** documentation. This software is provided "as is" without express or
39 /* Macros to deal with unsigned chars as efficiently as compiler allows */
41 #ifdef HAVE_UNSIGNED_CHAR
42 typedef unsigned char U_CHAR
;
43 #define UCH(x) ((int) (x))
44 #else /* !HAVE_UNSIGNED_CHAR */
45 #ifdef CHAR_IS_UNSIGNED
47 #define UCH(x) ((int) (x))
50 #define UCH(x) ((int) (x) & 0xFF)
52 #endif /* HAVE_UNSIGNED_CHAR */
55 #define ReadOK(file,buffer,len) (JFREAD(file,buffer,len) == ((size_t) (len)))
59 * On most systems, reading individual bytes with getc() is drastically less
60 * efficient than buffering a row at a time with fread(). On PCs, we must
61 * allocate the buffer in near data space, because we are assuming small-data
62 * memory model, wherein fread() can't reach far memory. If you need to
63 * process very wide images on a PC, you might have to compile in large-memory
64 * model, or else replace fread() with a getc() loop --- which will be much
69 /* Private version of data source object */
72 struct cjpeg_source_struct pub
; /* public fields */
74 U_CHAR
*iobuffer
; /* non-FAR pointer to I/O buffer */
75 JSAMPROW pixrow
; /* FAR pointer to same */
76 size_t buffer_width
; /* width of I/O buffer */
77 JSAMPLE
*rescale
; /* => maxval-remapping array, or NULL */
80 typedef ppm_source_struct
* ppm_source_ptr
;
84 pbm_getc (FILE * infile
)
85 /* Read next char, skipping over any comments */
86 /* A comment/newline sequence is returned as a newline */
94 } while (ch
!= '\n' && ch
!= EOF
);
101 read_pbm_integer (j_compress_ptr cinfo
, FILE * infile
)
102 /* Read an unsigned decimal integer from the PPM file */
103 /* Swallows one trailing character after the integer */
104 /* Note that on a 16-bit-int machine, only values up to 64k can be read. */
105 /* This should not be a problem in practice. */
108 register unsigned int val
;
110 /* Skip any leading whitespace */
112 ch
= pbm_getc(infile
);
114 ERREXIT(cinfo
, JERR_INPUT_EOF
);
115 } while (ch
== ' ' || ch
== '\t' || ch
== '\n' || ch
== '\r');
117 if (ch
< '0' || ch
> '9')
118 ERREXIT(cinfo
, JERR_PPM_NONNUMERIC
);
121 while ((ch
= pbm_getc(infile
)) >= '0' && ch
<= '9') {
130 * Read one row of pixels.
132 * We provide several different versions depending on input file format.
133 * In all cases, input is scaled to the size of JSAMPLE.
135 * A really fast path is provided for reading byte/sample raw files with
136 * maxval = MAXJSAMPLE, which is the normal case for 8-bit data.
140 METHODDEF(JDIMENSION
)
141 get_text_gray_row (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
142 /* This version is for reading text-format PGM files with any maxval */
144 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
145 FILE * infile
= source
->pub
.input_file
;
146 register JSAMPROW ptr
;
147 register JSAMPLE
*rescale
= source
->rescale
;
150 ptr
= source
->pub
.buffer
[0];
151 for (col
= cinfo
->image_width
; col
> 0; col
--) {
152 *ptr
++ = rescale
[read_pbm_integer(cinfo
, infile
)];
158 METHODDEF(JDIMENSION
)
159 get_text_rgb_row (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
160 /* This version is for reading text-format PPM files with any maxval */
162 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
163 FILE * infile
= source
->pub
.input_file
;
164 register JSAMPROW ptr
;
165 register JSAMPLE
*rescale
= source
->rescale
;
168 ptr
= source
->pub
.buffer
[0];
169 for (col
= cinfo
->image_width
; col
> 0; col
--) {
170 *ptr
++ = rescale
[read_pbm_integer(cinfo
, infile
)];
171 *ptr
++ = rescale
[read_pbm_integer(cinfo
, infile
)];
172 *ptr
++ = rescale
[read_pbm_integer(cinfo
, infile
)];
178 METHODDEF(JDIMENSION
)
179 get_scaled_gray_row (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
180 /* This version is for reading raw-byte-format PGM files with any maxval */
182 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
183 register JSAMPROW ptr
;
184 register U_CHAR
* bufferptr
;
185 register JSAMPLE
*rescale
= source
->rescale
;
188 if (! ReadOK(source
->pub
.input_file
, source
->iobuffer
, source
->buffer_width
))
189 ERREXIT(cinfo
, JERR_INPUT_EOF
);
190 ptr
= source
->pub
.buffer
[0];
191 bufferptr
= source
->iobuffer
;
192 for (col
= cinfo
->image_width
; col
> 0; col
--) {
193 *ptr
++ = rescale
[UCH(*bufferptr
++)];
199 METHODDEF(JDIMENSION
)
200 get_scaled_rgb_row (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
201 /* This version is for reading raw-byte-format PPM files with any maxval */
203 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
204 register JSAMPROW ptr
;
205 register U_CHAR
* bufferptr
;
206 register JSAMPLE
*rescale
= source
->rescale
;
209 if (! ReadOK(source
->pub
.input_file
, source
->iobuffer
, source
->buffer_width
))
210 ERREXIT(cinfo
, JERR_INPUT_EOF
);
211 ptr
= source
->pub
.buffer
[0];
212 bufferptr
= source
->iobuffer
;
213 for (col
= cinfo
->image_width
; col
> 0; col
--) {
214 *ptr
++ = rescale
[UCH(*bufferptr
++)];
215 *ptr
++ = rescale
[UCH(*bufferptr
++)];
216 *ptr
++ = rescale
[UCH(*bufferptr
++)];
222 METHODDEF(JDIMENSION
)
223 get_raw_row (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
224 /* This version is for reading raw-byte-format files with maxval = MAXJSAMPLE.
225 * In this case we just read right into the JSAMPLE buffer!
226 * Note that same code works for PPM and PGM files.
229 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
231 if (! ReadOK(source
->pub
.input_file
, source
->iobuffer
, source
->buffer_width
))
232 ERREXIT(cinfo
, JERR_INPUT_EOF
);
237 METHODDEF(JDIMENSION
)
238 get_word_gray_row (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
239 /* This version is for reading raw-word-format PGM files with any maxval */
241 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
242 register JSAMPROW ptr
;
243 register U_CHAR
* bufferptr
;
244 register JSAMPLE
*rescale
= source
->rescale
;
247 if (! ReadOK(source
->pub
.input_file
, source
->iobuffer
, source
->buffer_width
))
248 ERREXIT(cinfo
, JERR_INPUT_EOF
);
249 ptr
= source
->pub
.buffer
[0];
250 bufferptr
= source
->iobuffer
;
251 for (col
= cinfo
->image_width
; col
> 0; col
--) {
253 temp
= UCH(*bufferptr
++);
254 temp
|= UCH(*bufferptr
++) << 8;
255 *ptr
++ = rescale
[temp
];
261 METHODDEF(JDIMENSION
)
262 get_word_rgb_row (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
263 /* This version is for reading raw-word-format PPM files with any maxval */
265 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
266 register JSAMPROW ptr
;
267 register U_CHAR
* bufferptr
;
268 register JSAMPLE
*rescale
= source
->rescale
;
271 if (! ReadOK(source
->pub
.input_file
, source
->iobuffer
, source
->buffer_width
))
272 ERREXIT(cinfo
, JERR_INPUT_EOF
);
273 ptr
= source
->pub
.buffer
[0];
274 bufferptr
= source
->iobuffer
;
275 for (col
= cinfo
->image_width
; col
> 0; col
--) {
277 temp
= UCH(*bufferptr
++);
278 temp
|= UCH(*bufferptr
++) << 8;
279 *ptr
++ = rescale
[temp
];
280 temp
= UCH(*bufferptr
++);
281 temp
|= UCH(*bufferptr
++) << 8;
282 *ptr
++ = rescale
[temp
];
283 temp
= UCH(*bufferptr
++);
284 temp
|= UCH(*bufferptr
++) << 8;
285 *ptr
++ = rescale
[temp
];
292 * Read the file header; return image size and component count.
296 start_input_ppm (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
298 ppm_source_ptr source
= (ppm_source_ptr
) sinfo
;
300 unsigned int w
, h
, maxval
;
301 boolean need_iobuffer
, use_raw_buffer
, need_rescale
;
303 if (getc(source
->pub
.input_file
) != 'P')
304 ERREXIT(cinfo
, JERR_PPM_NOT
);
306 c
= getc(source
->pub
.input_file
); /* subformat discriminator character */
308 /* detect unsupported variants (ie, PBM) before trying to read header */
310 case '2': /* it's a text-format PGM file */
311 case '3': /* it's a text-format PPM file */
312 case '5': /* it's a raw-format PGM file */
313 case '6': /* it's a raw-format PPM file */
316 ERREXIT(cinfo
, JERR_PPM_NOT
);
320 /* fetch the remaining header info */
321 w
= read_pbm_integer(cinfo
, source
->pub
.input_file
);
322 h
= read_pbm_integer(cinfo
, source
->pub
.input_file
);
323 maxval
= read_pbm_integer(cinfo
, source
->pub
.input_file
);
325 if (w
<= 0 || h
<= 0 || maxval
<= 0) /* error check */
326 ERREXIT(cinfo
, JERR_PPM_NOT
);
328 cinfo
->data_precision
= BITS_IN_JSAMPLE
; /* we always rescale data to this */
329 cinfo
->image_width
= (JDIMENSION
) w
;
330 cinfo
->image_height
= (JDIMENSION
) h
;
332 /* initialize flags to most common settings */
333 need_iobuffer
= TRUE
; /* do we need an I/O buffer? */
334 use_raw_buffer
= FALSE
; /* do we map input buffer onto I/O buffer? */
335 need_rescale
= TRUE
; /* do we need a rescale array? */
338 case '2': /* it's a text-format PGM file */
339 cinfo
->input_components
= 1;
340 cinfo
->in_color_space
= JCS_GRAYSCALE
;
341 TRACEMS2(cinfo
, 1, JTRC_PGM_TEXT
, w
, h
);
342 source
->pub
.get_pixel_rows
= get_text_gray_row
;
343 need_iobuffer
= FALSE
;
346 case '3': /* it's a text-format PPM file */
347 cinfo
->input_components
= 3;
348 cinfo
->in_color_space
= JCS_RGB
;
349 TRACEMS2(cinfo
, 1, JTRC_PPM_TEXT
, w
, h
);
350 source
->pub
.get_pixel_rows
= get_text_rgb_row
;
351 need_iobuffer
= FALSE
;
354 case '5': /* it's a raw-format PGM file */
355 cinfo
->input_components
= 1;
356 cinfo
->in_color_space
= JCS_GRAYSCALE
;
357 TRACEMS2(cinfo
, 1, JTRC_PGM
, w
, h
);
359 source
->pub
.get_pixel_rows
= get_word_gray_row
;
360 } else if (maxval
== MAXJSAMPLE
&& SIZEOF(JSAMPLE
) == SIZEOF(U_CHAR
)) {
361 source
->pub
.get_pixel_rows
= get_raw_row
;
362 use_raw_buffer
= TRUE
;
363 need_rescale
= FALSE
;
365 source
->pub
.get_pixel_rows
= get_scaled_gray_row
;
369 case '6': /* it's a raw-format PPM file */
370 cinfo
->input_components
= 3;
371 cinfo
->in_color_space
= JCS_RGB
;
372 TRACEMS2(cinfo
, 1, JTRC_PPM
, w
, h
);
374 source
->pub
.get_pixel_rows
= get_word_rgb_row
;
375 } else if (maxval
== MAXJSAMPLE
&& SIZEOF(JSAMPLE
) == SIZEOF(U_CHAR
)) {
376 source
->pub
.get_pixel_rows
= get_raw_row
;
377 use_raw_buffer
= TRUE
;
378 need_rescale
= FALSE
;
380 source
->pub
.get_pixel_rows
= get_scaled_rgb_row
;
385 /* Allocate space for I/O buffer: 1 or 3 bytes or words/pixel. */
387 source
->buffer_width
= (size_t) w
* cinfo
->input_components
*
388 ((maxval
<=255) ? SIZEOF(U_CHAR
) : (2*SIZEOF(U_CHAR
)));
389 source
->iobuffer
= (U_CHAR
*)
390 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_IMAGE
,
391 source
->buffer_width
);
394 /* Create compressor input buffer. */
395 if (use_raw_buffer
) {
396 /* For unscaled raw-input case, we can just map it onto the I/O buffer. */
397 /* Synthesize a JSAMPARRAY pointer structure */
398 /* Cast here implies near->far pointer conversion on PCs */
399 source
->pixrow
= (JSAMPROW
) source
->iobuffer
;
400 source
->pub
.buffer
= & source
->pixrow
;
401 source
->pub
.buffer_height
= 1;
403 /* Need to translate anyway, so make a separate sample buffer. */
404 source
->pub
.buffer
= (*cinfo
->mem
->alloc_sarray
)
405 ((j_common_ptr
) cinfo
, JPOOL_IMAGE
,
406 (JDIMENSION
) w
* cinfo
->input_components
, (JDIMENSION
) 1);
407 source
->pub
.buffer_height
= 1;
410 /* Compute the rescaling array if required. */
412 INT32 val
, half_maxval
;
414 /* On 16-bit-int machines we have to be careful of maxval = 65535 */
415 source
->rescale
= (JSAMPLE
*)
416 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_IMAGE
,
417 (size_t) (((long) maxval
+ 1L) * SIZEOF(JSAMPLE
)));
418 half_maxval
= maxval
/ 2;
419 for (val
= 0; val
<= (INT32
) maxval
; val
++) {
420 /* The multiplication here must be done in 32 bits to avoid overflow */
421 source
->rescale
[val
] = (JSAMPLE
) ((val
*MAXJSAMPLE
+ half_maxval
)/maxval
);
428 * Finish up at the end of the file.
432 finish_input_ppm (j_compress_ptr cinfo
, cjpeg_source_ptr sinfo
)
439 * The module selection routine for PPM format input.
442 GLOBAL(cjpeg_source_ptr
)
443 jinit_read_ppm (j_compress_ptr cinfo
)
445 ppm_source_ptr source
;
447 /* Create module interface object */
448 source
= (ppm_source_ptr
)
449 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_IMAGE
,
450 SIZEOF(ppm_source_struct
));
451 /* Fill in method ptrs, except get_pixel_rows which start_input sets */
452 source
->pub
.start_input
= start_input_ppm
;
453 source
->pub
.finish_input
= finish_input_ppm
;
455 return (cjpeg_source_ptr
) source
;
458 #endif /* PPM_SUPPORTED */