blob: a1fd92a1c90fb0b9c2b375edf9b5cff90a61d526 [file] [log] [blame]
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002/* pngtest.c - a simple test program to test libpng
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrsonda7b6922014-06-06 11:42:50 -05004 * Last changed in libpng 1.6.11 [(PENDING RELEASE)]
Glenn Randers-Pehrson95a19732013-12-31 21:10:13 -06005 * Copyright (c) 1998-2014 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06008 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05009 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050010 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050011 * and license in png.h
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050012 *
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060013 * This program reads in a PNG image, writes it out again, and then
14 * compares the two files. If the files are identical, this shows that
15 * the basic chunk handling, filtering, and (de)compression code is working
16 * properly. It does not currently test all of the transforms, although
17 * it probably should.
18 *
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -050019 * The program will report "FAIL" in certain legitimate cases:
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060020 * 1) when the compression level or filter selection method is changed.
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060021 * 2) when the maximum IDAT size (PNG_ZBUF_SIZE in pngconf.h) is not 8192.
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060022 * 3) unknown unsafe-to-copy ancillary chunks or unknown critical chunks
23 * exist in the input file.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060024 * 4) others not listed here...
25 * In these cases, it is best to check with another tool such as "pngcheck"
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060026 * to see what the differences between the two files are.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060027 *
28 * If a filename is given on the command-line, then this file is used
29 * for the input, rather than the default "pngtest.png". This allows
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -050030 * testing a wide variety of files easily. You can also test a number
31 * of files at once by typing "pngtest -m file1.png file2.png ..."
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060032 */
Guy Schalnat0d580581995-07-20 02:43:20 -050033
Glenn Randers-Pehrsonb3b71682011-05-03 22:30:19 -050034#define _POSIX_SOURCE 1
35
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060036#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39
40/* Defined so I can write to a file on gui/windowing platforms */
41/* #define STDERR stderr */
42#define STDERR stdout /* For DOS */
43
Glenn Randers-Pehrsonf3af7062012-02-02 23:11:45 -060044#include "png.h"
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060045
John Bowlere4413a72013-04-17 21:27:47 -050046/* Known chunks that exist in pngtest.png must be supported or pngtest will fail
47 * simply as a result of re-ordering them. This may be fixed in 1.7
John Bowlera8472472013-12-29 10:50:51 -060048 *
49 * pngtest allocates a single row buffer for each row and overwrites it,
50 * therefore if the write side doesn't support the writing of interlaced images
51 * nothing can be done for an interlaced image (and the code below will fail
52 * horribly trying to write extra data after writing garbage).
John Bowlere4413a72013-04-17 21:27:47 -050053 */
54#if defined PNG_READ_SUPPORTED && /* else nothing can be done */\
55 defined PNG_READ_bKGD_SUPPORTED &&\
56 defined PNG_READ_cHRM_SUPPORTED &&\
57 defined PNG_READ_gAMA_SUPPORTED &&\
58 defined PNG_READ_oFFs_SUPPORTED &&\
59 defined PNG_READ_pCAL_SUPPORTED &&\
60 defined PNG_READ_pHYs_SUPPORTED &&\
61 defined PNG_READ_sBIT_SUPPORTED &&\
62 defined PNG_READ_sCAL_SUPPORTED &&\
63 defined PNG_READ_sRGB_SUPPORTED &&\
64 defined PNG_READ_tEXt_SUPPORTED &&\
65 defined PNG_READ_tIME_SUPPORTED &&\
John Bowlera8472472013-12-29 10:50:51 -060066 defined PNG_READ_zTXt_SUPPORTED &&\
67 defined PNG_WRITE_INTERLACING_SUPPORTED
John Bowlere4413a72013-04-17 21:27:47 -050068
John Bowlera8472472013-12-29 10:50:51 -060069#ifdef PNG_ZLIB_HEADER
70# include PNG_ZLIB_HEADER /* defined by pnglibconf.h from 1.7 */
71#else
72# include "zlib.h"
73#endif
74
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -050075/* Copied from pngpriv.h but only used in error messages below. */
76#ifndef PNG_ZBUF_SIZE
77# define PNG_ZBUF_SIZE 8192
78#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060079#define FCLOSE(file) fclose(file)
Andreas Dilger47a0c421997-05-16 02:46:07 -050080
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050081#ifndef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -050082typedef FILE * png_FILE_p;
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -060083#endif
84
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060085/* Makes pngtest verbose so we can find problems. */
Andreas Dilger47a0c421997-05-16 02:46:07 -050086#ifndef PNG_DEBUG
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -050087# define PNG_DEBUG 0
88#endif
89
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -060090#if PNG_DEBUG > 1
91# define pngtest_debug(m) ((void)fprintf(stderr, m "\n"))
92# define pngtest_debug1(m,p1) ((void)fprintf(stderr, m "\n", p1))
93# define pngtest_debug2(m,p1,p2) ((void)fprintf(stderr, m "\n", p1, p2))
94#else
95# define pngtest_debug(m) ((void)0)
96# define pngtest_debug1(m,p1) ((void)0)
97# define pngtest_debug2(m,p1,p2) ((void)0)
98#endif
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060099
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500100#if !PNG_DEBUG
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500101# define SINGLE_ROWBUF_ALLOC /* Makes buffer overruns easier to nail */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -0600102#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500103
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -0500104/* Turn on CPU timing
105#define PNGTEST_TIMING
106*/
107
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500108#ifndef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600109#undef PNGTEST_TIMING
110#endif
111
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -0500112#ifdef PNGTEST_TIMING
113static float t_start, t_stop, t_decode, t_encode, t_misc;
114#include <time.h>
115#endif
116
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500117#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrsona5fa5c92008-09-06 07:06:22 -0500118#define PNG_tIME_STRING_LENGTH 29
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500119static int tIME_chunk_present = 0;
Glenn Randers-Pehrsona5fa5c92008-09-06 07:06:22 -0500120static char tIME_string[PNG_tIME_STRING_LENGTH] = "tIME chunk is not present";
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500121#endif
122
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500123static int verbose = 0;
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -0500124static int strict = 0;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600125static int relaxed = 0;
126static int unsupported_chunks = 0; /* chunk unsupported by libpng in input */
127static int error_count = 0; /* count calls to png_error */
128static int warning_count = 0; /* count calls to png_warning */
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500129
Glenn Randers-Pehrsona7dbcba2007-05-15 16:16:34 -0500130/* Define png_jmpbuf() in case we are using a pre-1.0.6 version of libpng */
131#ifndef png_jmpbuf
132# define png_jmpbuf(png_ptr) png_ptr->jmpbuf
133#endif
134
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600135/* Defines for unknown chunk handling if required. */
136#ifndef PNG_HANDLE_CHUNK_ALWAYS
137# define PNG_HANDLE_CHUNK_ALWAYS 3
138#endif
139#ifndef PNG_HANDLE_CHUNK_IF_SAFE
140# define PNG_HANDLE_CHUNK_IF_SAFE 2
141#endif
142
143/* Utility to save typing/errors, the argument must be a name */
144#define MEMZERO(var) ((void)memset(&var, 0, sizeof var))
145
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500146/* Example of using row callbacks to make a simple progress meter */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500147static int status_pass = 1;
148static int status_dots_requested = 0;
149static int status_dots = 1;
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -0600150
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600151static void PNGCBAPI
Glenn Randers-Pehrson7cd899c1998-03-07 16:17:42 -0600152read_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600153{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500154 if (png_ptr == NULL || row_number > PNG_UINT_31_MAX)
155 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500156
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500157 if (status_pass != pass)
158 {
159 fprintf(stdout, "\n Pass %d: ", pass);
160 status_pass = pass;
161 status_dots = 31;
162 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500163
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500164 status_dots--;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500165
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500166 if (status_dots == 0)
167 {
168 fprintf(stdout, "\n ");
169 status_dots=30;
170 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500171
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500172 fprintf(stdout, "r");
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600173}
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -0600174
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600175#ifdef PNG_WRITE_SUPPORTED
176static void PNGCBAPI
Glenn Randers-Pehrson7cd899c1998-03-07 16:17:42 -0600177write_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600178{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500179 if (png_ptr == NULL || row_number > PNG_UINT_31_MAX || pass > 7)
180 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500181
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500182 fprintf(stdout, "w");
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600183}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600184#endif
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600185
186
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500187#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500188/* Example of using user transform callback (we don't transform anything,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500189 * but merely examine the row filters. We set this to 256 rather than
190 * 5 in case illegal filter values are present.)
191 */
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500192static png_uint_32 filters_used[256];
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600193static void PNGCBAPI
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500194count_filters(png_structp png_ptr, png_row_infop row_info, png_bytep data)
195{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500196 if (png_ptr != NULL && row_info != NULL)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500197 ++filters_used[*(data - 1)];
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500198}
199#endif
200
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500201#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500202/* Example of using user transform callback (we don't transform anything,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500203 * but merely count the zero samples)
204 */
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600205
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500206static png_uint_32 zero_samples;
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -0600207
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600208static void PNGCBAPI
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500209count_zero_samples(png_structp png_ptr, png_row_infop row_info, png_bytep data)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600210{
211 png_bytep dp = data;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500212 if (png_ptr == NULL)
213 return;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600214
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500215 /* Contents of row_info:
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600216 * png_uint_32 width width of row
217 * png_uint_32 rowbytes number of bytes in row
218 * png_byte color_type color type of pixels
219 * png_byte bit_depth bit depth of samples
220 * png_byte channels number of channels (1-4)
221 * png_byte pixel_depth bits per pixel (depth*channels)
222 */
223
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500224 /* Counts the number of zero samples (or zero pixels if color_type is 3 */
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600225
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500226 if (row_info->color_type == 0 || row_info->color_type == 3)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600227 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500228 int pos = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500229 png_uint_32 n, nstop;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500230
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500231 for (n = 0, nstop=row_info->width; n<nstop; n++)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600232 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500233 if (row_info->bit_depth == 1)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500234 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500235 if (((*dp << pos++ ) & 0x80) == 0)
236 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500237
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500238 if (pos == 8)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600239 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500240 pos = 0;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600241 dp++;
242 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500243 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500244
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500245 if (row_info->bit_depth == 2)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500246 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500247 if (((*dp << (pos+=2)) & 0xc0) == 0)
248 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500249
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500250 if (pos == 8)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600251 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500252 pos = 0;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600253 dp++;
254 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500255 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500256
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500257 if (row_info->bit_depth == 4)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500258 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500259 if (((*dp << (pos+=4)) & 0xf0) == 0)
260 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500261
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500262 if (pos == 8)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600263 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500264 pos = 0;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600265 dp++;
266 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500267 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500268
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500269 if (row_info->bit_depth == 8)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500270 if (*dp++ == 0)
271 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500272
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500273 if (row_info->bit_depth == 16)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600274 {
Glenn Randers-Pehrsond8eb62f2009-05-30 20:19:20 -0500275 if ((*dp | *(dp+1)) == 0)
276 zero_samples++;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600277 dp+=2;
278 }
279 }
280 }
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500281 else /* Other color types */
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600282 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500283 png_uint_32 n, nstop;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600284 int channel;
285 int color_channels = row_info->channels;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500286 if (row_info->color_type > 3)color_channels--;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600287
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500288 for (n = 0, nstop=row_info->width; n<nstop; n++)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600289 {
290 for (channel = 0; channel < color_channels; channel++)
291 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500292 if (row_info->bit_depth == 8)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500293 if (*dp++ == 0)
294 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500295
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500296 if (row_info->bit_depth == 16)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600297 {
Glenn Randers-Pehrsond8eb62f2009-05-30 20:19:20 -0500298 if ((*dp | *(dp+1)) == 0)
299 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500300
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600301 dp+=2;
302 }
303 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500304 if (row_info->color_type > 3)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600305 {
306 dp++;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500307 if (row_info->bit_depth == 16)
308 dp++;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600309 }
310 }
311 }
312}
Glenn Randers-Pehrson38d73af1998-03-07 21:30:44 -0600313#endif /* PNG_WRITE_USER_TRANSFORM_SUPPORTED */
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600314
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500315#ifndef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600316/* START of code to validate stdio-free compilation */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500317/* These copies of the default read/write functions come from pngrio.c and
318 * pngwio.c. They allow "don't include stdio" testing of the library.
319 * This is the function that does the actual reading of data. If you are
320 * not reading from a standard C stream, you should create a replacement
321 * read_data function and use it at run time with png_set_read_fn(), rather
322 * than changing the library.
323 */
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600324
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600325#ifdef PNG_IO_STATE_SUPPORTED
326void
327pngtest_check_io_state(png_structp png_ptr, png_size_t data_length,
328 png_uint_32 io_op);
329void
330pngtest_check_io_state(png_structp png_ptr, png_size_t data_length,
331 png_uint_32 io_op)
332{
333 png_uint_32 io_state = png_get_io_state(png_ptr);
334 int err = 0;
335
336 /* Check if the current operation (reading / writing) is as expected. */
337 if ((io_state & PNG_IO_MASK_OP) != io_op)
338 png_error(png_ptr, "Incorrect operation in I/O state");
339
340 /* Check if the buffer size specific to the current location
341 * (file signature / header / data / crc) is as expected.
342 */
343 switch (io_state & PNG_IO_MASK_LOC)
344 {
345 case PNG_IO_SIGNATURE:
346 if (data_length > 8)
347 err = 1;
348 break;
349 case PNG_IO_CHUNK_HDR:
350 if (data_length != 8)
351 err = 1;
352 break;
353 case PNG_IO_CHUNK_DATA:
354 break; /* no restrictions here */
355 case PNG_IO_CHUNK_CRC:
356 if (data_length != 4)
357 err = 1;
358 break;
359 default:
360 err = 1; /* uninitialized */
361 }
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600362 if (err != 0)
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600363 png_error(png_ptr, "Bad I/O state or buffer size");
364}
365#endif
366
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600367static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500368pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600369{
Glenn Randers-Pehrsona0e0c6c2010-01-01 18:31:26 -0600370 png_size_t check = 0;
371 png_voidp io_ptr;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600372
373 /* fread() returns 0 on error, so it is OK to store this in a png_size_t
374 * instead of an int, which is what fread() actually returns.
375 */
Glenn Randers-Pehrsona0e0c6c2010-01-01 18:31:26 -0600376 io_ptr = png_get_io_ptr(png_ptr);
377 if (io_ptr != NULL)
378 {
379 check = fread(data, 1, length, (png_FILE_p)io_ptr);
380 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500381
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600382 if (check != length)
383 {
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600384 png_error(png_ptr, "Read Error");
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600385 }
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600386
387#ifdef PNG_IO_STATE_SUPPORTED
388 pngtest_check_io_state(png_ptr, length, PNG_IO_READING);
389#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600390}
Guy Schalnat0d580581995-07-20 02:43:20 -0500391
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500392#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600393static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500394pngtest_flush(png_structp png_ptr)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600395{
Glenn Randers-Pehrson8fb550c2009-03-21 08:15:32 -0500396 /* Do nothing; fflush() is said to be just a waste of energy. */
Glenn Randers-Pehrsond546f432010-12-04 20:41:36 -0600397 PNG_UNUSED(png_ptr) /* Stifle compiler warning */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600398}
399#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500400
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500401/* This is the function that does the actual writing of data. If you are
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500402 * not writing to a standard C stream, you should create a replacement
403 * write_data function and use it at run time with png_set_write_fn(), rather
404 * than changing the library.
405 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600406static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500407pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600408{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500409 png_size_t check;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600410
Glenn Randers-Pehrson526a6ad2010-03-11 05:42:20 -0600411 check = fwrite(data, 1, length, (png_FILE_p)png_get_io_ptr(png_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500412
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600413 if (check != length)
414 {
415 png_error(png_ptr, "Write Error");
416 }
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600417
418#ifdef PNG_IO_STATE_SUPPORTED
419 pngtest_check_io_state(png_ptr, length, PNG_IO_WRITING);
420#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600421}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600422#endif /* !PNG_STDIO_SUPPORTED */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600423
424/* This function is called when there is a warning, but the library thinks
425 * it can continue anyway. Replacement functions don't have to do anything
426 * here if you don't want to. In the default configuration, png_ptr is
427 * not used, but it is passed in case it may be useful.
428 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600429typedef struct
430{
431 PNG_CONST char *file_name;
432} pngtest_error_parameters;
433
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600434static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500435pngtest_warning(png_structp png_ptr, png_const_charp message)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600436{
437 PNG_CONST char *name = "UNKNOWN (ERROR!)";
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600438 pngtest_error_parameters *test =
439 (pngtest_error_parameters*)png_get_error_ptr(png_ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500440
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600441 ++warning_count;
John Bowlerad5a9932012-08-10 13:15:07 -0500442
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600443 if (test != NULL && test->file_name != NULL)
444 name = test->file_name;
445
446 fprintf(STDERR, "%s: libpng warning: %s\n", name, message);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600447}
448
449/* This is the default error handling function. Note that replacements for
450 * this function MUST NOT RETURN, or the program will likely crash. This
451 * function is used by default, or if the program supplies NULL for the
452 * error function pointer in png_set_error_fn().
453 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600454static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500455pngtest_error(png_structp png_ptr, png_const_charp message)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600456{
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600457 ++error_count;
458
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500459 pngtest_warning(png_ptr, message);
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500460 /* We can return because png_error calls the default handler, which is
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500461 * actually OK in this case.
462 */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600463}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600464
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600465/* END of code to validate stdio-free compilation */
466
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600467/* START of code to validate memory allocation and deallocation */
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -0500468#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600469
470/* Allocate memory. For reasonable files, size should never exceed
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500471 * 64K. However, zlib may allocate more then 64K if you don't tell
472 * it not to. See zconf.h and png.h for more information. zlib does
473 * need to allocate exactly 64K, so whatever you call here must
474 * have the ability to do that.
475 *
476 * This piece of code can be compiled to validate max 64K allocations
477 * by setting MAXSEG_64K in zlib zconf.h *or* PNG_MAX_MALLOC_64K.
478 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600479typedef struct memory_information
480{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500481 png_alloc_size_t size;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500482 png_voidp pointer;
John Bowlerbaeb6d12011-11-26 18:21:02 -0600483 struct memory_information *next;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600484} memory_information;
John Bowlerbaeb6d12011-11-26 18:21:02 -0600485typedef memory_information *memory_infop;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600486
487static memory_infop pinformation = NULL;
488static int current_allocation = 0;
489static int maximum_allocation = 0;
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500490static int total_allocation = 0;
491static int num_allocations = 0;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600492
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600493png_voidp PNGCBAPI png_debug_malloc PNGARG((png_structp png_ptr,
494 png_alloc_size_t size));
495void PNGCBAPI png_debug_free PNGARG((png_structp png_ptr, png_voidp ptr));
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600496
497png_voidp
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600498PNGCBAPI png_debug_malloc(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600499{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500500
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500501 /* png_malloc has already tested for NULL; png_create_struct calls
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500502 * png_debug_malloc directly, with png_ptr == NULL which is OK
503 */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500504
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600505 if (size == 0)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500506 return (NULL);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600507
508 /* This calls the library allocator twice, once to get the requested
509 buffer and once to get a new free list entry. */
510 {
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500511 /* Disable malloc_fn and free_fn */
Glenn Randers-Pehrson36d7bc72004-08-10 06:55:02 -0500512 memory_infop pinfo;
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500513 png_set_mem_fn(png_ptr, NULL, NULL, NULL);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500514 pinfo = (memory_infop)png_malloc(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600515 (sizeof *pinfo));
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600516 pinfo->size = size;
517 current_allocation += size;
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500518 total_allocation += size;
519 num_allocations ++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500520
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600521 if (current_allocation > maximum_allocation)
522 maximum_allocation = current_allocation;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500523
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500524 pinfo->pointer = png_malloc(png_ptr, size);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500525 /* Restore malloc_fn and free_fn */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500526
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500527 png_set_mem_fn(png_ptr,
528 NULL, png_debug_malloc, png_debug_free);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500529
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500530 if (size != 0 && pinfo->pointer == NULL)
531 {
532 current_allocation -= size;
533 total_allocation -= size;
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500534 png_error(png_ptr,
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500535 "out of memory in pngtest->png_debug_malloc");
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500536 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500537
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600538 pinfo->next = pinformation;
539 pinformation = pinfo;
540 /* Make sure the caller isn't assuming zeroed memory. */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600541 memset(pinfo->pointer, 0xdd, pinfo->size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500542
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600543 if (verbose != 0)
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600544 printf("png_malloc %lu bytes at %p\n", (unsigned long)size,
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500545 pinfo->pointer);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500546
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600547 return (png_voidp)(pinfo->pointer);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600548 }
549}
550
551/* Free a pointer. It is removed from the list at the same time. */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600552void PNGCBAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500553png_debug_free(png_structp png_ptr, png_voidp ptr)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600554{
555 if (png_ptr == NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500556 fprintf(STDERR, "NULL pointer to png_debug_free.\n");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500557
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600558 if (ptr == 0)
559 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600560#if 0 /* This happens all the time. */
561 fprintf(STDERR, "WARNING: freeing NULL pointer\n");
562#endif
563 return;
564 }
565
566 /* Unlink the element from the list. */
567 {
John Bowlerbaeb6d12011-11-26 18:21:02 -0600568 memory_infop *ppinfo = &pinformation;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500569
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600570 for (;;)
571 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600572 memory_infop pinfo = *ppinfo;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500573
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600574 if (pinfo->pointer == ptr)
575 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600576 *ppinfo = pinfo->next;
577 current_allocation -= pinfo->size;
578 if (current_allocation < 0)
579 fprintf(STDERR, "Duplicate free of memory\n");
580 /* We must free the list element too, but first kill
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500581 the memory that is to be freed. */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600582 memset(ptr, 0x55, pinfo->size);
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600583 if (pinfo != NULL)
Glenn Randers-Pehrson83b132f2013-11-28 14:00:04 -0600584 free(pinfo);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500585 pinfo = NULL;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600586 break;
587 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500588
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600589 if (pinfo->next == NULL)
590 {
Glenn Randers-Pehrsonb1828932001-06-23 08:03:17 -0500591 fprintf(STDERR, "Pointer %x not found\n", (unsigned int)ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600592 break;
593 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500594
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600595 ppinfo = &pinfo->next;
596 }
597 }
598
599 /* Finally free the data. */
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600600 if (verbose != 0)
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600601 printf("Freeing %p\n", ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500602
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600603 if (ptr != NULL)
Glenn Randers-Pehrson83b132f2013-11-28 14:00:04 -0600604 free(ptr);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500605 ptr = NULL;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600606}
Glenn Randers-Pehrsond029a752004-08-09 21:50:32 -0500607#endif /* PNG_USER_MEM_SUPPORTED && PNG_DEBUG */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600608/* END of code to test memory allocation/deallocation */
609
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500610
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600611#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500612/* Demonstration of user chunk support of the sTER and vpAg chunks */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500613
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500614/* (sTER is a public chunk not yet known by libpng. vpAg is a private
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500615chunk used in ImageMagick to store "virtual page" size). */
616
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600617static struct user_chunk_data
618{
619 png_const_infop info_ptr;
620 png_uint_32 vpAg_width, vpAg_height;
621 png_byte vpAg_units;
622 png_byte sTER_mode;
623 int location[2];
624}
625user_chunk_data;
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500626
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600627/* Used for location and order; zero means nothing. */
628#define have_sTER 0x01
629#define have_vpAg 0x02
630#define before_PLTE 0x10
631#define before_IDAT 0x20
632#define after_IDAT 0x40
633
634static void
635init_callback_info(png_const_infop info_ptr)
636{
637 MEMZERO(user_chunk_data);
638 user_chunk_data.info_ptr = info_ptr;
639}
640
641static int
642set_location(png_structp png_ptr, struct user_chunk_data *data, int what)
643{
644 int location;
645
646 if ((data->location[0] & what) || (data->location[1] & what))
647 return 0; /* already have one of these */
648
649 /* Find where we are (the code below zeros info_ptr to indicate that the
650 * chunks before the first IDAT have been read.)
651 */
652 if (data->info_ptr == NULL) /* after IDAT */
653 location = what | after_IDAT;
654
655 else if (png_get_valid(png_ptr, data->info_ptr, PNG_INFO_PLTE))
656 location = what | before_IDAT;
657
658 else
659 location = what | before_PLTE;
660
661 if (data->location[0] == 0)
662 data->location[0] = location;
663
664 else
665 data->location[1] = location;
666
667 return 1; /* handled */
668}
John Bowler3c1f6982012-08-16 20:47:34 -0500669
Glenn Randers-Pehrson24afd072014-03-05 16:55:19 -0600670static int PNGCBAPI
Glenn Randers-Pehrsonc9786422014-03-05 17:14:16 -0600671read_user_chunk_callback(png_struct *png_ptr, png_unknown_chunkp chunk)
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500672{
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600673 struct user_chunk_data *my_user_chunk_data =
674 (struct user_chunk_data*)png_get_user_chunk_ptr(png_ptr);
675
676 if (my_user_chunk_data == NULL)
677 png_error(png_ptr, "lost user chunk pointer");
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500678
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500679 /* Return one of the following:
680 * return (-n); chunk had an error
681 * return (0); did not recognize
682 * return (n); success
683 *
684 * The unknown chunk structure contains the chunk data:
685 * png_byte name[5];
686 * png_byte *data;
687 * png_size_t size;
688 *
689 * Note that libpng has already taken care of the CRC handling.
690 */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500691
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500692 if (chunk->name[0] == 115 && chunk->name[1] == 84 && /* s T */
693 chunk->name[2] == 69 && chunk->name[3] == 82) /* E R */
694 {
695 /* Found sTER chunk */
696 if (chunk->size != 1)
697 return (-1); /* Error return */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500698
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500699 if (chunk->data[0] != 0 && chunk->data[0] != 1)
700 return (-1); /* Invalid mode */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500701
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600702 if (set_location(png_ptr, my_user_chunk_data, have_sTER))
703 {
704 my_user_chunk_data->sTER_mode=chunk->data[0];
705 return (1);
706 }
707
708 else
709 return (0); /* duplicate sTER - give it to libpng */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500710 }
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500711
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500712 if (chunk->name[0] != 118 || chunk->name[1] != 112 || /* v p */
713 chunk->name[2] != 65 || chunk->name[3] != 103) /* A g */
714 return (0); /* Did not recognize */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500715
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500716 /* Found ImageMagick vpAg chunk */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500717
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500718 if (chunk->size != 9)
719 return (-1); /* Error return */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500720
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600721 if (!set_location(png_ptr, my_user_chunk_data, have_vpAg))
722 return (0); /* duplicate vpAg */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500723
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600724 my_user_chunk_data->vpAg_width = png_get_uint_31(png_ptr, chunk->data);
725 my_user_chunk_data->vpAg_height = png_get_uint_31(png_ptr, chunk->data + 4);
726 my_user_chunk_data->vpAg_units = chunk->data[8];
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500727
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500728 return (1);
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500729}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600730
731#ifdef PNG_WRITE_SUPPORTED
732static void
733write_sTER_chunk(png_structp write_ptr)
734{
John Bowlera8472472013-12-29 10:50:51 -0600735 png_byte sTER[5] = {115, 84, 69, 82, '\0'};
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600736
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600737 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600738 fprintf(STDERR, "\n stereo mode = %d\n", user_chunk_data.sTER_mode);
739
John Bowlera8472472013-12-29 10:50:51 -0600740 png_write_chunk(write_ptr, sTER, &user_chunk_data.sTER_mode, 1);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600741}
742
743static void
744write_vpAg_chunk(png_structp write_ptr)
745{
John Bowlera8472472013-12-29 10:50:51 -0600746 png_byte vpAg[5] = {118, 112, 65, 103, '\0'};
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600747
748 png_byte vpag_chunk_data[9];
749
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600750 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600751 fprintf(STDERR, " vpAg = %lu x %lu, units = %d\n",
752 (unsigned long)user_chunk_data.vpAg_width,
753 (unsigned long)user_chunk_data.vpAg_height,
754 user_chunk_data.vpAg_units);
755
756 png_save_uint_32(vpag_chunk_data, user_chunk_data.vpAg_width);
757 png_save_uint_32(vpag_chunk_data + 4, user_chunk_data.vpAg_height);
758 vpag_chunk_data[8] = user_chunk_data.vpAg_units;
John Bowlera8472472013-12-29 10:50:51 -0600759 png_write_chunk(write_ptr, vpAg, vpag_chunk_data, 9);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600760}
761
762static void
763write_chunks(png_structp write_ptr, int location)
764{
765 int i;
766
767 /* Notice that this preserves the original chunk order, however chunks
768 * intercepted by the callback will be written *after* chunks passed to
769 * libpng. This will actually reverse a pair of sTER chunks or a pair of
770 * vpAg chunks, resulting in an error later. This is not worth worrying
771 * about - the chunks should not be duplicated!
772 */
773 for (i=0; i<2; ++i)
774 {
775 if (user_chunk_data.location[i] == (location | have_sTER))
776 write_sTER_chunk(write_ptr);
777
778 else if (user_chunk_data.location[i] == (location | have_vpAg))
779 write_vpAg_chunk(write_ptr);
780 }
781}
782#endif /* PNG_WRITE_SUPPORTED */
783#else /* !PNG_READ_USER_CHUNKS_SUPPORTED */
784# define write_chunks(pp,loc) ((void)0)
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500785#endif
786/* END of code to demonstrate user chunk support */
787
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600788/* START of code to check that libpng has the required text support; this only
789 * checks for the write support because if read support is missing the chunk
790 * will simply not be reported back to pngtest.
791 */
792#ifdef PNG_TEXT_SUPPORTED
793static void
794pngtest_check_text_support(png_const_structp png_ptr, png_textp text_ptr,
795 int num_text)
796{
797 while (num_text > 0)
798 {
799 switch (text_ptr[--num_text].compression)
800 {
801 case PNG_TEXT_COMPRESSION_NONE:
802 break;
803
804 case PNG_TEXT_COMPRESSION_zTXt:
805# ifndef PNG_WRITE_zTXt_SUPPORTED
806 ++unsupported_chunks;
807# endif
808 break;
809
810 case PNG_ITXT_COMPRESSION_NONE:
811 case PNG_ITXT_COMPRESSION_zTXt:
812# ifndef PNG_WRITE_iTXt_SUPPORTED
813 ++unsupported_chunks;
814# endif
815 break;
816
817 default:
818 /* This is an error */
819 png_error(png_ptr, "invalid text chunk compression field");
820 break;
821 }
822 }
823}
824#endif
825/* END of code to check that libpng has the required text support */
826
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600827/* Test one file */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600828static int
Glenn Randers-Pehrson7cd899c1998-03-07 16:17:42 -0600829test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
Guy Schalnat0d580581995-07-20 02:43:20 -0500830{
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500831 static png_FILE_p fpin;
832 static png_FILE_p fpout; /* "static" prevents setjmp corruption */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600833 pngtest_error_parameters error_parameters;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500834 png_structp read_ptr;
835 png_infop read_info_ptr, end_info_ptr;
836#ifdef PNG_WRITE_SUPPORTED
837 png_structp write_ptr;
838 png_infop write_info_ptr;
839 png_infop write_end_info_ptr;
John Bowlera8472472013-12-29 10:50:51 -0600840 int interlace_preserved = 1;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500841#else
842 png_structp write_ptr = NULL;
843 png_infop write_info_ptr = NULL;
844 png_infop write_end_info_ptr = NULL;
845#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600846 png_bytep row_buf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500847 png_uint_32 y;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500848 png_uint_32 width, height;
John Bowlera8472472013-12-29 10:50:51 -0600849 int num_pass = 1, pass;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500850 int bit_depth, color_type;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600851
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500852 row_buf = NULL;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600853 error_parameters.file_name = inname;
Guy Schalnat0d580581995-07-20 02:43:20 -0500854
Andreas Dilger47a0c421997-05-16 02:46:07 -0500855 if ((fpin = fopen(inname, "rb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -0600856 {
857 fprintf(STDERR, "Could not find input file %s\n", inname);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600858 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600859 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500860
Andreas Dilger47a0c421997-05-16 02:46:07 -0500861 if ((fpout = fopen(outname, "wb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -0600862 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500863 fprintf(STDERR, "Could not open output file %s\n", outname);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500864 FCLOSE(fpin);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600865 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600866 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500867
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600868 pngtest_debug("Allocating read and write structures");
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -0500869#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500870 read_ptr =
871 png_create_read_struct_2(PNG_LIBPNG_VER_STRING, NULL,
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600872 NULL, NULL, NULL, png_debug_malloc, png_debug_free);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500873#else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500874 read_ptr =
875 png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500876#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600877 png_set_error_fn(read_ptr, &error_parameters, pngtest_error,
878 pngtest_warning);
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500879
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500880#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -0500881#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500882 write_ptr =
883 png_create_write_struct_2(PNG_LIBPNG_VER_STRING, NULL,
884 NULL, NULL, NULL, png_debug_malloc, png_debug_free);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500885#else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500886 write_ptr =
887 png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500888#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600889 png_set_error_fn(write_ptr, &error_parameters, pngtest_error,
890 pngtest_warning);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500891#endif
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600892 pngtest_debug("Allocating read_info, write_info and end_info structures");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500893 read_info_ptr = png_create_info_struct(read_ptr);
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500894 end_info_ptr = png_create_info_struct(read_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500895#ifdef PNG_WRITE_SUPPORTED
896 write_info_ptr = png_create_info_struct(write_ptr);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500897 write_end_info_ptr = png_create_info_struct(write_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500898#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500899
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600900#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
901 init_callback_info(read_info_ptr);
902 png_set_read_user_chunk_fn(read_ptr, &user_chunk_data,
903 read_user_chunk_callback);
904#endif
905
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600906#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600907 pngtest_debug("Setting jmpbuf for read struct");
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600908 if (setjmp(png_jmpbuf(read_ptr)))
Guy Schalnat0f716451995-11-28 11:22:13 -0600909 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600910 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500911 png_free(read_ptr, row_buf);
912 row_buf = NULL;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500913 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500914#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500915 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500916 png_destroy_write_struct(&write_ptr, &write_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500917#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500918 FCLOSE(fpin);
919 FCLOSE(fpout);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600920 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600921 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500922
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500923#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600924 pngtest_debug("Setting jmpbuf for write struct");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500925
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600926 if (setjmp(png_jmpbuf(write_ptr)))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600927 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600928 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500929 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500930 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500931#ifdef PNG_WRITE_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500932 png_destroy_write_struct(&write_ptr, &write_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500933#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500934 FCLOSE(fpin);
935 FCLOSE(fpout);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600936 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600937 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600938#endif
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500939#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600940
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600941 if (strict != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600942 {
943 /* Treat png_benign_error() as errors on read */
944 png_set_benign_errors(read_ptr, 0);
945
946#ifdef PNG_WRITE_SUPPORTED
947 /* Treat them as errors on write */
948 png_set_benign_errors(write_ptr, 0);
949#endif
950
951 /* if strict is not set, then app warnings and errors are treated as
952 * warnings in release builds, but not in unstable builds; this can be
953 * changed with '--relaxed'.
954 */
955 }
956
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600957 else if (relaxed != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600958 {
959 /* Allow application (pngtest) errors and warnings to pass */
960 png_set_benign_errors(read_ptr, 1);
961
962#ifdef PNG_WRITE_SUPPORTED
963 png_set_benign_errors(write_ptr, 1);
964#endif
965 }
966
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600967 pngtest_debug("Initializing input and output streams");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500968#ifdef PNG_STDIO_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500969 png_init_io(read_ptr, fpin);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500970# ifdef PNG_WRITE_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500971 png_init_io(write_ptr, fpout);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500972# endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600973#else
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500974 png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500975# ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500976 png_set_write_fn(write_ptr, (png_voidp)fpout, pngtest_write_data,
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500977# ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500978 pngtest_flush);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500979# else
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600980 NULL);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500981# endif
982# endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600983#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500984
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500985 if (status_dots_requested == 1)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600986 {
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500987#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600988 png_set_write_status_fn(write_ptr, write_row_callback);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500989#endif
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600990 png_set_read_status_fn(read_ptr, read_row_callback);
991 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500992
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600993 else
994 {
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500995#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500996 png_set_write_status_fn(write_ptr, NULL);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500997#endif
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500998 png_set_read_status_fn(read_ptr, NULL);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600999 }
1000
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001001#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001002 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001003 int i;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001004
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001005 for (i = 0; i<256; i++)
1006 filters_used[i] = 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001007
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001008 png_set_read_user_transform_fn(read_ptr, count_filters);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001009 }
1010#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001011#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001012 zero_samples = 0;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001013 png_set_write_user_transform_fn(write_ptr, count_zero_samples);
1014#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001015
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001016#ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
1017 /* Preserve all the unknown chunks, if possible. If this is disabled then,
1018 * even if the png_{get,set}_unknown_chunks stuff is enabled, we can't use
1019 * libpng to *save* the unknown chunks on read (because we can't switch the
1020 * save option on!)
1021 *
1022 * Notice that if SET_UNKNOWN_CHUNKS is *not* supported read will discard all
1023 * unknown chunks and write will write them all.
1024 */
1025#ifdef PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001026 png_set_keep_unknown_chunks(read_ptr, PNG_HANDLE_CHUNK_ALWAYS,
1027 NULL, 0);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001028#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001029#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001030 png_set_keep_unknown_chunks(write_ptr, PNG_HANDLE_CHUNK_ALWAYS,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001031 NULL, 0);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001032#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001033#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001034
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001035 pngtest_debug("Reading info struct");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001036 png_read_info(read_ptr, read_info_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001037
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001038#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1039 /* This is a bit of a hack; there is no obvious way in the callback function
1040 * to determine that the chunks before the first IDAT have been read, so
1041 * remove the info_ptr (which is only used to determine position relative to
1042 * PLTE) here to indicate that we are after the IDAT.
1043 */
1044 user_chunk_data.info_ptr = NULL;
1045#endif
1046
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001047 pngtest_debug("Transferring info struct");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001048 {
1049 int interlace_type, compression_type, filter_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001050
Andreas Dilger47a0c421997-05-16 02:46:07 -05001051 if (png_get_IHDR(read_ptr, read_info_ptr, &width, &height, &bit_depth,
1052 &color_type, &interlace_type, &compression_type, &filter_type))
1053 {
1054 png_set_IHDR(write_ptr, write_info_ptr, width, height, bit_depth,
1055 color_type, interlace_type, compression_type, filter_type);
John Bowlera8472472013-12-29 10:50:51 -06001056#ifndef PNG_READ_INTERLACING_SUPPORTED
1057 /* num_pass will not be set below, set it here if the image is
1058 * interlaced: what happens is that write interlacing is *not* turned
1059 * on an the partial interlaced rows are written directly.
1060 */
1061 switch (interlace_type)
1062 {
1063 case PNG_INTERLACE_NONE:
1064 num_pass = 1;
1065 break;
1066
1067 case PNG_INTERLACE_ADAM7:
1068 num_pass = 7;
1069 break;
1070
1071 default:
1072 png_error(read_ptr, "invalid interlace type");
1073 /*NOT REACHED*/
1074 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001075#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001076 }
1077 }
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001078#ifdef PNG_FIXED_POINT_SUPPORTED
1079#ifdef PNG_cHRM_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001080 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001081 png_fixed_point white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001082 blue_y;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001083
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001084 if (png_get_cHRM_fixed(read_ptr, read_info_ptr, &white_x, &white_y,
1085 &red_x, &red_y, &green_x, &green_y, &blue_x, &blue_y))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001086 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001087 png_set_cHRM_fixed(write_ptr, write_info_ptr, white_x, white_y, red_x,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001088 red_y, green_x, green_y, blue_x, blue_y);
1089 }
1090 }
1091#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001092#ifdef PNG_gAMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001093 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001094 png_fixed_point gamma;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001095
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001096 if (png_get_gAMA_fixed(read_ptr, read_info_ptr, &gamma))
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001097 png_set_gAMA_fixed(write_ptr, write_info_ptr, gamma);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001098 }
1099#endif
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001100#else /* Use floating point versions */
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001101#ifdef PNG_FLOATING_POINT_SUPPORTED
1102#ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001103 {
1104 double white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
1105 blue_y;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001106
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001107 if (png_get_cHRM(read_ptr, read_info_ptr, &white_x, &white_y, &red_x,
1108 &red_y, &green_x, &green_y, &blue_x, &blue_y))
1109 {
1110 png_set_cHRM(write_ptr, write_info_ptr, white_x, white_y, red_x,
1111 red_y, green_x, green_y, blue_x, blue_y);
1112 }
1113 }
1114#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001115#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001116 {
1117 double gamma;
1118
1119 if (png_get_gAMA(read_ptr, read_info_ptr, &gamma))
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001120 png_set_gAMA(write_ptr, write_info_ptr, gamma);
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001121 }
1122#endif
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001123#endif /* Floating point */
1124#endif /* Fixed point */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001125#ifdef PNG_iCCP_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001126 {
1127 png_charp name;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001128 png_bytep profile;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001129 png_uint_32 proflen;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001130 int compression_type;
1131
1132 if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type,
1133 &profile, &proflen))
1134 {
1135 png_set_iCCP(write_ptr, write_info_ptr, name, compression_type,
1136 profile, proflen);
1137 }
1138 }
1139#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001140#ifdef PNG_sRGB_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001141 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001142 int intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001143
1144 if (png_get_sRGB(read_ptr, read_info_ptr, &intent))
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001145 png_set_sRGB(write_ptr, write_info_ptr, intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001146 }
1147#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001148 {
1149 png_colorp palette;
1150 int num_palette;
1151
1152 if (png_get_PLTE(read_ptr, read_info_ptr, &palette, &num_palette))
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001153 png_set_PLTE(write_ptr, write_info_ptr, palette, num_palette);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001154 }
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001155#ifdef PNG_bKGD_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001156 {
1157 png_color_16p background;
1158
1159 if (png_get_bKGD(read_ptr, read_info_ptr, &background))
1160 {
1161 png_set_bKGD(write_ptr, write_info_ptr, background);
1162 }
1163 }
1164#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001165#ifdef PNG_hIST_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001166 {
1167 png_uint_16p hist;
1168
1169 if (png_get_hIST(read_ptr, read_info_ptr, &hist))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001170 png_set_hIST(write_ptr, write_info_ptr, hist);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001171 }
1172#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001173#ifdef PNG_oFFs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001174 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001175 png_int_32 offset_x, offset_y;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001176 int unit_type;
1177
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001178 if (png_get_oFFs(read_ptr, read_info_ptr, &offset_x, &offset_y,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001179 &unit_type))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001180 {
1181 png_set_oFFs(write_ptr, write_info_ptr, offset_x, offset_y, unit_type);
1182 }
1183 }
1184#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001185#ifdef PNG_pCAL_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001186 {
1187 png_charp purpose, units;
1188 png_charpp params;
1189 png_int_32 X0, X1;
1190 int type, nparams;
1191
1192 if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type,
1193 &nparams, &units, &params))
1194 {
1195 png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type,
1196 nparams, units, params);
1197 }
1198 }
1199#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001200#ifdef PNG_pHYs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001201 {
1202 png_uint_32 res_x, res_y;
1203 int unit_type;
1204
1205 if (png_get_pHYs(read_ptr, read_info_ptr, &res_x, &res_y, &unit_type))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001206 png_set_pHYs(write_ptr, write_info_ptr, res_x, res_y, unit_type);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001207 }
1208#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001209#ifdef PNG_sBIT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001210 {
1211 png_color_8p sig_bit;
1212
1213 if (png_get_sBIT(read_ptr, read_info_ptr, &sig_bit))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001214 png_set_sBIT(write_ptr, write_info_ptr, sig_bit);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001215 }
1216#endif
Glenn Randers-Pehrson9c1bb202009-09-17 10:55:49 -05001217#ifdef PNG_sCAL_SUPPORTED
Glenn Randers-Pehrson8d9e4942013-04-18 07:23:59 -05001218#if defined(PNG_FLOATING_POINT_SUPPORTED) && \
1219 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001220 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001221 int unit;
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001222 double scal_width, scal_height;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001223
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001224 if (png_get_sCAL(read_ptr, read_info_ptr, &unit, &scal_width,
1225 &scal_height))
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001226 {
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001227 png_set_sCAL(write_ptr, write_info_ptr, unit, scal_width, scal_height);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001228 }
1229 }
1230#else
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001231#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001232 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001233 int unit;
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001234 png_charp scal_width, scal_height;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001235
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001236 if (png_get_sCAL_s(read_ptr, read_info_ptr, &unit, &scal_width,
1237 &scal_height))
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001238 {
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001239 png_set_sCAL_s(write_ptr, write_info_ptr, unit, scal_width,
1240 scal_height);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001241 }
1242 }
1243#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001244#endif
1245#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001246#ifdef PNG_TEXT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001247 {
1248 png_textp text_ptr;
1249 int num_text;
1250
1251 if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
1252 {
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001253 pngtest_debug1("Handling %d iTXt/tEXt/zTXt chunks", num_text);
Glenn Randers-Pehrson15ea1fa2011-11-23 15:28:01 -06001254
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001255 pngtest_check_text_support(read_ptr, text_ptr, num_text);
1256
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001257 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001258 {
1259 int i;
1260
1261 printf("\n");
1262 for (i=0; i<num_text; i++)
1263 {
1264 printf(" Text compression[%d]=%d\n",
1265 i, text_ptr[i].compression);
1266 }
1267 }
Glenn Randers-Pehrson15ea1fa2011-11-23 15:28:01 -06001268
Andreas Dilger47a0c421997-05-16 02:46:07 -05001269 png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
1270 }
1271 }
1272#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001273#ifdef PNG_tIME_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001274 {
1275 png_timep mod_time;
1276
1277 if (png_get_tIME(read_ptr, read_info_ptr, &mod_time))
1278 {
1279 png_set_tIME(write_ptr, write_info_ptr, mod_time);
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001280#ifdef PNG_TIME_RFC1123_SUPPORTED
John Bowler40b26032011-12-22 08:09:15 -06001281 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time))
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001282 tIME_string[(sizeof tIME_string) - 1] = '\0';
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001283
John Bowler40b26032011-12-22 08:09:15 -06001284 else
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001285 {
1286 strncpy(tIME_string, "*** invalid time ***", (sizeof tIME_string));
1287 tIME_string[(sizeof tIME_string) - 1] = '\0';
1288 }
John Bowler40b26032011-12-22 08:09:15 -06001289
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001290 tIME_chunk_present++;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001291#endif /* PNG_TIME_RFC1123_SUPPORTED */
Glenn Randers-Pehrsonc9442291999-01-06 21:50:16 -06001292 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001293 }
1294#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001295#ifdef PNG_tRNS_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001296 {
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001297 png_bytep trans_alpha;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001298 int num_trans;
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -05001299 png_color_16p trans_color;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001300
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001301 if (png_get_tRNS(read_ptr, read_info_ptr, &trans_alpha, &num_trans,
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -05001302 &trans_color))
Andreas Dilger47a0c421997-05-16 02:46:07 -05001303 {
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001304 int sample_max = (1 << bit_depth);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001305 /* libpng doesn't reject a tRNS chunk with out-of-range samples */
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001306 if (!((color_type == PNG_COLOR_TYPE_GRAY &&
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001307 (int)trans_color->gray > sample_max) ||
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001308 (color_type == PNG_COLOR_TYPE_RGB &&
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001309 ((int)trans_color->red > sample_max ||
1310 (int)trans_color->green > sample_max ||
1311 (int)trans_color->blue > sample_max))))
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001312 png_set_tRNS(write_ptr, write_info_ptr, trans_alpha, num_trans,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001313 trans_color);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001314 }
1315 }
1316#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001317#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001318 {
1319 png_unknown_chunkp unknowns;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001320 int num_unknowns = png_get_unknown_chunks(read_ptr, read_info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001321 &unknowns);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001322
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001323 if (num_unknowns != 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001324 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001325 png_set_unknown_chunks(write_ptr, write_info_ptr, unknowns,
1326 num_unknowns);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001327#if PNG_LIBPNG_VER < 10600
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001328 /* Copy the locations from the read_info_ptr. The automatically
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001329 * generated locations in write_end_info_ptr are wrong prior to 1.6.0
1330 * because they are reset from the write pointer (removed in 1.6.0).
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001331 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001332 {
1333 int i;
1334 for (i = 0; i < num_unknowns; i++)
1335 png_set_unknown_chunk_location(write_ptr, write_info_ptr, i,
1336 unknowns[i].location);
1337 }
1338#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001339 }
1340 }
1341#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001342
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001343#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001344 pngtest_debug("Writing info struct");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001345
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001346 /* Write the info in two steps so that if we write the 'unknown' chunks here
1347 * they go to the correct place.
1348 */
1349 png_write_info_before_PLTE(write_ptr, write_info_ptr);
1350
1351 write_chunks(write_ptr, before_PLTE); /* before PLTE */
1352
Andreas Dilger47a0c421997-05-16 02:46:07 -05001353 png_write_info(write_ptr, write_info_ptr);
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -05001354
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001355 write_chunks(write_ptr, before_IDAT); /* after PLTE */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -05001356#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001357
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001358#ifdef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001359 pngtest_debug("Allocating row buffer...");
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001360 row_buf = (png_bytep)png_malloc(read_ptr,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001361 png_get_rowbytes(read_ptr, read_info_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001362
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001363 pngtest_debug1("\t0x%08lx", (unsigned long)row_buf);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001364#endif /* SINGLE_ROWBUF_ALLOC */
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001365 pngtest_debug("Writing row data");
Guy Schalnat0d580581995-07-20 02:43:20 -05001366
John Bowlera8472472013-12-29 10:50:51 -06001367#ifdef PNG_READ_INTERLACING_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001368 num_pass = png_set_interlace_handling(read_ptr);
John Bowlera8472472013-12-29 10:50:51 -06001369 if (png_set_interlace_handling(write_ptr) != num_pass)
1370 png_error(write_ptr, "png_set_interlace_handling: inconsistent num_pass");
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001371#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001372
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001373#ifdef PNGTEST_TIMING
1374 t_stop = (float)clock();
1375 t_misc += (t_stop - t_start);
1376 t_start = t_stop;
1377#endif
Guy Schalnat0f716451995-11-28 11:22:13 -06001378 for (pass = 0; pass < num_pass; pass++)
1379 {
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001380 pngtest_debug1("Writing row data for pass %d", pass);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001381 for (y = 0; y < height; y++)
Guy Schalnat0f716451995-11-28 11:22:13 -06001382 {
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001383#ifndef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001384 pngtest_debug2("Allocating row buffer (pass %d, y = %u)...", pass, y);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001385 row_buf = (png_bytep)png_malloc(read_ptr,
1386 png_get_rowbytes(read_ptr, read_info_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001387
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001388 pngtest_debug2("\t0x%08lx (%u bytes)", (unsigned long)row_buf,
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001389 png_get_rowbytes(read_ptr, read_info_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001390
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001391#endif /* !SINGLE_ROWBUF_ALLOC */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -05001392 png_read_rows(read_ptr, (png_bytepp)&row_buf, NULL, 1);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001393
1394#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001395#ifdef PNGTEST_TIMING
1396 t_stop = (float)clock();
1397 t_decode += (t_stop - t_start);
1398 t_start = t_stop;
1399#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001400 png_write_rows(write_ptr, (png_bytepp)&row_buf, 1);
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001401#ifdef PNGTEST_TIMING
1402 t_stop = (float)clock();
1403 t_encode += (t_stop - t_start);
1404 t_start = t_stop;
1405#endif
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001406#endif /* PNG_WRITE_SUPPORTED */
1407
1408#ifndef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001409 pngtest_debug2("Freeing row buffer (pass %d, y = %u)", pass, y);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001410 png_free(read_ptr, row_buf);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -05001411 row_buf = NULL;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001412#endif /* !SINGLE_ROWBUF_ALLOC */
Guy Schalnat0f716451995-11-28 11:22:13 -06001413 }
1414 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001415
Glenn Randers-Pehrsonb3721752013-09-30 13:56:44 -05001416#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
1417# ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
1418 png_free_data(read_ptr, read_info_ptr, PNG_FREE_UNKN, -1);
1419# endif
1420# ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
1421 png_free_data(write_ptr, write_info_ptr, PNG_FREE_UNKN, -1);
1422# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001423#endif
1424
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001425 pngtest_debug("Reading and writing end_info data");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001426
Andreas Dilger47a0c421997-05-16 02:46:07 -05001427 png_read_end(read_ptr, end_info_ptr);
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001428#ifdef PNG_TEXT_SUPPORTED
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001429 {
1430 png_textp text_ptr;
1431 int num_text;
1432
1433 if (png_get_text(read_ptr, end_info_ptr, &text_ptr, &num_text) > 0)
1434 {
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001435 pngtest_debug1("Handling %d iTXt/tEXt/zTXt chunks", num_text);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001436
1437 pngtest_check_text_support(read_ptr, text_ptr, num_text);
1438
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001439 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001440 {
1441 int i;
1442
1443 printf("\n");
1444 for (i=0; i<num_text; i++)
1445 {
1446 printf(" Text compression[%d]=%d\n",
1447 i, text_ptr[i].compression);
1448 }
1449 }
1450
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001451 png_set_text(write_ptr, write_end_info_ptr, text_ptr, num_text);
1452 }
1453 }
1454#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001455#ifdef PNG_tIME_SUPPORTED
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001456 {
1457 png_timep mod_time;
1458
1459 if (png_get_tIME(read_ptr, end_info_ptr, &mod_time))
1460 {
1461 png_set_tIME(write_ptr, write_end_info_ptr, mod_time);
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001462#ifdef PNG_TIME_RFC1123_SUPPORTED
John Bowler40b26032011-12-22 08:09:15 -06001463 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time))
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001464 tIME_string[(sizeof tIME_string) - 1] = '\0';
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001465
John Bowler40b26032011-12-22 08:09:15 -06001466 else
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001467 {
1468 strncpy(tIME_string, "*** invalid time ***", sizeof tIME_string);
1469 tIME_string[(sizeof tIME_string)-1] = '\0';
1470 }
John Bowler40b26032011-12-22 08:09:15 -06001471
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001472 tIME_chunk_present++;
1473#endif /* PNG_TIME_RFC1123_SUPPORTED */
1474 }
1475 }
1476#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001477#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001478 {
1479 png_unknown_chunkp unknowns;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001480 int num_unknowns = png_get_unknown_chunks(read_ptr, end_info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001481 &unknowns);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001482
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001483 if (num_unknowns != 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001484 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001485 png_set_unknown_chunks(write_ptr, write_end_info_ptr, unknowns,
1486 num_unknowns);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001487#if PNG_LIBPNG_VER < 10600
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001488 /* Copy the locations from the read_info_ptr. The automatically
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001489 * generated locations in write_end_info_ptr are wrong prior to 1.6.0
1490 * because they are reset from the write pointer (removed in 1.6.0).
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001491 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001492 {
1493 int i;
1494 for (i = 0; i < num_unknowns; i++)
1495 png_set_unknown_chunk_location(write_ptr, write_end_info_ptr, i,
1496 unknowns[i].location);
1497 }
1498#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001499 }
1500 }
1501#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001502
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001503#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001504#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
1505 /* Normally one would use Z_DEFAULT_STRATEGY for text compression.
1506 * This is here just to make pngtest replicate the results from libpng
1507 * versions prior to 1.5.4, and to test this new API.
1508 */
1509 png_set_text_compression_strategy(write_ptr, Z_FILTERED);
1510#endif
1511
1512 /* When the unknown vpAg/sTER chunks are written by pngtest the only way to
1513 * do it is to write them *before* calling png_write_end. When unknown
1514 * chunks are written by libpng, however, they are written just before IEND.
1515 * There seems to be no way round this, however vpAg/sTER are not expected
1516 * after IDAT.
1517 */
1518 write_chunks(write_ptr, after_IDAT);
1519
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001520 png_write_end(write_ptr, write_end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001521#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001522
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001523#ifdef PNG_EASY_ACCESS_SUPPORTED
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001524 if (verbose != 0)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001525 {
1526 png_uint_32 iwidth, iheight;
1527 iwidth = png_get_image_width(write_ptr, write_info_ptr);
1528 iheight = png_get_image_height(write_ptr, write_info_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001529 fprintf(STDERR, "\n Image width = %lu, height = %lu\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001530 (unsigned long)iwidth, (unsigned long)iheight);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001531 }
1532#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001533
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001534 pngtest_debug("Destroying data structs");
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001535#ifdef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001536 pngtest_debug("destroying row_buf for read_ptr");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001537 png_free(read_ptr, row_buf);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -05001538 row_buf = NULL;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001539#endif /* SINGLE_ROWBUF_ALLOC */
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001540 pngtest_debug("destroying read_ptr, read_info_ptr, end_info_ptr");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001541 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001542#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001543 pngtest_debug("destroying write_end_info_ptr");
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001544 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001545 pngtest_debug("destroying write_ptr, write_info_ptr");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001546 png_destroy_write_struct(&write_ptr, &write_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001547#endif
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001548 pngtest_debug("Destruction complete.");
Guy Schalnat0d580581995-07-20 02:43:20 -05001549
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001550 FCLOSE(fpin);
1551 FCLOSE(fpout);
Guy Schalnat0d580581995-07-20 02:43:20 -05001552
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001553 /* Summarize any warnings or errors and in 'strict' mode fail the test.
1554 * Unsupported chunks can result in warnings, in that case ignore the strict
1555 * setting, otherwise fail the test on warnings as well as errors.
1556 */
1557 if (error_count > 0)
1558 {
1559 /* We don't really expect to get here because of the setjmp handling
1560 * above, but this is safe.
1561 */
1562 fprintf(STDERR, "\n %s: %d libpng errors found (%d warnings)",
1563 inname, error_count, warning_count);
1564
1565 if (strict != 0)
1566 return (1);
1567 }
1568
1569# ifdef PNG_WRITE_SUPPORTED
1570 /* If there we no write support nothing was written! */
1571 else if (unsupported_chunks > 0)
1572 {
1573 fprintf(STDERR, "\n %s: unsupported chunks (%d)%s",
1574 inname, unsupported_chunks, strict ? ": IGNORED --strict!" : "");
1575 }
1576# endif
1577
1578 else if (warning_count > 0)
1579 {
1580 fprintf(STDERR, "\n %s: %d libpng warnings found",
1581 inname, warning_count);
1582
1583 if (strict != 0)
1584 return (1);
1585 }
1586
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001587 pngtest_debug("Opening files for comparison");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001588 if ((fpin = fopen(inname, "rb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -06001589 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001590 fprintf(STDERR, "Could not find file %s\n", inname);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001591 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -06001592 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001593
Andreas Dilger47a0c421997-05-16 02:46:07 -05001594 if ((fpout = fopen(outname, "rb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -06001595 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001596 fprintf(STDERR, "Could not find file %s\n", outname);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001597 FCLOSE(fpin);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001598 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -06001599 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001600
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001601#ifdef PNG_WRITE_SUPPORTED /* else nothing was written */
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001602 if (interlace_preserved != 0) /* else the files will be changed */
Guy Schalnat0f716451995-11-28 11:22:13 -06001603 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001604 for (;;)
Guy Schalnat0f716451995-11-28 11:22:13 -06001605 {
John Bowler81dfd002013-12-01 15:07:09 -06001606 static int wrote_question = 0;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001607 png_size_t num_in, num_out;
1608 char inbuf[256], outbuf[256];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001609
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001610 num_in = fread(inbuf, 1, sizeof inbuf, fpin);
1611 num_out = fread(outbuf, 1, sizeof outbuf, fpout);
1612
1613 if (num_in != num_out)
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001614 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001615 fprintf(STDERR, "\nFiles %s and %s are of a different size\n",
1616 inname, outname);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001617
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001618 if (wrote_question == 0 && unsupported_chunks == 0)
1619 {
1620 fprintf(STDERR,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001621 " Was %s written with the same maximum IDAT chunk size (%d bytes),",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001622 inname, PNG_ZBUF_SIZE);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001623 fprintf(STDERR,
1624 "\n filtering heuristic (libpng default), compression");
1625 fprintf(STDERR,
1626 " level (zlib default),\n and zlib version (%s)?\n\n",
1627 ZLIB_VERSION);
1628 wrote_question = 1;
1629 }
1630
1631 FCLOSE(fpin);
1632 FCLOSE(fpout);
1633
1634 if (strict != 0 && unsupported_chunks == 0)
1635 return (1);
1636
1637 else
1638 return (0);
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001639 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001640
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001641 if (num_in == 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001642 break;
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001643
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001644 if (memcmp(inbuf, outbuf, num_in))
1645 {
1646 fprintf(STDERR, "\nFiles %s and %s are different\n", inname,
1647 outname);
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001648
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001649 if (wrote_question == 0 && unsupported_chunks == 0)
1650 {
1651 fprintf(STDERR,
1652 " Was %s written with the same maximum IDAT chunk size (%d bytes),",
1653 inname, PNG_ZBUF_SIZE);
1654 fprintf(STDERR,
1655 "\n filtering heuristic (libpng default), compression");
1656 fprintf(STDERR,
1657 " level (zlib default),\n and zlib version (%s)?\n\n",
1658 ZLIB_VERSION);
1659 wrote_question = 1;
1660 }
1661
1662 FCLOSE(fpin);
1663 FCLOSE(fpout);
1664
1665 /* NOTE: the unsupported_chunks escape is permitted here because
1666 * unsupported text chunk compression will result in the compression
1667 * mode being changed (to NONE) yet, in the test case, the result
1668 * can be exactly the same size!
1669 */
1670 if (strict != 0 && unsupported_chunks == 0)
1671 return (1);
1672
1673 else
1674 return (0);
1675 }
Guy Schalnat0f716451995-11-28 11:22:13 -06001676 }
1677 }
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001678#endif /* PNG_WRITE_SUPPORTED */
Guy Schalnat0f716451995-11-28 11:22:13 -06001679
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001680 FCLOSE(fpin);
1681 FCLOSE(fpout);
Guy Schalnat0d580581995-07-20 02:43:20 -05001682
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001683 return (0);
Guy Schalnat0d580581995-07-20 02:43:20 -05001684}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001685
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001686/* Input and output filenames */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001687#ifdef RISCOS
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001688static PNG_CONST char *inname = "pngtest/png";
1689static PNG_CONST char *outname = "pngout/png";
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001690#else
Glenn Randers-Pehrson983ec161998-03-07 11:24:03 -06001691static PNG_CONST char *inname = "pngtest.png";
1692static PNG_CONST char *outname = "pngout.png";
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001693#endif
1694
1695int
1696main(int argc, char *argv[])
1697{
1698 int multiple = 0;
1699 int ierror = 0;
1700
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001701 fprintf(STDERR, "\n Testing libpng version %s\n", PNG_LIBPNG_VER_STRING);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001702 fprintf(STDERR, " with zlib version %s\n", ZLIB_VERSION);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001703 fprintf(STDERR, "%s", png_get_copyright(NULL));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001704 /* Show the version of libpng used in building the library */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001705 fprintf(STDERR, " library (%lu):%s",
1706 (unsigned long)png_access_version_number(),
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001707 png_get_header_version(NULL));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001708
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001709 /* Show the version of libpng used in building the application */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001710 fprintf(STDERR, " pngtest (%lu):%s", (unsigned long)PNG_LIBPNG_VER,
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001711 PNG_HEADER_VERSION_STRING);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001712
1713 /* Do some consistency checking on the memory allocation settings, I'm
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001714 * not sure this matters, but it is nice to know, the first of these
1715 * tests should be impossible because of the way the macros are set
1716 * in pngconf.h
1717 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001718#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001719 fprintf(STDERR, " NOTE: Zlib compiled for max 64k, libpng not\n");
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001720#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001721 /* I think the following can happen. */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001722#if !defined(MAXSEG_64K) && defined(PNG_MAX_MALLOC_64K)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001723 fprintf(STDERR, " NOTE: libpng compiled for max 64k, zlib not\n");
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001724#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001725
1726 if (strcmp(png_libpng_ver, PNG_LIBPNG_VER_STRING))
1727 {
1728 fprintf(STDERR,
1729 "Warning: versions are different between png.h and png.c\n");
1730 fprintf(STDERR, " png.h version: %s\n", PNG_LIBPNG_VER_STRING);
1731 fprintf(STDERR, " png.c version: %s\n\n", png_libpng_ver);
1732 ++ierror;
1733 }
1734
1735 if (argc > 1)
1736 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001737 if (strcmp(argv[1], "-m") == 0)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001738 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001739 multiple = 1;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001740 status_dots_requested = 0;
1741 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001742
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001743 else if (strcmp(argv[1], "-mv") == 0 ||
1744 strcmp(argv[1], "-vm") == 0 )
1745 {
1746 multiple = 1;
1747 verbose = 1;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001748 status_dots_requested = 1;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001749 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001750
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001751 else if (strcmp(argv[1], "-v") == 0)
1752 {
1753 verbose = 1;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001754 status_dots_requested = 1;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001755 inname = argv[2];
1756 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001757
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001758 else if (strcmp(argv[1], "--strict") == 0)
1759 {
1760 status_dots_requested = 0;
1761 verbose = 1;
1762 inname = argv[2];
1763 strict++;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001764 relaxed = 0;
1765 }
1766
1767 else if (strcmp(argv[1], "--relaxed") == 0)
1768 {
1769 status_dots_requested = 0;
1770 verbose = 1;
1771 inname = argv[2];
1772 strict = 0;
1773 relaxed++;
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001774 }
1775
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001776 else
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001777 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001778 inname = argv[1];
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001779 status_dots_requested = 0;
1780 }
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001781 }
1782
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001783 if (!multiple && argc == 3 + verbose)
1784 outname = argv[2 + verbose];
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001785
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001786 if ((!multiple && argc > 3 + verbose) || (multiple && argc < 2))
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001787 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001788 fprintf(STDERR,
1789 "usage: %s [infile.png] [outfile.png]\n\t%s -m {infile.png}\n",
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001790 argv[0], argv[0]);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001791 fprintf(STDERR,
1792 " reads/writes one PNG file (without -m) or multiple files (-m)\n");
1793 fprintf(STDERR,
1794 " with -m %s is used as a temporary file\n", outname);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001795 exit(1);
1796 }
1797
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001798 if (multiple != 0)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001799 {
1800 int i;
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001801#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001802 int allocation_now = current_allocation;
1803#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001804 for (i=2; i<argc; ++i)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001805 {
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001806 int kerror;
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001807 fprintf(STDERR, "\n Testing %s:", argv[i]);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001808 kerror = test_one_file(argv[i], outname);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001809 if (kerror == 0)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001810 {
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001811#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
1812 int k;
1813#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001814#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001815 fprintf(STDERR, "\n PASS (%lu zero samples)\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001816 (unsigned long)zero_samples);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001817#else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001818 fprintf(STDERR, " PASS\n");
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001819#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001820#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001821 for (k = 0; k<256; k++)
1822 if (filters_used[k])
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001823 fprintf(STDERR, " Filter %d was used %lu times\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001824 k, (unsigned long)filters_used[k]);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001825#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001826#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001827 if (tIME_chunk_present != 0)
1828 fprintf(STDERR, " tIME = %s\n", tIME_string);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001829
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001830 tIME_chunk_present = 0;
1831#endif /* PNG_TIME_RFC1123_SUPPORTED */
1832 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001833
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001834 else
1835 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001836 fprintf(STDERR, " FAIL\n");
1837 ierror += kerror;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001838 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001839#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001840 if (allocation_now != current_allocation)
1841 fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001842 current_allocation - allocation_now);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001843
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001844 if (current_allocation != 0)
1845 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001846 memory_infop pinfo = pinformation;
1847
1848 fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
1849 current_allocation);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001850
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001851 while (pinfo != NULL)
1852 {
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001853 fprintf(STDERR, " %lu bytes at %x\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001854 (unsigned long)pinfo->size,
Glenn Randers-Pehrsond2332872010-10-12 19:19:28 -05001855 (unsigned int)pinfo->pointer);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001856 pinfo = pinfo->next;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001857 }
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06001858 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001859#endif
1860 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001861#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001862 fprintf(STDERR, " Current memory allocation: %10d bytes\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001863 current_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001864 fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001865 maximum_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001866 fprintf(STDERR, " Total memory allocation: %10d bytes\n",
1867 total_allocation);
1868 fprintf(STDERR, " Number of allocations: %10d\n",
1869 num_allocations);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001870#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001871 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001872
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001873 else
1874 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001875 int i;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001876 for (i = 0; i<3; ++i)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001877 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001878 int kerror;
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001879#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001880 int allocation_now = current_allocation;
1881#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001882 if (i == 1)
1883 status_dots_requested = 1;
1884
1885 else if (verbose == 0)
1886 status_dots_requested = 0;
1887
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001888 if (i == 0 || verbose == 1 || ierror != 0)
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001889 fprintf(STDERR, "\n Testing %s:", inname);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001890
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001891 kerror = test_one_file(inname, outname);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001892
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001893 if (kerror == 0)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001894 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001895 if (verbose == 1 || i == 2)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001896 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001897#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001898 int k;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001899#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001900#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001901 fprintf(STDERR, "\n PASS (%lu zero samples)\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001902 (unsigned long)zero_samples);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001903#else
1904 fprintf(STDERR, " PASS\n");
1905#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001906#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001907 for (k = 0; k<256; k++)
1908 if (filters_used[k])
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001909 fprintf(STDERR, " Filter %d was used %lu times\n",
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001910 k, (unsigned long)filters_used[k]);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001911#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001912#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001913 if (tIME_chunk_present != 0)
1914 fprintf(STDERR, " tIME = %s\n", tIME_string);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001915#endif /* PNG_TIME_RFC1123_SUPPORTED */
1916 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001917 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001918
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001919 else
1920 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001921 if (verbose == 0 && i != 2)
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001922 fprintf(STDERR, "\n Testing %s:", inname);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001923
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001924 fprintf(STDERR, " FAIL\n");
1925 ierror += kerror;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001926 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001927#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001928 if (allocation_now != current_allocation)
1929 fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001930 current_allocation - allocation_now);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001931
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001932 if (current_allocation != 0)
1933 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001934 memory_infop pinfo = pinformation;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001935
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001936 fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
1937 current_allocation);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001938
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001939 while (pinfo != NULL)
1940 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001941 fprintf(STDERR, " %lu bytes at %x\n",
1942 (unsigned long)pinfo->size, (unsigned int)pinfo->pointer);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001943 pinfo = pinfo->next;
1944 }
1945 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001946#endif
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001947 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001948#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001949 fprintf(STDERR, " Current memory allocation: %10d bytes\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001950 current_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001951 fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001952 maximum_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001953 fprintf(STDERR, " Total memory allocation: %10d bytes\n",
1954 total_allocation);
1955 fprintf(STDERR, " Number of allocations: %10d\n",
1956 num_allocations);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001957#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001958 }
1959
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001960#ifdef PNGTEST_TIMING
1961 t_stop = (float)clock();
1962 t_misc += (t_stop - t_start);
1963 t_start = t_stop;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001964 fprintf(STDERR, " CPU time used = %.3f seconds",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001965 (t_misc+t_decode+t_encode)/(float)CLOCKS_PER_SEC);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001966 fprintf(STDERR, " (decoding %.3f,\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001967 t_decode/(float)CLOCKS_PER_SEC);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001968 fprintf(STDERR, " encoding %.3f ,",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001969 t_encode/(float)CLOCKS_PER_SEC);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001970 fprintf(STDERR, " other %.3f seconds)\n\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001971 t_misc/(float)CLOCKS_PER_SEC);
1972#endif
1973
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001974 if (ierror == 0)
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001975 fprintf(STDERR, " libpng passes test\n");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001976
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001977 else
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001978 fprintf(STDERR, " libpng FAILS test\n");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001979
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001980 return (int)(ierror != 0);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001981}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001982#else
1983int
1984main(void)
1985{
1986 fprintf(STDERR,
1987 " test ignored because libpng was not built with read support\n");
John Bowlere4413a72013-04-17 21:27:47 -05001988 /* And skip this test */
John Bowlera8472472013-12-29 10:50:51 -06001989 return PNG_LIBPNG_VER < 10600 ? 0 : 77;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001990}
1991#endif
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001992
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001993/* Generate a compiler error if there is an old png.h in the search path. */
Glenn Randers-Pehrsonff3fb082014-06-07 08:38:21 -05001994typedef png_libpng_version_1_6_12rc02 Your_png_h_is_not_version_1_6_12rc02;