2014-11-21 20:32:31 +00:00
|
|
|
/*
|
|
|
|
* wrppm.c
|
|
|
|
*
|
2015-01-24 20:09:39 +00:00
|
|
|
* This file was part of the Independent JPEG Group's software:
|
2014-11-21 20:32:31 +00:00
|
|
|
* Copyright (C) 1991-1996, Thomas G. Lane.
|
|
|
|
* Modified 2009 by Guido Vollbeding.
|
2018-02-02 20:26:52 +00:00
|
|
|
* libjpeg-turbo Modifications:
|
2019-12-25 16:30:29 +00:00
|
|
|
* Copyright (C) 2017, 2019, D. R. Commander.
|
2017-07-01 14:55:13 +00:00
|
|
|
* For conditions of distribution and use, see the accompanying README.ijg
|
|
|
|
* file.
|
2014-11-21 20:32:31 +00:00
|
|
|
*
|
|
|
|
* This file contains routines to write output images in PPM/PGM format.
|
|
|
|
* The extended 2-byte-per-sample raw PPM/PGM formats are supported.
|
|
|
|
* The PBMPLUS library is NOT required to compile this software
|
|
|
|
* (but it is highly useful as a set of PPM image manipulation programs).
|
|
|
|
*
|
|
|
|
* These routines may need modification for non-Unix environments or
|
|
|
|
* specialized applications. As they stand, they assume output to
|
|
|
|
* an ordinary stdio stream.
|
|
|
|
*/
|
|
|
|
|
2019-12-25 16:30:29 +00:00
|
|
|
#include "cmyk.h"
|
2015-01-24 20:09:39 +00:00
|
|
|
#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
|
2014-11-21 20:32:31 +00:00
|
|
|
|
|
|
|
#ifdef PPM_SUPPORTED
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For 12-bit JPEG data, we either downscale the values to 8 bits
|
|
|
|
* (to write standard byte-per-sample PPM/PGM files), or output
|
|
|
|
* nonstandard word-per-sample PPM/PGM files. Downscaling is done
|
|
|
|
* if PPM_NORAWWORD is defined (this can be done in the Makefile
|
|
|
|
* or in jconfig.h).
|
|
|
|
* (When the core library supports data precision reduction, a cleaner
|
|
|
|
* implementation will be to ask for that instead.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if BITS_IN_JSAMPLE == 8
|
2019-12-25 16:30:29 +00:00
|
|
|
#define PUTPPMSAMPLE(ptr, v) *ptr++ = (char)(v)
|
|
|
|
#define BYTESPERSAMPLE 1
|
|
|
|
#define PPM_MAXVAL 255
|
2014-11-21 20:32:31 +00:00
|
|
|
#else
|
|
|
|
#ifdef PPM_NORAWWORD
|
2019-12-25 16:30:29 +00:00
|
|
|
#define PUTPPMSAMPLE(ptr, v) *ptr++ = (char)((v) >> (BITS_IN_JSAMPLE - 8))
|
|
|
|
#define BYTESPERSAMPLE 1
|
|
|
|
#define PPM_MAXVAL 255
|
2014-11-21 20:32:31 +00:00
|
|
|
#else
|
|
|
|
/* The word-per-sample format always puts the MSB first. */
|
2019-12-25 16:30:29 +00:00
|
|
|
#define PUTPPMSAMPLE(ptr, v) { \
|
|
|
|
register int val_ = v; \
|
|
|
|
*ptr++ = (char)((val_ >> 8) & 0xFF); \
|
|
|
|
*ptr++ = (char)(val_ & 0xFF); \
|
|
|
|
}
|
|
|
|
#define BYTESPERSAMPLE 2
|
|
|
|
#define PPM_MAXVAL ((1 << BITS_IN_JSAMPLE) - 1)
|
2014-11-21 20:32:31 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When JSAMPLE is the same size as char, we can just fwrite() the
|
2015-01-24 20:09:39 +00:00
|
|
|
* decompressed data to the PPM or PGM file.
|
2014-11-21 20:32:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2018-02-02 20:26:52 +00:00
|
|
|
/* Private version of data destination object */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
struct djpeg_dest_struct pub; /* public fields */
|
|
|
|
|
|
|
|
/* Usually these two pointers point to the same place: */
|
|
|
|
char *iobuffer; /* fwrite's I/O buffer */
|
|
|
|
JSAMPROW pixrow; /* decompressor output buffer */
|
|
|
|
size_t buffer_width; /* width of I/O buffer */
|
|
|
|
JDIMENSION samples_per_row; /* JSAMPLEs per output row */
|
|
|
|
} ppm_dest_struct;
|
|
|
|
|
|
|
|
typedef ppm_dest_struct *ppm_dest_ptr;
|
|
|
|
|
|
|
|
|
2014-11-21 20:32:31 +00:00
|
|
|
/*
|
|
|
|
* Write some pixel data.
|
|
|
|
* In this module rows_supplied will always be 1.
|
|
|
|
*
|
|
|
|
* put_pixel_rows handles the "normal" 8-bit case where the decompressor
|
|
|
|
* output buffer is physically the same as the fwrite buffer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
2019-12-25 16:30:29 +00:00
|
|
|
put_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
|
|
|
|
JDIMENSION rows_supplied)
|
2014-11-21 20:32:31 +00:00
|
|
|
{
|
2019-12-25 16:30:29 +00:00
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
2014-11-21 20:32:31 +00:00
|
|
|
|
2019-12-25 16:30:29 +00:00
|
|
|
(void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
|
2014-11-21 20:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code is used when we have to copy the data and apply a pixel
|
|
|
|
* format translation. Typically this only happens in 12-bit mode.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
2019-12-25 16:30:29 +00:00
|
|
|
copy_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
|
|
|
|
JDIMENSION rows_supplied)
|
2014-11-21 20:32:31 +00:00
|
|
|
{
|
2019-12-25 16:30:29 +00:00
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
2017-07-01 14:55:13 +00:00
|
|
|
register char *bufferptr;
|
2014-11-21 20:32:31 +00:00
|
|
|
register JSAMPROW ptr;
|
2019-12-25 16:30:29 +00:00
|
|
|
#if BITS_IN_JSAMPLE != 8 || (!defined(HAVE_UNSIGNED_CHAR) && !defined(__CHAR_UNSIGNED__))
|
2014-11-21 20:32:31 +00:00
|
|
|
register JDIMENSION col;
|
2019-12-25 16:30:29 +00:00
|
|
|
#endif
|
2014-11-21 20:32:31 +00:00
|
|
|
|
|
|
|
ptr = dest->pub.buffer[0];
|
|
|
|
bufferptr = dest->iobuffer;
|
2019-12-25 16:30:29 +00:00
|
|
|
#if BITS_IN_JSAMPLE == 8 && (defined(HAVE_UNSIGNED_CHAR) || defined(__CHAR_UNSIGNED__))
|
|
|
|
MEMCOPY(bufferptr, ptr, dest->samples_per_row);
|
|
|
|
#else
|
2014-11-21 20:32:31 +00:00
|
|
|
for (col = dest->samples_per_row; col > 0; col--) {
|
|
|
|
PUTPPMSAMPLE(bufferptr, GETJSAMPLE(*ptr++));
|
|
|
|
}
|
2019-12-25 16:30:29 +00:00
|
|
|
#endif
|
|
|
|
(void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert extended RGB to RGB.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
|
|
put_rgb(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo, JDIMENSION rows_supplied)
|
|
|
|
{
|
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
|
|
|
register char *bufferptr;
|
|
|
|
register JSAMPROW ptr;
|
|
|
|
register JDIMENSION col;
|
|
|
|
register int rindex = rgb_red[cinfo->out_color_space];
|
|
|
|
register int gindex = rgb_green[cinfo->out_color_space];
|
|
|
|
register int bindex = rgb_blue[cinfo->out_color_space];
|
|
|
|
register int ps = rgb_pixelsize[cinfo->out_color_space];
|
|
|
|
|
|
|
|
ptr = dest->pub.buffer[0];
|
|
|
|
bufferptr = dest->iobuffer;
|
|
|
|
for (col = cinfo->output_width; col > 0; col--) {
|
|
|
|
PUTPPMSAMPLE(bufferptr, ptr[rindex]);
|
|
|
|
PUTPPMSAMPLE(bufferptr, ptr[gindex]);
|
|
|
|
PUTPPMSAMPLE(bufferptr, ptr[bindex]);
|
|
|
|
ptr += ps;
|
|
|
|
}
|
|
|
|
(void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert CMYK to RGB.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
|
|
put_cmyk(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
|
|
|
|
JDIMENSION rows_supplied)
|
|
|
|
{
|
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
|
|
|
register char *bufferptr;
|
|
|
|
register JSAMPROW ptr;
|
|
|
|
register JDIMENSION col;
|
|
|
|
|
|
|
|
ptr = dest->pub.buffer[0];
|
|
|
|
bufferptr = dest->iobuffer;
|
|
|
|
for (col = cinfo->output_width; col > 0; col--) {
|
|
|
|
JSAMPLE r, g, b, c = *ptr++, m = *ptr++, y = *ptr++, k = *ptr++;
|
|
|
|
cmyk_to_rgb(c, m, y, k, &r, &g, &b);
|
|
|
|
PUTPPMSAMPLE(bufferptr, r);
|
|
|
|
PUTPPMSAMPLE(bufferptr, g);
|
|
|
|
PUTPPMSAMPLE(bufferptr, b);
|
|
|
|
}
|
|
|
|
(void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
|
2014-11-21 20:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write some pixel data when color quantization is in effect.
|
|
|
|
* We have to demap the color index values to straight data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
2019-12-25 16:30:29 +00:00
|
|
|
put_demapped_rgb(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
|
|
|
|
JDIMENSION rows_supplied)
|
2014-11-21 20:32:31 +00:00
|
|
|
{
|
2019-12-25 16:30:29 +00:00
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
2017-07-01 14:55:13 +00:00
|
|
|
register char *bufferptr;
|
2014-11-21 20:32:31 +00:00
|
|
|
register int pixval;
|
|
|
|
register JSAMPROW ptr;
|
|
|
|
register JSAMPROW color_map0 = cinfo->colormap[0];
|
|
|
|
register JSAMPROW color_map1 = cinfo->colormap[1];
|
|
|
|
register JSAMPROW color_map2 = cinfo->colormap[2];
|
|
|
|
register JDIMENSION col;
|
|
|
|
|
|
|
|
ptr = dest->pub.buffer[0];
|
|
|
|
bufferptr = dest->iobuffer;
|
|
|
|
for (col = cinfo->output_width; col > 0; col--) {
|
|
|
|
pixval = GETJSAMPLE(*ptr++);
|
|
|
|
PUTPPMSAMPLE(bufferptr, GETJSAMPLE(color_map0[pixval]));
|
|
|
|
PUTPPMSAMPLE(bufferptr, GETJSAMPLE(color_map1[pixval]));
|
|
|
|
PUTPPMSAMPLE(bufferptr, GETJSAMPLE(color_map2[pixval]));
|
|
|
|
}
|
2019-12-25 16:30:29 +00:00
|
|
|
(void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
|
2014-11-21 20:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
2019-12-25 16:30:29 +00:00
|
|
|
put_demapped_gray(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
|
|
|
|
JDIMENSION rows_supplied)
|
2014-11-21 20:32:31 +00:00
|
|
|
{
|
2019-12-25 16:30:29 +00:00
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
2017-07-01 14:55:13 +00:00
|
|
|
register char *bufferptr;
|
2014-11-21 20:32:31 +00:00
|
|
|
register JSAMPROW ptr;
|
|
|
|
register JSAMPROW color_map = cinfo->colormap[0];
|
|
|
|
register JDIMENSION col;
|
|
|
|
|
|
|
|
ptr = dest->pub.buffer[0];
|
|
|
|
bufferptr = dest->iobuffer;
|
|
|
|
for (col = cinfo->output_width; col > 0; col--) {
|
|
|
|
PUTPPMSAMPLE(bufferptr, GETJSAMPLE(color_map[GETJSAMPLE(*ptr++)]));
|
|
|
|
}
|
2019-12-25 16:30:29 +00:00
|
|
|
(void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
|
2014-11-21 20:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Startup: write the file header.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
2019-12-25 16:30:29 +00:00
|
|
|
start_output_ppm(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
|
2014-11-21 20:32:31 +00:00
|
|
|
{
|
2019-12-25 16:30:29 +00:00
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
2014-11-21 20:32:31 +00:00
|
|
|
|
|
|
|
/* Emit file header */
|
|
|
|
switch (cinfo->out_color_space) {
|
|
|
|
case JCS_GRAYSCALE:
|
|
|
|
/* emit header for raw PGM format */
|
|
|
|
fprintf(dest->pub.output_file, "P5\n%ld %ld\n%d\n",
|
2019-12-25 16:30:29 +00:00
|
|
|
(long)cinfo->output_width, (long)cinfo->output_height, PPM_MAXVAL);
|
2014-11-21 20:32:31 +00:00
|
|
|
break;
|
|
|
|
case JCS_RGB:
|
2019-12-25 16:30:29 +00:00
|
|
|
case JCS_EXT_RGB:
|
|
|
|
case JCS_EXT_RGBX:
|
|
|
|
case JCS_EXT_BGR:
|
|
|
|
case JCS_EXT_BGRX:
|
|
|
|
case JCS_EXT_XBGR:
|
|
|
|
case JCS_EXT_XRGB:
|
|
|
|
case JCS_EXT_RGBA:
|
|
|
|
case JCS_EXT_BGRA:
|
|
|
|
case JCS_EXT_ABGR:
|
|
|
|
case JCS_EXT_ARGB:
|
|
|
|
case JCS_CMYK:
|
|
|
|
if (!IsExtRGB(cinfo->out_color_space) && cinfo->quantize_colors)
|
|
|
|
ERREXIT(cinfo, JERR_PPM_COLORSPACE);
|
2014-11-21 20:32:31 +00:00
|
|
|
/* emit header for raw PPM format */
|
|
|
|
fprintf(dest->pub.output_file, "P6\n%ld %ld\n%d\n",
|
2019-12-25 16:30:29 +00:00
|
|
|
(long)cinfo->output_width, (long)cinfo->output_height, PPM_MAXVAL);
|
2014-11-21 20:32:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERREXIT(cinfo, JERR_PPM_COLORSPACE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Finish up at the end of the file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
2019-12-25 16:30:29 +00:00
|
|
|
finish_output_ppm(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
|
2014-11-21 20:32:31 +00:00
|
|
|
{
|
|
|
|
/* Make sure we wrote the output file OK */
|
|
|
|
fflush(dinfo->output_file);
|
|
|
|
if (ferror(dinfo->output_file))
|
|
|
|
ERREXIT(cinfo, JERR_FILE_WRITE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-02 20:26:52 +00:00
|
|
|
/*
|
|
|
|
* Re-calculate buffer dimensions based on output dimensions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
METHODDEF(void)
|
2019-12-25 16:30:29 +00:00
|
|
|
calc_buffer_dimensions_ppm(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
|
2018-02-02 20:26:52 +00:00
|
|
|
{
|
2019-12-25 16:30:29 +00:00
|
|
|
ppm_dest_ptr dest = (ppm_dest_ptr)dinfo;
|
2018-02-02 20:26:52 +00:00
|
|
|
|
2019-12-25 16:30:29 +00:00
|
|
|
if (cinfo->out_color_space == JCS_GRAYSCALE)
|
|
|
|
dest->samples_per_row = cinfo->output_width * cinfo->out_color_components;
|
|
|
|
else
|
|
|
|
dest->samples_per_row = cinfo->output_width * 3;
|
2018-02-02 20:26:52 +00:00
|
|
|
dest->buffer_width = dest->samples_per_row * (BYTESPERSAMPLE * sizeof(char));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-21 20:32:31 +00:00
|
|
|
/*
|
|
|
|
* The module selection routine for PPM format output.
|
|
|
|
*/
|
|
|
|
|
|
|
|
GLOBAL(djpeg_dest_ptr)
|
2019-12-25 16:30:29 +00:00
|
|
|
jinit_write_ppm(j_decompress_ptr cinfo)
|
2014-11-21 20:32:31 +00:00
|
|
|
{
|
|
|
|
ppm_dest_ptr dest;
|
|
|
|
|
|
|
|
/* Create module interface object, fill in method pointers */
|
|
|
|
dest = (ppm_dest_ptr)
|
2019-12-25 16:30:29 +00:00
|
|
|
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
|
2015-01-24 20:09:39 +00:00
|
|
|
sizeof(ppm_dest_struct));
|
2014-11-21 20:32:31 +00:00
|
|
|
dest->pub.start_output = start_output_ppm;
|
|
|
|
dest->pub.finish_output = finish_output_ppm;
|
2018-02-02 20:26:52 +00:00
|
|
|
dest->pub.calc_buffer_dimensions = calc_buffer_dimensions_ppm;
|
2014-11-21 20:32:31 +00:00
|
|
|
|
|
|
|
/* Calculate output image dimensions so we can allocate space */
|
|
|
|
jpeg_calc_output_dimensions(cinfo);
|
|
|
|
|
2015-01-24 20:09:39 +00:00
|
|
|
/* Create physical I/O buffer */
|
2019-12-25 16:30:29 +00:00
|
|
|
dest->pub.calc_buffer_dimensions(cinfo, (djpeg_dest_ptr)dest);
|
|
|
|
dest->iobuffer = (char *)(*cinfo->mem->alloc_small)
|
|
|
|
((j_common_ptr)cinfo, JPOOL_IMAGE, dest->buffer_width);
|
2014-11-21 20:32:31 +00:00
|
|
|
|
|
|
|
if (cinfo->quantize_colors || BITS_IN_JSAMPLE != 8 ||
|
2019-12-25 16:30:29 +00:00
|
|
|
sizeof(JSAMPLE) != sizeof(char) ||
|
|
|
|
(cinfo->out_color_space != JCS_EXT_RGB
|
|
|
|
#if RGB_RED == 0 && RGB_GREEN == 1 && RGB_BLUE == 2 && RGB_PIXELSIZE == 3
|
|
|
|
&& cinfo->out_color_space != JCS_RGB
|
|
|
|
#endif
|
|
|
|
)) {
|
2014-11-21 20:32:31 +00:00
|
|
|
/* When quantizing, we need an output buffer for colormap indexes
|
|
|
|
* that's separate from the physical I/O buffer. We also need a
|
|
|
|
* separate buffer if pixel format translation must take place.
|
|
|
|
*/
|
|
|
|
dest->pub.buffer = (*cinfo->mem->alloc_sarray)
|
2019-12-25 16:30:29 +00:00
|
|
|
((j_common_ptr)cinfo, JPOOL_IMAGE,
|
|
|
|
cinfo->output_width * cinfo->output_components, (JDIMENSION)1);
|
2014-11-21 20:32:31 +00:00
|
|
|
dest->pub.buffer_height = 1;
|
2019-12-25 16:30:29 +00:00
|
|
|
if (!cinfo->quantize_colors) {
|
|
|
|
if (IsExtRGB(cinfo->out_color_space))
|
|
|
|
dest->pub.put_pixel_rows = put_rgb;
|
|
|
|
else if (cinfo->out_color_space == JCS_CMYK)
|
|
|
|
dest->pub.put_pixel_rows = put_cmyk;
|
|
|
|
else
|
|
|
|
dest->pub.put_pixel_rows = copy_pixel_rows;
|
|
|
|
} else if (cinfo->out_color_space == JCS_GRAYSCALE)
|
2014-11-21 20:32:31 +00:00
|
|
|
dest->pub.put_pixel_rows = put_demapped_gray;
|
|
|
|
else
|
|
|
|
dest->pub.put_pixel_rows = put_demapped_rgb;
|
|
|
|
} else {
|
|
|
|
/* We will fwrite() directly from decompressor output buffer. */
|
|
|
|
/* Synthesize a JSAMPARRAY pointer structure */
|
2019-12-25 16:30:29 +00:00
|
|
|
dest->pixrow = (JSAMPROW)dest->iobuffer;
|
|
|
|
dest->pub.buffer = &dest->pixrow;
|
2014-11-21 20:32:31 +00:00
|
|
|
dest->pub.buffer_height = 1;
|
|
|
|
dest->pub.put_pixel_rows = put_pixel_rows;
|
|
|
|
}
|
|
|
|
|
2019-12-25 16:30:29 +00:00
|
|
|
return (djpeg_dest_ptr)dest;
|
2014-11-21 20:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PPM_SUPPORTED */
|