pngminus: Improve portability and fix style

This commit is contained in:
Cosmin Truta 2018-08-05 21:44:11 -04:00
parent 1f0221fad7
commit dcefbc7dcd

View File

@ -1,12 +1,13 @@
/* /*
* png2pnm.c --- conversion from PNG-file to PGM/PPM-file * png2pnm.c --- conversion from PNG-file to PGM/PPM-file
* copyright (C) 1999,2017 by Willem van Schaik <willem at schaik.com> * copyright (C) 1999,2017,2018 by Willem van Schaik <willem at schaik.com>
* *
* version 1.0 - 1999.10.15 - First version. * version 1.0 - 1999.10.15 - First version.
* 1.1 - 2017.04.22 - Add buffer-size check (Glenn Randers-Pehrson) * 1.1 - 2017.04.22 - Add buffer-size check (Glenn Randers-Pehrson)
* 1.2 - 2017.08.24 - Fix potential overflow in buffer-size check * 1.2 - 2017.08.24 - Fix potential overflow in buffer-size check
* (Glenn Randers-Pehrson) * (Glenn Randers-Pehrson)
* 1.3 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse) * 1.3 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse)
* 1.4 - 2018.08.05 - Improve portability and fix style (Cosmin Truta)
* *
* Permission to use, copy, modify, and distribute this software and * Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted, * its documentation for any purpose and without fee is hereby granted,
@ -18,11 +19,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#ifdef __TURBOC__
#include <mem.h>
#include <fcntl.h> #include <fcntl.h>
#endif
#include <zlib.h>
#ifndef BOOL #ifndef BOOL
#define BOOL unsigned char #define BOOL unsigned char
@ -34,45 +31,25 @@
#define FALSE (BOOL) 0 #define FALSE (BOOL) 0
#endif #endif
#ifdef __TURBOC__ /* make png2pnm verbose so we can find problems (needs to be before png.h) */
#define STDIN 0
#define STDOUT 1
#define STDERR 2
#endif
/* to make png2pnm verbose so we can find problems (needs to be before png.h) */
#ifndef PNG_DEBUG #ifndef PNG_DEBUG
#define PNG_DEBUG 0 #define PNG_DEBUG 0
#endif #endif
#include "png.h" #include "png.h"
/* Define png_jmpbuf() in case we are using a pre-1.0.6 version of libpng */
#ifndef png_jmpbuf
# define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
#endif
#ifndef PNGMINUS_UNUSED
/* Unused formal parameter warnings are silenced using the following macro
* which is expected to have no bad effects on performance (optimizing
* compilers will probably remove it entirely).
*/
# define PNGMINUS_UNUSED(param) (void)param
#endif
/* function prototypes */ /* function prototypes */
int main (int argc, char *argv[]); int main (int argc, char *argv[]);
void usage (); void usage ();
BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
BOOL alpha); BOOL raw, BOOL alpha);
/* /*
* main * main
*/ */
int main(int argc, char *argv[]) int main (int argc, char *argv[])
{ {
FILE *fp_rd = stdin; FILE *fp_rd = stdin;
FILE *fp_wr = stdout; FILE *fp_wr = stdout;
@ -99,21 +76,21 @@ int main(int argc, char *argv[])
if ((fp_al = fopen (argv[argi], "wb")) == NULL) if ((fp_al = fopen (argv[argi], "wb")) == NULL)
{ {
fprintf (stderr, "PNM2PNG\n"); fprintf (stderr, "PNM2PNG\n");
fprintf (stderr, "Error: can not create alpha-channel file %s\n", fprintf (stderr, "Error: cannot create alpha-channel file %s\n",
argv[argi]); argv[argi]);
exit (1); exit (1);
} }
break; break;
case 'h': case 'h':
case '?': case '?':
usage(); usage ();
exit(0); exit (0);
break; break;
default: default:
fprintf (stderr, "PNG2PNM\n"); fprintf (stderr, "PNG2PNM\n");
fprintf (stderr, "Error: unknown option %s\n", argv[argi]); fprintf (stderr, "Error: unknown option %s\n", argv[argi]);
usage(); usage ();
exit(1); exit (1);
break; break;
} /* end switch */ } /* end switch */
} }
@ -121,9 +98,9 @@ int main(int argc, char *argv[])
{ {
if ((fp_rd = fopen (argv[argi], "rb")) == NULL) if ((fp_rd = fopen (argv[argi], "rb")) == NULL)
{ {
fprintf (stderr, "PNG2PNM\n"); fprintf (stderr, "PNG2PNM\n");
fprintf (stderr, "Error: file %s does not exist\n", argv[argi]); fprintf (stderr, "Error: file %s does not exist\n", argv[argi]);
exit (1); exit (1);
} }
} }
else if (fp_wr == stdout) else if (fp_wr == stdout)
@ -131,7 +108,7 @@ int main(int argc, char *argv[])
if ((fp_wr = fopen (argv[argi], "wb")) == NULL) if ((fp_wr = fopen (argv[argi], "wb")) == NULL)
{ {
fprintf (stderr, "PNG2PNM\n"); fprintf (stderr, "PNG2PNM\n");
fprintf (stderr, "Error: can not create file %s\n", argv[argi]); fprintf (stderr, "Error: cannot create file %s\n", argv[argi]);
exit (1); exit (1);
} }
} }
@ -139,21 +116,17 @@ int main(int argc, char *argv[])
{ {
fprintf (stderr, "PNG2PNM\n"); fprintf (stderr, "PNG2PNM\n");
fprintf (stderr, "Error: too many parameters\n"); fprintf (stderr, "Error: too many parameters\n");
usage(); usage ();
exit(1); exit (1);
} }
} /* end for */ } /* end for */
#ifdef __TURBOC__ #if defined(O_BINARY) && (O_BINARY != 0)
/* set stdin/stdout if required to binary */ /* set stdin/stdout if required to binary */
if (fp_rd == stdin) if (fp_rd == stdin)
{ setmode (fileno (stdin), O_BINARY);
setmode (STDIN, O_BINARY);
}
if ((raw) && (fp_wr == stdout)) if ((raw) && (fp_wr == stdout))
{ setmode (fileno (stdout), O_BINARY);
setmode (STDOUT, O_BINARY);
}
#endif #endif
/* call the conversion program itself */ /* call the conversion program itself */
@ -161,7 +134,7 @@ int main(int argc, char *argv[])
{ {
fprintf (stderr, "PNG2PNM\n"); fprintf (stderr, "PNG2PNM\n");
fprintf (stderr, "Error: unsuccessful conversion of PNG-image\n"); fprintf (stderr, "Error: unsuccessful conversion of PNG-image\n");
exit(1); exit (1);
} }
/* close input file */ /* close input file */
@ -179,23 +152,18 @@ int main(int argc, char *argv[])
* usage * usage
*/ */
void usage() void usage ()
{ {
fprintf (stderr, "PNG2PNM\n"); fprintf (stderr, "PNG2PNM\n");
fprintf (stderr, " by Willem van Schaik, 1999\n"); fprintf (stderr, " by Willem van Schaik, 1999\n");
#ifdef __TURBOC__
fprintf (stderr, " for Turbo-C and Borland-C compilers\n");
#else
fprintf (stderr, " for Linux (and Unix) compilers\n");
#endif
fprintf (stderr, "Usage: png2pnm [options] <file>.png [<file>.pnm]\n"); fprintf (stderr, "Usage: png2pnm [options] <file>.png [<file>.pnm]\n");
fprintf (stderr, " or: ... | png2pnm [options]\n"); fprintf (stderr, " or: ... | png2pnm [options]\n");
fprintf (stderr, "Options:\n"); fprintf (stderr, "Options:\n");
fprintf (stderr, fprintf (stderr,
" -r[aw] write pnm-file in binary format (P4/P5/P6) (default)\n"); " -r[aw] write pnm-file in binary format (P4/P5/P6) (default)\n");
fprintf (stderr, " -n[oraw] write pnm-file in ascii format (P1/P2/P3)\n"); fprintf (stderr, " -n[oraw] write pnm-file in ascii format (P1/P2/P3)\n");
fprintf (stderr, fprintf (stderr,
" -a[lpha] <file>.pgm write PNG alpha channel as pgm-file\n"); " -a[lpha] <file>.pgm write PNG alpha channel as pgm-file\n");
fprintf (stderr, " -h | -? print this help-information\n"); fprintf (stderr, " -h | -? print this help-information\n");
} }
@ -204,10 +172,10 @@ void usage()
*/ */
BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
volatile BOOL raw, BOOL alpha) BOOL raw, BOOL alpha)
{ {
png_struct *png_ptr = NULL; png_struct *png_ptr = NULL;
png_info *info_ptr = NULL; png_info *info_ptr = NULL;
png_byte buf[8]; png_byte buf[8];
png_byte *png_pixels = NULL; png_byte *png_pixels = NULL;
png_byte **row_pointers = NULL; png_byte **row_pointers = NULL;
@ -231,24 +199,24 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
return FALSE; return FALSE;
ret = png_sig_cmp (buf, 0, 8); ret = png_sig_cmp (buf, 0, 8);
if (ret) if (ret != 0)
return FALSE; return FALSE;
/* create png and info structures */ /* create png and info structures */
png_ptr = png_create_read_struct (png_get_libpng_ver(NULL), png_ptr = png_create_read_struct (png_get_libpng_ver(NULL),
NULL, NULL, NULL); NULL, NULL, NULL);
if (!png_ptr) if (!png_ptr)
return FALSE; /* out of memory */ return FALSE; /* out of memory */
info_ptr = png_create_info_struct (png_ptr); info_ptr = png_create_info_struct (png_ptr);
if (!info_ptr) if (!info_ptr)
{ {
png_destroy_read_struct (&png_ptr, NULL, NULL); png_destroy_read_struct (&png_ptr, NULL, NULL);
return FALSE; /* out of memory */ return FALSE; /* out of memory */
} }
if (setjmp (png_jmpbuf(png_ptr))) if (setjmp (png_jmpbuf (png_ptr)))
{ {
png_destroy_read_struct (&png_ptr, &info_ptr, NULL); png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
return FALSE; return FALSE;
@ -256,15 +224,14 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
/* set up the input control for C streams */ /* set up the input control for C streams */
png_init_io (png_ptr, png_file); png_init_io (png_ptr, png_file);
png_set_sig_bytes (png_ptr, 8); /* we already read the 8 signature bytes */ png_set_sig_bytes (png_ptr, 8); /* we already read the 8 signature bytes */
/* read the file information */ /* read the file information */
png_read_info (png_ptr, info_ptr); png_read_info (png_ptr, info_ptr);
/* get size and bit-depth of the PNG-image */ /* get size and bit-depth of the PNG-image */
png_get_IHDR (png_ptr, info_ptr, png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
&width, &height, &bit_depth, &color_type, NULL, NULL, NULL);
NULL, NULL, NULL);
/* set-up the transformations */ /* set-up the transformations */
@ -284,7 +251,7 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
png_set_strip_16 (png_ptr); png_set_strip_16 (png_ptr);
/* transform grayscale images into full-color */ /* transform grayscale images into full-color */
if (color_type == PNG_COLOR_TYPE_GRAY || if (color_type == PNG_COLOR_TYPE_GRAY ||
color_type == PNG_COLOR_TYPE_GRAY_ALPHA) color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb (png_ptr); png_set_gray_to_rgb (png_ptr);
/* only if file has a file gamma, we do a correction */ /* only if file has a file gamma, we do a correction */
if (png_get_gAMA (png_ptr, info_ptr, &file_gamma)) if (png_get_gAMA (png_ptr, info_ptr, &file_gamma))
@ -298,14 +265,14 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
/* get the new color-type and bit-depth (after expansion/stripping) */ /* get the new color-type and bit-depth (after expansion/stripping) */
png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
NULL, NULL, NULL); NULL, NULL, NULL);
/* check for 16-bit files */ /* check for 16-bit files */
if (bit_depth == 16) if (bit_depth == 16)
{ {
raw = FALSE; raw = FALSE;
#ifdef __TURBOC__ #if defined(O_BINARY) && (O_BINARY != 0)
pnm_file->flags &= ~((unsigned) _F_BIN); setmode (fileno (pnm_file), O_BINARY);
#endif #endif
} }
@ -333,25 +300,25 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
/* row_bytes is the width x number of channels x (bit-depth / 8) */ /* row_bytes is the width x number of channels x (bit-depth / 8) */
row_bytes = png_get_rowbytes (png_ptr, info_ptr); row_bytes = png_get_rowbytes (png_ptr, info_ptr);
if ((row_bytes == 0 || (size_t)height > ((size_t)(-1))/(size_t)row_bytes)) if ((row_bytes == 0) ||
((size_t) height > (size_t) (-1) / (size_t) row_bytes))
{ {
/* too big */ /* too big */
png_destroy_read_struct (&png_ptr, &info_ptr, NULL); png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
return FALSE; return FALSE;
} }
if ((png_pixels = (png_byte *) if ((png_pixels = (png_byte *)
malloc ((size_t)row_bytes * (size_t)height * sizeof (png_byte))) == NULL) malloc ((size_t) row_bytes * (size_t) height)) == NULL)
{ {
png_destroy_read_struct (&png_ptr, &info_ptr, NULL); png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
return FALSE; return FALSE;
} }
if ((row_pointers = (png_byte **) if ((row_pointers = (png_byte **)
malloc ((size_t)height * sizeof (png_bytep))) == NULL) malloc ((size_t) height * sizeof (png_byte *))) == NULL)
{ {
png_destroy_read_struct (&png_ptr, &info_ptr, NULL); png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
free (png_pixels); free (png_pixels);
png_pixels = NULL;
return FALSE; return FALSE;
} }
@ -366,7 +333,7 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
png_read_end (png_ptr, info_ptr); png_read_end (png_ptr, info_ptr);
/* clean up after the read, and free any memory allocated - REQUIRED */ /* clean up after the read, and free any memory allocated - REQUIRED */
png_destroy_read_struct (&png_ptr, &info_ptr, (png_infopp) NULL); png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
/* write header of PNM file */ /* write header of PNM file */
@ -406,14 +373,21 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
for (i = 0; i < (channels - alpha_present); i++) for (i = 0; i < (channels - alpha_present); i++)
{ {
if (raw) if (raw)
fputc ((int) *pix_ptr++ , pnm_file); {
fputc ((int) *pix_ptr++, pnm_file);
}
else else
if (bit_depth == 16){ {
if (bit_depth == 16)
{
dep_16 = (long) *pix_ptr++; dep_16 = (long) *pix_ptr++;
fprintf (pnm_file, "%ld ", (dep_16 << 8) + ((long) *pix_ptr++)); fprintf (pnm_file, "%ld ", (dep_16 << 8) + ((long) *pix_ptr++));
} }
else else
{
fprintf (pnm_file, "%ld ", (long) *pix_ptr++); fprintf (pnm_file, "%ld ", (long) *pix_ptr++);
}
}
} }
if (alpha_present) if (alpha_present)
{ {
@ -426,17 +400,23 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
else /* output alpha-channel as pgm file */ else /* output alpha-channel as pgm file */
{ {
if (raw) if (raw)
fputc ((int) *pix_ptr++ , alpha_file); {
fputc ((int) *pix_ptr++, alpha_file);
}
else else
{
if (bit_depth == 16) if (bit_depth == 16)
{ {
dep_16 = (long) *pix_ptr++; dep_16 = (long) *pix_ptr++;
fprintf (alpha_file, "%ld ", (dep_16 << 8) + (long) *pix_ptr++); fprintf (alpha_file, "%ld ", (dep_16 << 8) + (long) *pix_ptr++);
} }
else else
{
fprintf (alpha_file, "%ld ", (long) *pix_ptr++); fprintf (alpha_file, "%ld ", (long) *pix_ptr++);
}
}
} }
} /* if alpha_present */ } /* end if alpha_present */
if (!raw) if (!raw)
if (col % 4 == 3) if (col % 4 == 3)
@ -448,13 +428,11 @@ BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file,
fprintf (pnm_file, "\n"); fprintf (pnm_file, "\n");
} /* end for row */ } /* end for row */
if (row_pointers != (unsigned char**) NULL) if (row_pointers != NULL)
free (row_pointers); free (row_pointers);
if (png_pixels != (unsigned char*) NULL) if (png_pixels != NULL)
free (png_pixels); free (png_pixels);
PNGMINUS_UNUSED(raw); /* to quiet a Coverity defect */
return TRUE; return TRUE;
} /* end of source */ } /* end of source */