2 * png2pnm.c --- conversion from PNG-file to PGM/PPM-file
3 * copyright (C) 1999,2017 by Willem van Schaik <willem at schaik.com>
5 * version 1.0 - 1999.10.15 - First version.
6 * 1.1 - 2017.04.22 - Add buffer-size check (Glenn Randers-Pehrson)
7 * 1.2 - 2017.08.24 - Fix potential overflow in buffer-size check
8 * (Glenn Randers-Pehrson)
9 * 1.3 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse)
11 * Permission to use, copy, modify, and distribute this software and
12 * its documentation for any purpose and without fee is hereby granted,
13 * provided that the above copyright notice appear in all copies and
14 * that both that copyright notice and this permission notice appear in
15 * supporting documentation. This software is provided "as is" without
16 * express or implied warranty.
28 #define BOOL unsigned char
34 #define FALSE (BOOL) 0
43 /* to make png2pnm verbose so we can find problems (needs to be before png.h) */
51 /* Define png_jmpbuf() in case we are using a pre-1.0.6 version of libpng */
53 # define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
56 #ifndef PNGMINUS_UNUSED
57 /* Unused formal parameter warnings are silenced using the following macro
58 * which is expected to have no bad effects on performance (optimizing
59 * compilers will probably remove it entirely).
61 # define PNGMINUS_UNUSED(param) (void)param
64 /* function prototypes */
66 int main (int argc
, char *argv
[]);
68 BOOL
png2pnm (FILE *png_file
, FILE *pnm_file
, FILE *alpha_file
, BOOL raw
,
75 int main(int argc
, char *argv
[])
84 for (argi
= 1; argi
< argc
; argi
++)
86 if (argv
[argi
][0] == '-')
88 switch (argv
[argi
][1])
99 if ((fp_al
= fopen (argv
[argi
], "wb")) == NULL
)
101 fprintf (stderr
, "PNM2PNG\n");
102 fprintf (stderr
, "Error: can not create alpha-channel file %s\n",
113 fprintf (stderr
, "PNG2PNM\n");
114 fprintf (stderr
, "Error: unknown option %s\n", argv
[argi
]);
120 else if (fp_rd
== stdin
)
122 if ((fp_rd
= fopen (argv
[argi
], "rb")) == NULL
)
124 fprintf (stderr
, "PNG2PNM\n");
125 fprintf (stderr
, "Error: file %s does not exist\n", argv
[argi
]);
129 else if (fp_wr
== stdout
)
131 if ((fp_wr
= fopen (argv
[argi
], "wb")) == NULL
)
133 fprintf (stderr
, "PNG2PNM\n");
134 fprintf (stderr
, "Error: can not create file %s\n", argv
[argi
]);
140 fprintf (stderr
, "PNG2PNM\n");
141 fprintf (stderr
, "Error: too many parameters\n");
148 /* set stdin/stdout if required to binary */
151 setmode (STDIN
, O_BINARY
);
153 if ((raw
) && (fp_wr
== stdout
))
155 setmode (STDOUT
, O_BINARY
);
159 /* call the conversion program itself */
160 if (png2pnm (fp_rd
, fp_wr
, fp_al
, raw
, alpha
) == FALSE
)
162 fprintf (stderr
, "PNG2PNM\n");
163 fprintf (stderr
, "Error: unsuccessful conversion of PNG-image\n");
167 /* close input file */
169 /* close output file */
171 /* close alpha file */
184 fprintf (stderr
, "PNG2PNM\n");
185 fprintf (stderr
, " by Willem van Schaik, 1999\n");
187 fprintf (stderr
, " for Turbo-C and Borland-C compilers\n");
189 fprintf (stderr
, " for Linux (and Unix) compilers\n");
191 fprintf (stderr
, "Usage: png2pnm [options] <file>.png [<file>.pnm]\n");
192 fprintf (stderr
, " or: ... | png2pnm [options]\n");
193 fprintf (stderr
, "Options:\n");
195 " -r[aw] write pnm-file in binary format (P4/P5/P6) (default)\n");
196 fprintf (stderr
, " -n[oraw] write pnm-file in ascii format (P1/P2/P3)\n");
198 " -a[lpha] <file>.pgm write PNG alpha channel as pgm-file\n");
199 fprintf (stderr
, " -h | -? print this help-information\n");
206 BOOL
png2pnm (FILE *png_file
, FILE *pnm_file
, FILE *alpha_file
,
207 volatile BOOL raw
, BOOL alpha
)
209 png_struct
*png_ptr
= NULL
;
210 png_info
*info_ptr
= NULL
;
212 png_byte
*png_pixels
= NULL
;
213 png_byte
**row_pointers
= NULL
;
214 png_byte
*pix_ptr
= NULL
;
215 png_uint_32 row_bytes
;
228 /* read and check signature in PNG file */
229 ret
= fread (buf
, 1, 8, png_file
);
233 ret
= png_sig_cmp (buf
, 0, 8);
237 /* create png and info structures */
239 png_ptr
= png_create_read_struct (png_get_libpng_ver(NULL
),
242 return FALSE
; /* out of memory */
244 info_ptr
= png_create_info_struct (png_ptr
);
247 png_destroy_read_struct (&png_ptr
, NULL
, NULL
);
248 return FALSE
; /* out of memory */
251 if (setjmp (png_jmpbuf(png_ptr
)))
253 png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
257 /* set up the input control for C streams */
258 png_init_io (png_ptr
, png_file
);
259 png_set_sig_bytes (png_ptr
, 8); /* we already read the 8 signature bytes */
261 /* read the file information */
262 png_read_info (png_ptr
, info_ptr
);
264 /* get size and bit-depth of the PNG-image */
265 png_get_IHDR (png_ptr
, info_ptr
,
266 &width
, &height
, &bit_depth
, &color_type
,
269 /* set-up the transformations */
271 /* transform paletted images into full-color rgb */
272 if (color_type
== PNG_COLOR_TYPE_PALETTE
)
273 png_set_expand (png_ptr
);
274 /* expand images to bit-depth 8 (only applicable for grayscale images) */
275 if (color_type
== PNG_COLOR_TYPE_GRAY
&& bit_depth
< 8)
276 png_set_expand (png_ptr
);
277 /* transform transparency maps into full alpha-channel */
278 if (png_get_valid (png_ptr
, info_ptr
, PNG_INFO_tRNS
))
279 png_set_expand (png_ptr
);
282 /* downgrade 16-bit images to 8-bit */
284 png_set_strip_16 (png_ptr
);
285 /* transform grayscale images into full-color */
286 if (color_type
== PNG_COLOR_TYPE_GRAY
||
287 color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
288 png_set_gray_to_rgb (png_ptr
);
289 /* only if file has a file gamma, we do a correction */
290 if (png_get_gAMA (png_ptr
, info_ptr
, &file_gamma
))
291 png_set_gamma (png_ptr
, (double) 2.2, file_gamma
);
294 /* all transformations have been registered; now update info_ptr data,
295 * get rowbytes and channels, and allocate image memory */
297 png_read_update_info (png_ptr
, info_ptr
);
299 /* get the new color-type and bit-depth (after expansion/stripping) */
300 png_get_IHDR (png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
,
303 /* check for 16-bit files */
308 pnm_file
->flags
&= ~((unsigned) _F_BIN
);
312 /* calculate new number of channels and store alpha-presence */
313 if (color_type
== PNG_COLOR_TYPE_GRAY
)
315 else if (color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
317 else if (color_type
== PNG_COLOR_TYPE_RGB
)
319 else if (color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
322 channels
= 0; /* should never happen */
323 alpha_present
= (channels
- 1) % 2;
325 /* check if alpha is expected to be present in file */
326 if (alpha
&& !alpha_present
)
328 fprintf (stderr
, "PNG2PNM\n");
329 fprintf (stderr
, "Error: PNG-file doesn't contain alpha channel\n");
333 /* row_bytes is the width x number of channels x (bit-depth / 8) */
334 row_bytes
= png_get_rowbytes (png_ptr
, info_ptr
);
336 if ((row_bytes
== 0 || (size_t)height
> ((size_t)(-1))/(size_t)row_bytes
))
339 png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
342 if ((png_pixels
= (png_byte
*)
343 malloc ((size_t)row_bytes
* (size_t)height
* sizeof (png_byte
))) == NULL
)
345 png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
349 if ((row_pointers
= (png_byte
**)
350 malloc ((size_t)height
* sizeof (png_bytep
))) == NULL
)
352 png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
358 /* set the individual row_pointers to point at the correct offsets */
359 for (i
= 0; i
< ((int) height
); i
++)
360 row_pointers
[i
] = png_pixels
+ i
* row_bytes
;
362 /* now we can go ahead and just read the whole image */
363 png_read_image (png_ptr
, row_pointers
);
365 /* read rest of file, and get additional chunks in info_ptr - REQUIRED */
366 png_read_end (png_ptr
, info_ptr
);
368 /* clean up after the read, and free any memory allocated - REQUIRED */
369 png_destroy_read_struct (&png_ptr
, &info_ptr
, (png_infopp
) NULL
);
371 /* write header of PNM file */
373 if ((color_type
== PNG_COLOR_TYPE_GRAY
) ||
374 (color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
))
376 fprintf (pnm_file
, "%s\n", (raw
) ? "P5" : "P2");
377 fprintf (pnm_file
, "%d %d\n", (int) width
, (int) height
);
378 fprintf (pnm_file
, "%ld\n", ((1L << (int) bit_depth
) - 1L));
380 else if ((color_type
== PNG_COLOR_TYPE_RGB
) ||
381 (color_type
== PNG_COLOR_TYPE_RGB_ALPHA
))
383 fprintf (pnm_file
, "%s\n", (raw
) ? "P6" : "P3");
384 fprintf (pnm_file
, "%d %d\n", (int) width
, (int) height
);
385 fprintf (pnm_file
, "%ld\n", ((1L << (int) bit_depth
) - 1L));
388 /* write header of PGM file with alpha channel */
391 ((color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
) ||
392 (color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)))
394 fprintf (alpha_file
, "%s\n", (raw
) ? "P5" : "P2");
395 fprintf (alpha_file
, "%d %d\n", (int) width
, (int) height
);
396 fprintf (alpha_file
, "%ld\n", ((1L << (int) bit_depth
) - 1L));
399 /* write data to PNM file */
400 pix_ptr
= png_pixels
;
402 for (row
= 0; row
< (int) height
; row
++)
404 for (col
= 0; col
< (int) width
; col
++)
406 for (i
= 0; i
< (channels
- alpha_present
); i
++)
409 fputc ((int) *pix_ptr
++ , pnm_file
);
411 if (bit_depth
== 16){
412 dep_16
= (long) *pix_ptr
++;
413 fprintf (pnm_file
, "%ld ", (dep_16
<< 8) + ((long) *pix_ptr
++));
416 fprintf (pnm_file
, "%ld ", (long) *pix_ptr
++);
422 pix_ptr
++; /* alpha */
426 else /* output alpha-channel as pgm file */
429 fputc ((int) *pix_ptr
++ , alpha_file
);
433 dep_16
= (long) *pix_ptr
++;
434 fprintf (alpha_file
, "%ld ", (dep_16
<< 8) + (long) *pix_ptr
++);
437 fprintf (alpha_file
, "%ld ", (long) *pix_ptr
++);
439 } /* if alpha_present */
443 fprintf (pnm_file
, "\n");
448 fprintf (pnm_file
, "\n");
451 if (row_pointers
!= (unsigned char**) NULL
)
453 if (png_pixels
!= (unsigned char*) NULL
)
456 PNGMINUS_UNUSED(raw
); /* to quiet a Coverity defect */
459 } /* end of source */