📄 jwrppm.c
字号:
/*
* jwrppm.c
*
* Copyright (C) 1991, 1992, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README file.
*
* This file contains routines to write output images in PPM/PGM format.
*
* These routines may need modification for non-Unix environments or
* specialized applications. As they stand, they assume output to
* an ordinary stdio stream.
*
* These routines are invoked via the methods put_pixel_rows, put_color_map,
* and output_init/term.
*/
#include "jinclude.h"
#ifdef PPM_SUPPORTED
/*
* Haven't yet got around to making this work with text-format output,
* hence cannot handle pixels wider than 8 bits.
*/
#ifndef EIGHT_BIT_SAMPLES
Sorry, this code only copes with 8-bit JSAMPLEs. /* deliberate syntax err */
#endif
/*
* On most systems, writing individual bytes with putc() is drastically less
* efficient than buffering a row at a time for fwrite(). But we must
* allocate the row buffer in near data space on PCs, because we are assuming
* small-data memory model, wherein fwrite() can't reach far memory. If you
* need to process very wide images on a PC, you may have to use the putc()
* approach. Also, there are still a few systems around wherein fwrite() is
* actually implemented as a putc() loop, in which case this buffer is a waste
* of space. So the putc() method can be used by defining USE_PUTC_OUTPUT.
*/
#ifndef USE_PUTC_OUTPUT
static char * row_buffer; /* holds 1 pixel row's worth of output */
#endif
char *itoa(int i)
{
char *a,*b;
int num_dig=0;
int copy_of_i=i;
int j,k;
a = (char *)malloc(10);
b = a;
if (b == NULL)
{
send_command(ERR3);
receive_command();
exit(0);
}
if (i <= 0)
{
*b = '0';
*(b+1) = '\0';
return(b);
}
while (copy_of_i > 0)
{
copy_of_i /= 10;
++num_dig;
}
for (j=num_dig-1;j>=0;--j)
{
copy_of_i = i;
for (k=0;k<j;++k)
copy_of_i /= 10;
*b++ = copy_of_i%10 + '0';
}
*b = '\0';
return(a);
}
/*
* Write the file header.
*/
METHODDEF void
output_init (decompress_info_ptr cinfo)
{
if (cinfo->out_color_space == CS_GRAYSCALE) {
/* emit header for raw PGM format */
/*
fprintf(cinfo->output_file, "P5\n%ld %ld\n%d\n",
cinfo->image_width, cinfo->image_height, 255);
*/
JFWRITE("P5 ",3);
JFWRITE(itoa(cinfo->image_width),strlen(itoa(cinfo->image_width)));
JFWRITE(" ",1);
JFWRITE(itoa(cinfo->image_height),strlen(itoa(cinfo->image_height)));
JFWRITE(" 255\n",5);
#ifndef USE_PUTC_OUTPUT
/* allocate space for row buffer: 1 byte/pixel */
row_buffer = (char *) (*cinfo->emethods->alloc_small)
((size_t) (SIZEOF(char) * cinfo->image_width));
#endif
} else if (cinfo->out_color_space == CS_RGB) {
/* emit header for raw PPM format */
/* fprintf(cinfo->output_file, "P6\n%ld %ld\n%d\n",
cinfo->image_width, cinfo->image_height, 255);
*/
JFWRITE("P6 ",3);
JFWRITE(itoa(cinfo->image_width),strlen(itoa(cinfo->image_width)));
JFWRITE(" ",1);
JFWRITE(itoa(cinfo->image_height),strlen(itoa(cinfo->image_height)));
JFWRITE(" 255\n",5);
#ifndef USE_PUTC_OUTPUT
/* allocate space for row buffer: 3 bytes/pixel */
row_buffer = (char *) (*cinfo->emethods->alloc_small)
((size_t) (3 * SIZEOF(char) * cinfo->image_width));
#endif
} else {
/*
ERREXIT(cinfo->emethods, "PPM output must be grayscale or RGB");
*/
send_command(ERR8);
receive_command();
exit(0);
}
}
/*
* Write some pixel data.
*/
#ifdef USE_PUTC_OUTPUT
METHODDEF void
put_pixel_rows (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
register FILE * outfile = cinfo->output_file;
register JSAMPROW ptr0, ptr1, ptr2;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr0 = pixel_data[0][row];
ptr1 = pixel_data[1][row];
ptr2 = pixel_data[2][row];
for (col = width; col > 0; col--) {
send_data(GETJSAMPLE(*ptr0), outfile);
send_command(RCV);
receive_command();
/* putc(GETJSAMPLE(*ptr0), outfile); */
ptr0++;
send_data(GETJSAMPLE(*ptr1), outfile);
send_command(RCV);
receive_command();
/* putc(GETJSAMPLE(*ptr1), outfile); */
ptr1++;
send_data(GETJSAMPLE(*ptr2), outfile);
send_command(RCV);
receive_command();
/* putc(GETJSAMPLE(*ptr2), outfile); */
ptr2++;
}
}
}
METHODDEF void
put_gray_rows (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
register FILE * outfile = cinfo->output_file;
register JSAMPROW ptr0;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr0 = pixel_data[0][row];
for (col = width; col > 0; col--) {
send_data(GETJSAMPLE(*ptr0), outfile);
send_command(RCV);
receive_command();
/* putc(GETJSAMPLE(*ptr0), outfile); */
ptr0++;
}
}
}
#else /* use row buffering */
METHODDEF void
put_pixel_rows (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
FILE * outfile = cinfo->output_file;
register JSAMPROW ptr0, ptr1, ptr2;
register char * row_bufferptr;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr0 = pixel_data[0][row];
ptr1 = pixel_data[1][row];
ptr2 = pixel_data[2][row];
row_bufferptr = row_buffer;
for (col = width; col > 0; col--) {
*row_bufferptr++ = (char) GETJSAMPLE(*ptr0++);
*row_bufferptr++ = (char) GETJSAMPLE(*ptr1++);
*row_bufferptr++ = (char) GETJSAMPLE(*ptr2++);
}
(void) JFWRITE(row_buffer, 3*width);
}
}
METHODDEF void
put_gray_rows (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
FILE * outfile = cinfo->output_file;
register JSAMPROW ptr0;
register char * row_bufferptr;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr0 = pixel_data[0][row];
row_bufferptr = row_buffer;
for (col = width; col > 0; col--) {
*row_bufferptr++ = (char) GETJSAMPLE(*ptr0++);
}
(void) JFWRITE(row_buffer, width);
}
}
#endif /* USE_PUTC_OUTPUT */
/*
* Write some pixel data when color quantization is in effect.
*/
#ifdef USE_PUTC_OUTPUT
METHODDEF void
put_demapped_rgb (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
register FILE * outfile = cinfo->output_file;
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 int pixval;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr = pixel_data[0][row];
for (col = width; col > 0; col--) {
pixval = GETJSAMPLE(*ptr++);
send_data(GETJSAMPLE(color_map0[pixval]), outfile);
send_command(RCV);
receive_command();
send_data(GETJSAMPLE(color_map1[pixval]), outfile);
send_command(RCV);
receive_command();
send_data(GETJSAMPLE(color_map2[pixval]), outfile);
send_command(RCV);
receive_command();
/* putc(GETJSAMPLE(color_map0[pixval]), outfile);
putc(GETJSAMPLE(color_map1[pixval]), outfile);
putc(GETJSAMPLE(color_map2[pixval]), outfile);
*/
}
}
}
METHODDEF void
put_demapped_gray (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
register FILE * outfile = cinfo->output_file;
register JSAMPROW ptr;
register JSAMPROW color_map0 = cinfo->colormap[0];
register int pixval;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr = pixel_data[0][row];
for (col = width; col > 0; col--) {
pixval = GETJSAMPLE(*ptr++);
send_data(GETJSAMPLE(color_map0[pixval]), outfile);
send_command(RCV);
receive_command();
/* putc(GETJSAMPLE(color_map0[pixval]), outfile); */
}
}
}
#else /* use row buffering */
METHODDEF void
put_demapped_rgb (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
FILE * outfile = cinfo->output_file;
register JSAMPROW ptr;
register char * row_bufferptr;
register JSAMPROW color_map0 = cinfo->colormap[0];
register JSAMPROW color_map1 = cinfo->colormap[1];
register JSAMPROW color_map2 = cinfo->colormap[2];
register int pixval;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr = pixel_data[0][row];
row_bufferptr = row_buffer;
for (col = width; col > 0; col--) {
pixval = GETJSAMPLE(*ptr++);
*row_bufferptr++ = (char) GETJSAMPLE(color_map0[pixval]);
*row_bufferptr++ = (char) GETJSAMPLE(color_map1[pixval]);
*row_bufferptr++ = (char) GETJSAMPLE(color_map2[pixval]);
}
(void) JFWRITE(row_buffer, 3*width);
}
}
METHODDEF void
put_demapped_gray (decompress_info_ptr cinfo, int num_rows,
JSAMPIMAGE pixel_data)
{
FILE * outfile = cinfo->output_file;
register JSAMPROW ptr;
register char * row_bufferptr;
register JSAMPROW color_map0 = cinfo->colormap[0];
register int pixval;
register long col;
long width = cinfo->image_width;
int row;
for (row = 0; row < num_rows; row++) {
ptr = pixel_data[0][row];
row_bufferptr = row_buffer;
for (col = width; col > 0; col--) {
pixval = GETJSAMPLE(*ptr++);
*row_bufferptr++ = (char) GETJSAMPLE(color_map0[pixval]);
}
(void) JFWRITE(row_buffer, width);
}
}
#endif /* USE_PUTC_OUTPUT */
/*
* Write the color map.
* For PPM output, we just remember to demap the output data!
*/
METHODDEF void
put_color_map (decompress_info_ptr cinfo, int num_colors, JSAMPARRAY colormap)
{
if (cinfo->out_color_space == CS_RGB)
cinfo->methods->put_pixel_rows = put_demapped_rgb;
else
cinfo->methods->put_pixel_rows = put_demapped_gray;
}
/*
* Finish up at the end of the file.
*/
METHODDEF void
output_term (decompress_info_ptr cinfo)
{
/* No work except to make sure we wrote the output file OK; */
/* we let free_all release any workspace */
fflush(cinfo->output_file);
if (ferror(cinfo->output_file))
{
send_command(ERR1);
receive_command();
exit(0);
}
/* ERREXIT(cinfo->emethods, "Output file write error"); */
}
/*
* The method selection routine for PPM format output.
* This should be called from d_ui_method_selection if PPM output is wanted.
*/
GLOBAL void
jselwppm (decompress_info_ptr cinfo)
{
cinfo->methods->output_init = output_init;
cinfo->methods->put_color_map = put_color_map;
if (cinfo->out_color_space == CS_RGB)
cinfo->methods->put_pixel_rows = put_pixel_rows;
else
cinfo->methods->put_pixel_rows = put_gray_rows;
cinfo->methods->output_term = output_term;
}
#endif /* PPM_SUPPORTED */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -