blob: 44e644a6515f2bae7e78cf9e15d5b0441f5a1b8f [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-Pehrsonebba0742014-10-25 12:22:39 -05004 * Last changed in libpng 1.6.15 [(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-Pehrson5d713fe2014-10-31 20:48:55 -0500286 if (row_info->color_type > 3)
287 color_channels--;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600288
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500289 for (n = 0, nstop=row_info->width; n<nstop; n++)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600290 {
291 for (channel = 0; channel < color_channels; channel++)
292 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500293 if (row_info->bit_depth == 8)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500294 if (*dp++ == 0)
295 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500296
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500297 if (row_info->bit_depth == 16)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600298 {
Glenn Randers-Pehrsond8eb62f2009-05-30 20:19:20 -0500299 if ((*dp | *(dp+1)) == 0)
300 zero_samples++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500301
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600302 dp+=2;
303 }
304 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500305 if (row_info->color_type > 3)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600306 {
307 dp++;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500308 if (row_info->bit_depth == 16)
309 dp++;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600310 }
311 }
312 }
313}
Glenn Randers-Pehrson38d73af1998-03-07 21:30:44 -0600314#endif /* PNG_WRITE_USER_TRANSFORM_SUPPORTED */
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600315
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500316#ifndef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600317/* START of code to validate stdio-free compilation */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500318/* These copies of the default read/write functions come from pngrio.c and
319 * pngwio.c. They allow "don't include stdio" testing of the library.
320 * This is the function that does the actual reading of data. If you are
321 * not reading from a standard C stream, you should create a replacement
322 * read_data function and use it at run time with png_set_read_fn(), rather
323 * than changing the library.
324 */
Glenn Randers-Pehrsonbe9de0f2001-01-22 08:52:16 -0600325
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600326#ifdef PNG_IO_STATE_SUPPORTED
327void
328pngtest_check_io_state(png_structp png_ptr, png_size_t data_length,
329 png_uint_32 io_op);
330void
331pngtest_check_io_state(png_structp png_ptr, png_size_t data_length,
332 png_uint_32 io_op)
333{
334 png_uint_32 io_state = png_get_io_state(png_ptr);
335 int err = 0;
336
337 /* Check if the current operation (reading / writing) is as expected. */
338 if ((io_state & PNG_IO_MASK_OP) != io_op)
339 png_error(png_ptr, "Incorrect operation in I/O state");
340
341 /* Check if the buffer size specific to the current location
342 * (file signature / header / data / crc) is as expected.
343 */
344 switch (io_state & PNG_IO_MASK_LOC)
345 {
346 case PNG_IO_SIGNATURE:
347 if (data_length > 8)
348 err = 1;
349 break;
350 case PNG_IO_CHUNK_HDR:
351 if (data_length != 8)
352 err = 1;
353 break;
354 case PNG_IO_CHUNK_DATA:
355 break; /* no restrictions here */
356 case PNG_IO_CHUNK_CRC:
357 if (data_length != 4)
358 err = 1;
359 break;
360 default:
361 err = 1; /* uninitialized */
362 }
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600363 if (err != 0)
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600364 png_error(png_ptr, "Bad I/O state or buffer size");
365}
366#endif
367
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600368static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500369pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600370{
Glenn Randers-Pehrsona0e0c6c2010-01-01 18:31:26 -0600371 png_size_t check = 0;
372 png_voidp io_ptr;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600373
374 /* fread() returns 0 on error, so it is OK to store this in a png_size_t
375 * instead of an int, which is what fread() actually returns.
376 */
Glenn Randers-Pehrsona0e0c6c2010-01-01 18:31:26 -0600377 io_ptr = png_get_io_ptr(png_ptr);
378 if (io_ptr != NULL)
379 {
380 check = fread(data, 1, length, (png_FILE_p)io_ptr);
381 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500382
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600383 if (check != length)
384 {
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600385 png_error(png_ptr, "Read Error");
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600386 }
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600387
388#ifdef PNG_IO_STATE_SUPPORTED
389 pngtest_check_io_state(png_ptr, length, PNG_IO_READING);
390#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600391}
Guy Schalnat0d580581995-07-20 02:43:20 -0500392
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500393#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600394static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500395pngtest_flush(png_structp png_ptr)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600396{
Glenn Randers-Pehrson8fb550c2009-03-21 08:15:32 -0500397 /* Do nothing; fflush() is said to be just a waste of energy. */
Glenn Randers-Pehrsond546f432010-12-04 20:41:36 -0600398 PNG_UNUSED(png_ptr) /* Stifle compiler warning */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600399}
400#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500401
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500402/* 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 -0500403 * not writing to a standard C stream, you should create a replacement
404 * write_data function and use it at run time with png_set_write_fn(), rather
405 * than changing the library.
406 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600407static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500408pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600409{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500410 png_size_t check;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600411
Glenn Randers-Pehrson526a6ad2010-03-11 05:42:20 -0600412 check = fwrite(data, 1, length, (png_FILE_p)png_get_io_ptr(png_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500413
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600414 if (check != length)
415 {
416 png_error(png_ptr, "Write Error");
417 }
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600418
419#ifdef PNG_IO_STATE_SUPPORTED
420 pngtest_check_io_state(png_ptr, length, PNG_IO_WRITING);
421#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600422}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600423#endif /* !PNG_STDIO_SUPPORTED */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600424
425/* This function is called when there is a warning, but the library thinks
426 * it can continue anyway. Replacement functions don't have to do anything
427 * here if you don't want to. In the default configuration, png_ptr is
428 * not used, but it is passed in case it may be useful.
429 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600430typedef struct
431{
432 PNG_CONST char *file_name;
433} pngtest_error_parameters;
434
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600435static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500436pngtest_warning(png_structp png_ptr, png_const_charp message)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600437{
438 PNG_CONST char *name = "UNKNOWN (ERROR!)";
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600439 pngtest_error_parameters *test =
440 (pngtest_error_parameters*)png_get_error_ptr(png_ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500441
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600442 ++warning_count;
John Bowlerad5a9932012-08-10 13:15:07 -0500443
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600444 if (test != NULL && test->file_name != NULL)
445 name = test->file_name;
446
447 fprintf(STDERR, "%s: libpng warning: %s\n", name, message);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600448}
449
450/* This is the default error handling function. Note that replacements for
451 * this function MUST NOT RETURN, or the program will likely crash. This
452 * function is used by default, or if the program supplies NULL for the
453 * error function pointer in png_set_error_fn().
454 */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600455static void PNGCBAPI
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500456pngtest_error(png_structp png_ptr, png_const_charp message)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600457{
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600458 ++error_count;
459
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500460 pngtest_warning(png_ptr, message);
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500461 /* We can return because png_error calls the default handler, which is
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500462 * actually OK in this case.
463 */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600464}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600465
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600466/* END of code to validate stdio-free compilation */
467
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600468/* START of code to validate memory allocation and deallocation */
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -0500469#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600470
471/* Allocate memory. For reasonable files, size should never exceed
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500472 * 64K. However, zlib may allocate more then 64K if you don't tell
473 * it not to. See zconf.h and png.h for more information. zlib does
474 * need to allocate exactly 64K, so whatever you call here must
475 * have the ability to do that.
476 *
477 * This piece of code can be compiled to validate max 64K allocations
478 * by setting MAXSEG_64K in zlib zconf.h *or* PNG_MAX_MALLOC_64K.
479 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600480typedef struct memory_information
481{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500482 png_alloc_size_t size;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500483 png_voidp pointer;
John Bowlerbaeb6d12011-11-26 18:21:02 -0600484 struct memory_information *next;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600485} memory_information;
John Bowlerbaeb6d12011-11-26 18:21:02 -0600486typedef memory_information *memory_infop;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600487
488static memory_infop pinformation = NULL;
489static int current_allocation = 0;
490static int maximum_allocation = 0;
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500491static int total_allocation = 0;
492static int num_allocations = 0;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600493
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600494png_voidp PNGCBAPI png_debug_malloc PNGARG((png_structp png_ptr,
495 png_alloc_size_t size));
496void PNGCBAPI png_debug_free PNGARG((png_structp png_ptr, png_voidp ptr));
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600497
498png_voidp
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600499PNGCBAPI png_debug_malloc(png_structp png_ptr, png_alloc_size_t size)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600500{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500501
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500502 /* png_malloc has already tested for NULL; png_create_struct calls
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500503 * png_debug_malloc directly, with png_ptr == NULL which is OK
504 */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500505
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600506 if (size == 0)
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500507 return (NULL);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600508
509 /* This calls the library allocator twice, once to get the requested
510 buffer and once to get a new free list entry. */
511 {
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500512 /* Disable malloc_fn and free_fn */
Glenn Randers-Pehrson36d7bc72004-08-10 06:55:02 -0500513 memory_infop pinfo;
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500514 png_set_mem_fn(png_ptr, NULL, NULL, NULL);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500515 pinfo = (memory_infop)png_malloc(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600516 (sizeof *pinfo));
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600517 pinfo->size = size;
518 current_allocation += size;
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500519 total_allocation += size;
520 num_allocations ++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500521
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600522 if (current_allocation > maximum_allocation)
523 maximum_allocation = current_allocation;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500524
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500525 pinfo->pointer = png_malloc(png_ptr, size);
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500526 /* Restore malloc_fn and free_fn */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500527
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500528 png_set_mem_fn(png_ptr,
529 NULL, png_debug_malloc, png_debug_free);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500530
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500531 if (size != 0 && pinfo->pointer == NULL)
532 {
533 current_allocation -= size;
534 total_allocation -= size;
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -0500535 png_error(png_ptr,
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500536 "out of memory in pngtest->png_debug_malloc");
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500537 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500538
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600539 pinfo->next = pinformation;
540 pinformation = pinfo;
541 /* Make sure the caller isn't assuming zeroed memory. */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600542 memset(pinfo->pointer, 0xdd, pinfo->size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500543
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600544 if (verbose != 0)
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600545 printf("png_malloc %lu bytes at %p\n", (unsigned long)size,
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500546 pinfo->pointer);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500547
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600548 return (png_voidp)(pinfo->pointer);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600549 }
550}
551
552/* Free a pointer. It is removed from the list at the same time. */
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600553void PNGCBAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500554png_debug_free(png_structp png_ptr, png_voidp ptr)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600555{
556 if (png_ptr == NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500557 fprintf(STDERR, "NULL pointer to png_debug_free.\n");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500558
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600559 if (ptr == 0)
560 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600561#if 0 /* This happens all the time. */
562 fprintf(STDERR, "WARNING: freeing NULL pointer\n");
563#endif
564 return;
565 }
566
567 /* Unlink the element from the list. */
568 {
John Bowlerbaeb6d12011-11-26 18:21:02 -0600569 memory_infop *ppinfo = &pinformation;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500570
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600571 for (;;)
572 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600573 memory_infop pinfo = *ppinfo;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500574
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600575 if (pinfo->pointer == ptr)
576 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600577 *ppinfo = pinfo->next;
578 current_allocation -= pinfo->size;
579 if (current_allocation < 0)
580 fprintf(STDERR, "Duplicate free of memory\n");
581 /* We must free the list element too, but first kill
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500582 the memory that is to be freed. */
John Bowlerbaeb6d12011-11-26 18:21:02 -0600583 memset(ptr, 0x55, pinfo->size);
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600584 if (pinfo != NULL)
Glenn Randers-Pehrson83b132f2013-11-28 14:00:04 -0600585 free(pinfo);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500586 pinfo = NULL;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600587 break;
588 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500589
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600590 if (pinfo->next == NULL)
591 {
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -0500592 fprintf(STDERR, "Pointer %p not found\n", ptr);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600593 break;
594 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500595
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600596 ppinfo = &pinfo->next;
597 }
598 }
599
600 /* Finally free the data. */
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600601 if (verbose != 0)
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600602 printf("Freeing %p\n", ptr);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500603
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600604 if (ptr != NULL)
Glenn Randers-Pehrson83b132f2013-11-28 14:00:04 -0600605 free(ptr);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500606 ptr = NULL;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600607}
Glenn Randers-Pehrsond029a752004-08-09 21:50:32 -0500608#endif /* PNG_USER_MEM_SUPPORTED && PNG_DEBUG */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600609/* END of code to test memory allocation/deallocation */
610
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500611
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600612#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500613/* Demonstration of user chunk support of the sTER and vpAg chunks */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500614
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500615/* (sTER is a public chunk not yet known by libpng. vpAg is a private
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500616chunk used in ImageMagick to store "virtual page" size). */
617
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600618static struct user_chunk_data
619{
620 png_const_infop info_ptr;
621 png_uint_32 vpAg_width, vpAg_height;
622 png_byte vpAg_units;
623 png_byte sTER_mode;
624 int location[2];
625}
626user_chunk_data;
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500627
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600628/* Used for location and order; zero means nothing. */
629#define have_sTER 0x01
630#define have_vpAg 0x02
631#define before_PLTE 0x10
632#define before_IDAT 0x20
633#define after_IDAT 0x40
634
635static void
636init_callback_info(png_const_infop info_ptr)
637{
638 MEMZERO(user_chunk_data);
639 user_chunk_data.info_ptr = info_ptr;
640}
641
642static int
643set_location(png_structp png_ptr, struct user_chunk_data *data, int what)
644{
645 int location;
646
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -0500647 if ((data->location[0] & what) != 0 || (data->location[1] & what) != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600648 return 0; /* already have one of these */
649
Glenn Randers-Pehrson6cae24c2014-10-13 11:11:21 -0500650 /* Find where we are (the code below zeroes info_ptr to indicate that the
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600651 * chunks before the first IDAT have been read.)
652 */
653 if (data->info_ptr == NULL) /* after IDAT */
654 location = what | after_IDAT;
655
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -0500656 else if (png_get_valid(png_ptr, data->info_ptr, PNG_INFO_PLTE) != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600657 location = what | before_IDAT;
658
659 else
660 location = what | before_PLTE;
661
662 if (data->location[0] == 0)
663 data->location[0] = location;
664
665 else
666 data->location[1] = location;
667
668 return 1; /* handled */
669}
John Bowler3c1f6982012-08-16 20:47:34 -0500670
Glenn Randers-Pehrson24afd072014-03-05 16:55:19 -0600671static int PNGCBAPI
Glenn Randers-Pehrsonc9786422014-03-05 17:14:16 -0600672read_user_chunk_callback(png_struct *png_ptr, png_unknown_chunkp chunk)
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500673{
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600674 struct user_chunk_data *my_user_chunk_data =
675 (struct user_chunk_data*)png_get_user_chunk_ptr(png_ptr);
676
677 if (my_user_chunk_data == NULL)
678 png_error(png_ptr, "lost user chunk pointer");
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500679
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500680 /* Return one of the following:
681 * return (-n); chunk had an error
682 * return (0); did not recognize
683 * return (n); success
684 *
685 * The unknown chunk structure contains the chunk data:
686 * png_byte name[5];
687 * png_byte *data;
688 * png_size_t size;
689 *
690 * Note that libpng has already taken care of the CRC handling.
691 */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500692
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500693 if (chunk->name[0] == 115 && chunk->name[1] == 84 && /* s T */
694 chunk->name[2] == 69 && chunk->name[3] == 82) /* E R */
695 {
696 /* Found sTER chunk */
697 if (chunk->size != 1)
698 return (-1); /* Error return */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500699
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500700 if (chunk->data[0] != 0 && chunk->data[0] != 1)
701 return (-1); /* Invalid mode */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500702
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -0500703 if (set_location(png_ptr, my_user_chunk_data, have_sTER) != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600704 {
705 my_user_chunk_data->sTER_mode=chunk->data[0];
706 return (1);
707 }
708
709 else
710 return (0); /* duplicate sTER - give it to libpng */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500711 }
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500712
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500713 if (chunk->name[0] != 118 || chunk->name[1] != 112 || /* v p */
714 chunk->name[2] != 65 || chunk->name[3] != 103) /* A g */
715 return (0); /* Did not recognize */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500716
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500717 /* Found ImageMagick vpAg chunk */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500718
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500719 if (chunk->size != 9)
720 return (-1); /* Error return */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500721
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -0500722 if (set_location(png_ptr, my_user_chunk_data, have_vpAg) == 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600723 return (0); /* duplicate vpAg */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500724
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600725 my_user_chunk_data->vpAg_width = png_get_uint_31(png_ptr, chunk->data);
726 my_user_chunk_data->vpAg_height = png_get_uint_31(png_ptr, chunk->data + 4);
727 my_user_chunk_data->vpAg_units = chunk->data[8];
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500728
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500729 return (1);
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500730}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600731
732#ifdef PNG_WRITE_SUPPORTED
733static void
734write_sTER_chunk(png_structp write_ptr)
735{
John Bowlera8472472013-12-29 10:50:51 -0600736 png_byte sTER[5] = {115, 84, 69, 82, '\0'};
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600737
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600738 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600739 fprintf(STDERR, "\n stereo mode = %d\n", user_chunk_data.sTER_mode);
740
John Bowlera8472472013-12-29 10:50:51 -0600741 png_write_chunk(write_ptr, sTER, &user_chunk_data.sTER_mode, 1);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600742}
743
744static void
745write_vpAg_chunk(png_structp write_ptr)
746{
John Bowlera8472472013-12-29 10:50:51 -0600747 png_byte vpAg[5] = {118, 112, 65, 103, '\0'};
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600748
749 png_byte vpag_chunk_data[9];
750
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600751 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600752 fprintf(STDERR, " vpAg = %lu x %lu, units = %d\n",
753 (unsigned long)user_chunk_data.vpAg_width,
754 (unsigned long)user_chunk_data.vpAg_height,
755 user_chunk_data.vpAg_units);
756
757 png_save_uint_32(vpag_chunk_data, user_chunk_data.vpAg_width);
758 png_save_uint_32(vpag_chunk_data + 4, user_chunk_data.vpAg_height);
759 vpag_chunk_data[8] = user_chunk_data.vpAg_units;
John Bowlera8472472013-12-29 10:50:51 -0600760 png_write_chunk(write_ptr, vpAg, vpag_chunk_data, 9);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600761}
762
763static void
764write_chunks(png_structp write_ptr, int location)
765{
766 int i;
767
768 /* Notice that this preserves the original chunk order, however chunks
769 * intercepted by the callback will be written *after* chunks passed to
770 * libpng. This will actually reverse a pair of sTER chunks or a pair of
771 * vpAg chunks, resulting in an error later. This is not worth worrying
772 * about - the chunks should not be duplicated!
773 */
774 for (i=0; i<2; ++i)
775 {
776 if (user_chunk_data.location[i] == (location | have_sTER))
777 write_sTER_chunk(write_ptr);
778
779 else if (user_chunk_data.location[i] == (location | have_vpAg))
780 write_vpAg_chunk(write_ptr);
781 }
782}
783#endif /* PNG_WRITE_SUPPORTED */
784#else /* !PNG_READ_USER_CHUNKS_SUPPORTED */
785# define write_chunks(pp,loc) ((void)0)
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500786#endif
787/* END of code to demonstrate user chunk support */
788
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600789/* START of code to check that libpng has the required text support; this only
790 * checks for the write support because if read support is missing the chunk
791 * will simply not be reported back to pngtest.
792 */
793#ifdef PNG_TEXT_SUPPORTED
794static void
795pngtest_check_text_support(png_const_structp png_ptr, png_textp text_ptr,
796 int num_text)
797{
798 while (num_text > 0)
799 {
800 switch (text_ptr[--num_text].compression)
801 {
802 case PNG_TEXT_COMPRESSION_NONE:
803 break;
804
805 case PNG_TEXT_COMPRESSION_zTXt:
806# ifndef PNG_WRITE_zTXt_SUPPORTED
807 ++unsupported_chunks;
808# endif
809 break;
810
811 case PNG_ITXT_COMPRESSION_NONE:
812 case PNG_ITXT_COMPRESSION_zTXt:
813# ifndef PNG_WRITE_iTXt_SUPPORTED
814 ++unsupported_chunks;
815# endif
816 break;
817
818 default:
819 /* This is an error */
820 png_error(png_ptr, "invalid text chunk compression field");
821 break;
822 }
823 }
824}
825#endif
826/* END of code to check that libpng has the required text support */
827
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600828/* Test one file */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600829static int
Glenn Randers-Pehrson7cd899c1998-03-07 16:17:42 -0600830test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
Guy Schalnat0d580581995-07-20 02:43:20 -0500831{
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500832 static png_FILE_p fpin;
833 static png_FILE_p fpout; /* "static" prevents setjmp corruption */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600834 pngtest_error_parameters error_parameters;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500835 png_structp read_ptr;
836 png_infop read_info_ptr, end_info_ptr;
837#ifdef PNG_WRITE_SUPPORTED
838 png_structp write_ptr;
839 png_infop write_info_ptr;
840 png_infop write_end_info_ptr;
John Bowlera8472472013-12-29 10:50:51 -0600841 int interlace_preserved = 1;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500842#else
843 png_structp write_ptr = NULL;
844 png_infop write_info_ptr = NULL;
845 png_infop write_end_info_ptr = NULL;
846#endif
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600847 png_bytep row_buf;
Guy Schalnat0d580581995-07-20 02:43:20 -0500848 png_uint_32 y;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500849 png_uint_32 width, height;
John Bowlera8472472013-12-29 10:50:51 -0600850 int num_pass = 1, pass;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500851 int bit_depth, color_type;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600852
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500853 row_buf = NULL;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600854 error_parameters.file_name = inname;
Guy Schalnat0d580581995-07-20 02:43:20 -0500855
Andreas Dilger47a0c421997-05-16 02:46:07 -0500856 if ((fpin = fopen(inname, "rb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -0600857 {
858 fprintf(STDERR, "Could not find input file %s\n", inname);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600859 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600860 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500861
Andreas Dilger47a0c421997-05-16 02:46:07 -0500862 if ((fpout = fopen(outname, "wb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -0600863 {
Guy Schalnate5a37791996-06-05 15:50:50 -0500864 fprintf(STDERR, "Could not open output file %s\n", outname);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500865 FCLOSE(fpin);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600866 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600867 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500868
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600869 pngtest_debug("Allocating read and write structures");
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -0500870#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500871 read_ptr =
872 png_create_read_struct_2(PNG_LIBPNG_VER_STRING, NULL,
Glenn Randers-Pehrsond7da8bb2010-03-13 20:30:10 -0600873 NULL, NULL, NULL, png_debug_malloc, png_debug_free);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500874#else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500875 read_ptr =
876 png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500877#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600878 png_set_error_fn(read_ptr, &error_parameters, pngtest_error,
879 pngtest_warning);
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -0500880
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500881#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -0500882#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500883 write_ptr =
884 png_create_write_struct_2(PNG_LIBPNG_VER_STRING, NULL,
885 NULL, NULL, NULL, png_debug_malloc, png_debug_free);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500886#else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500887 write_ptr =
888 png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500889#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600890 png_set_error_fn(write_ptr, &error_parameters, pngtest_error,
891 pngtest_warning);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500892#endif
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600893 pngtest_debug("Allocating read_info, write_info and end_info structures");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500894 read_info_ptr = png_create_info_struct(read_ptr);
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500895 end_info_ptr = png_create_info_struct(read_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500896#ifdef PNG_WRITE_SUPPORTED
897 write_info_ptr = png_create_info_struct(write_ptr);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500898 write_end_info_ptr = png_create_info_struct(write_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500899#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500900
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600901#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
902 init_callback_info(read_info_ptr);
903 png_set_read_user_chunk_fn(read_ptr, &user_chunk_data,
904 read_user_chunk_callback);
905#endif
906
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600907#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600908 pngtest_debug("Setting jmpbuf for read struct");
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600909 if (setjmp(png_jmpbuf(read_ptr)))
Guy Schalnat0f716451995-11-28 11:22:13 -0600910 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600911 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500912 png_free(read_ptr, row_buf);
913 row_buf = NULL;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500914 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500915#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500916 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500917 png_destroy_write_struct(&write_ptr, &write_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500918#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500919 FCLOSE(fpin);
920 FCLOSE(fpout);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600921 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600922 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500923
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500924#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600925 pngtest_debug("Setting jmpbuf for write struct");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500926
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600927 if (setjmp(png_jmpbuf(write_ptr)))
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600928 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600929 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500930 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500931 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500932#ifdef PNG_WRITE_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500933 png_destroy_write_struct(&write_ptr, &write_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500934#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500935 FCLOSE(fpin);
936 FCLOSE(fpout);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600937 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -0600938 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600939#endif
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500940#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600941
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600942 if (strict != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600943 {
944 /* Treat png_benign_error() as errors on read */
945 png_set_benign_errors(read_ptr, 0);
946
947#ifdef PNG_WRITE_SUPPORTED
948 /* Treat them as errors on write */
949 png_set_benign_errors(write_ptr, 0);
950#endif
951
952 /* if strict is not set, then app warnings and errors are treated as
953 * warnings in release builds, but not in unstable builds; this can be
954 * changed with '--relaxed'.
955 */
956 }
957
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -0600958 else if (relaxed != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600959 {
960 /* Allow application (pngtest) errors and warnings to pass */
961 png_set_benign_errors(read_ptr, 1);
962
963#ifdef PNG_WRITE_SUPPORTED
964 png_set_benign_errors(write_ptr, 1);
965#endif
966 }
967
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -0600968 pngtest_debug("Initializing input and output streams");
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500969#ifdef PNG_STDIO_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500970 png_init_io(read_ptr, fpin);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500971# ifdef PNG_WRITE_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -0500972 png_init_io(write_ptr, fpout);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500973# endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600974#else
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500975 png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500976# ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500977 png_set_write_fn(write_ptr, (png_voidp)fpout, pngtest_write_data,
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500978# ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500979 pngtest_flush);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500980# else
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600981 NULL);
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500982# endif
983# endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600984#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500985
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500986 if (status_dots_requested == 1)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600987 {
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500988#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600989 png_set_write_status_fn(write_ptr, write_row_callback);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500990#endif
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600991 png_set_read_status_fn(read_ptr, read_row_callback);
992 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500993
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600994 else
995 {
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500996#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500997 png_set_write_status_fn(write_ptr, NULL);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500998#endif
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500999 png_set_read_status_fn(read_ptr, NULL);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001000 }
1001
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001002#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001003 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001004 int i;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001005
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001006 for (i = 0; i<256; i++)
1007 filters_used[i] = 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001008
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001009 png_set_read_user_transform_fn(read_ptr, count_filters);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001010 }
1011#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001012#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001013 zero_samples = 0;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001014 png_set_write_user_transform_fn(write_ptr, count_zero_samples);
1015#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001016
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001017#ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
1018 /* Preserve all the unknown chunks, if possible. If this is disabled then,
1019 * even if the png_{get,set}_unknown_chunks stuff is enabled, we can't use
1020 * libpng to *save* the unknown chunks on read (because we can't switch the
1021 * save option on!)
1022 *
1023 * Notice that if SET_UNKNOWN_CHUNKS is *not* supported read will discard all
1024 * unknown chunks and write will write them all.
1025 */
1026#ifdef PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001027 png_set_keep_unknown_chunks(read_ptr, PNG_HANDLE_CHUNK_ALWAYS,
1028 NULL, 0);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001029#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001030#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001031 png_set_keep_unknown_chunks(write_ptr, PNG_HANDLE_CHUNK_ALWAYS,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001032 NULL, 0);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001033#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001034#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001035
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001036 pngtest_debug("Reading info struct");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001037 png_read_info(read_ptr, read_info_ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -05001038
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001039#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1040 /* This is a bit of a hack; there is no obvious way in the callback function
1041 * to determine that the chunks before the first IDAT have been read, so
1042 * remove the info_ptr (which is only used to determine position relative to
1043 * PLTE) here to indicate that we are after the IDAT.
1044 */
1045 user_chunk_data.info_ptr = NULL;
1046#endif
1047
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001048 pngtest_debug("Transferring info struct");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001049 {
1050 int interlace_type, compression_type, filter_type;
Guy Schalnat0d580581995-07-20 02:43:20 -05001051
Andreas Dilger47a0c421997-05-16 02:46:07 -05001052 if (png_get_IHDR(read_ptr, read_info_ptr, &width, &height, &bit_depth,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001053 &color_type, &interlace_type, &compression_type, &filter_type) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001054 {
1055 png_set_IHDR(write_ptr, write_info_ptr, width, height, bit_depth,
1056 color_type, interlace_type, compression_type, filter_type);
John Bowlera8472472013-12-29 10:50:51 -06001057#ifndef PNG_READ_INTERLACING_SUPPORTED
1058 /* num_pass will not be set below, set it here if the image is
1059 * interlaced: what happens is that write interlacing is *not* turned
1060 * on an the partial interlaced rows are written directly.
1061 */
1062 switch (interlace_type)
1063 {
1064 case PNG_INTERLACE_NONE:
1065 num_pass = 1;
1066 break;
1067
1068 case PNG_INTERLACE_ADAM7:
1069 num_pass = 7;
1070 break;
1071
1072 default:
1073 png_error(read_ptr, "invalid interlace type");
1074 /*NOT REACHED*/
1075 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001076#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001077 }
1078 }
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001079#ifdef PNG_FIXED_POINT_SUPPORTED
1080#ifdef PNG_cHRM_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001081 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001082 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 -06001083 blue_y;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001084
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001085 if (png_get_cHRM_fixed(read_ptr, read_info_ptr, &white_x, &white_y,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001086 &red_x, &red_y, &green_x, &green_y, &blue_x, &blue_y) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001087 {
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001088 png_set_cHRM_fixed(write_ptr, write_info_ptr, white_x, white_y, red_x,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001089 red_y, green_x, green_y, blue_x, blue_y);
1090 }
1091 }
1092#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001093#ifdef PNG_gAMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001094 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001095 png_fixed_point gamma;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001096
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001097 if (png_get_gAMA_fixed(read_ptr, read_info_ptr, &gamma) != 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001098 png_set_gAMA_fixed(write_ptr, write_info_ptr, gamma);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001099 }
1100#endif
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001101#else /* Use floating point versions */
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -05001102#ifdef PNG_FLOATING_POINT_SUPPORTED
1103#ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001104 {
1105 double white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
1106 blue_y;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001107
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001108 if (png_get_cHRM(read_ptr, read_info_ptr, &white_x, &white_y, &red_x,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001109 &red_y, &green_x, &green_y, &blue_x, &blue_y) != 0)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001110 {
1111 png_set_cHRM(write_ptr, write_info_ptr, white_x, white_y, red_x,
1112 red_y, green_x, green_y, blue_x, blue_y);
1113 }
1114 }
1115#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001116#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001117 {
1118 double gamma;
1119
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001120 if (png_get_gAMA(read_ptr, read_info_ptr, &gamma) != 0)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001121 png_set_gAMA(write_ptr, write_info_ptr, gamma);
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001122 }
1123#endif
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001124#endif /* Floating point */
1125#endif /* Fixed point */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001126#ifdef PNG_iCCP_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001127 {
1128 png_charp name;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001129 png_bytep profile;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001130 png_uint_32 proflen;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001131 int compression_type;
1132
1133 if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001134 &profile, &proflen) != 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001135 {
1136 png_set_iCCP(write_ptr, write_info_ptr, name, compression_type,
1137 profile, proflen);
1138 }
1139 }
1140#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001141#ifdef PNG_sRGB_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001142 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001143 int intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001144
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001145 if (png_get_sRGB(read_ptr, read_info_ptr, &intent) != 0)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001146 png_set_sRGB(write_ptr, write_info_ptr, intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001147 }
1148#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001149 {
1150 png_colorp palette;
1151 int num_palette;
1152
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001153 if (png_get_PLTE(read_ptr, read_info_ptr, &palette, &num_palette) != 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001154 png_set_PLTE(write_ptr, write_info_ptr, palette, num_palette);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001155 }
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001156#ifdef PNG_bKGD_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001157 {
1158 png_color_16p background;
1159
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001160 if (png_get_bKGD(read_ptr, read_info_ptr, &background) != 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001161 {
1162 png_set_bKGD(write_ptr, write_info_ptr, background);
1163 }
1164 }
1165#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001166#ifdef PNG_hIST_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001167 {
1168 png_uint_16p hist;
1169
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001170 if (png_get_hIST(read_ptr, read_info_ptr, &hist) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001171 png_set_hIST(write_ptr, write_info_ptr, hist);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001172 }
1173#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001174#ifdef PNG_oFFs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001175 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001176 png_int_32 offset_x, offset_y;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001177 int unit_type;
1178
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001179 if (png_get_oFFs(read_ptr, read_info_ptr, &offset_x, &offset_y,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001180 &unit_type) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001181 {
1182 png_set_oFFs(write_ptr, write_info_ptr, offset_x, offset_y, unit_type);
1183 }
1184 }
1185#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001186#ifdef PNG_pCAL_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001187 {
1188 png_charp purpose, units;
1189 png_charpp params;
1190 png_int_32 X0, X1;
1191 int type, nparams;
1192
1193 if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001194 &nparams, &units, &params) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001195 {
1196 png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type,
1197 nparams, units, params);
1198 }
1199 }
1200#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001201#ifdef PNG_pHYs_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001202 {
1203 png_uint_32 res_x, res_y;
1204 int unit_type;
1205
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001206 if (png_get_pHYs(read_ptr, read_info_ptr, &res_x, &res_y,
1207 &unit_type) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001208 png_set_pHYs(write_ptr, write_info_ptr, res_x, res_y, unit_type);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001209 }
1210#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001211#ifdef PNG_sBIT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001212 {
1213 png_color_8p sig_bit;
1214
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001215 if (png_get_sBIT(read_ptr, read_info_ptr, &sig_bit) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001216 png_set_sBIT(write_ptr, write_info_ptr, sig_bit);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001217 }
1218#endif
Glenn Randers-Pehrson9c1bb202009-09-17 10:55:49 -05001219#ifdef PNG_sCAL_SUPPORTED
Glenn Randers-Pehrson8d9e4942013-04-18 07:23:59 -05001220#if defined(PNG_FLOATING_POINT_SUPPORTED) && \
1221 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001222 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001223 int unit;
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001224 double scal_width, scal_height;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001225
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001226 if (png_get_sCAL(read_ptr, read_info_ptr, &unit, &scal_width,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001227 &scal_height) != 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001228 {
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001229 png_set_sCAL(write_ptr, write_info_ptr, unit, scal_width, scal_height);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001230 }
1231 }
1232#else
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001233#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001234 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001235 int unit;
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001236 png_charp scal_width, scal_height;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001237
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -05001238 if (png_get_sCAL_s(read_ptr, read_info_ptr, &unit, &scal_width,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001239 &scal_height) != 0)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001240 {
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001241 png_set_sCAL_s(write_ptr, write_info_ptr, unit, scal_width,
1242 scal_height);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001243 }
1244 }
1245#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001246#endif
1247#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001248#ifdef PNG_TEXT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001249 {
1250 png_textp text_ptr;
1251 int num_text;
1252
1253 if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
1254 {
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001255 pngtest_debug1("Handling %d iTXt/tEXt/zTXt chunks", num_text);
Glenn Randers-Pehrson15ea1fa2011-11-23 15:28:01 -06001256
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001257 pngtest_check_text_support(read_ptr, text_ptr, num_text);
1258
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001259 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001260 {
1261 int i;
1262
1263 printf("\n");
1264 for (i=0; i<num_text; i++)
1265 {
1266 printf(" Text compression[%d]=%d\n",
1267 i, text_ptr[i].compression);
1268 }
1269 }
Glenn Randers-Pehrson15ea1fa2011-11-23 15:28:01 -06001270
Andreas Dilger47a0c421997-05-16 02:46:07 -05001271 png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
1272 }
1273 }
1274#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001275#ifdef PNG_tIME_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001276 {
1277 png_timep mod_time;
1278
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001279 if (png_get_tIME(read_ptr, read_info_ptr, &mod_time) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001280 {
1281 png_set_tIME(write_ptr, write_info_ptr, mod_time);
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001282#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001283 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001284 tIME_string[(sizeof tIME_string) - 1] = '\0';
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001285
John Bowler40b26032011-12-22 08:09:15 -06001286 else
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001287 {
1288 strncpy(tIME_string, "*** invalid time ***", (sizeof tIME_string));
1289 tIME_string[(sizeof tIME_string) - 1] = '\0';
1290 }
John Bowler40b26032011-12-22 08:09:15 -06001291
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001292 tIME_chunk_present++;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001293#endif /* PNG_TIME_RFC1123_SUPPORTED */
Glenn Randers-Pehrsonc9442291999-01-06 21:50:16 -06001294 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001295 }
1296#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001297#ifdef PNG_tRNS_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001298 {
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001299 png_bytep trans_alpha;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001300 int num_trans;
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -05001301 png_color_16p trans_color;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001302
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001303 if (png_get_tRNS(read_ptr, read_info_ptr, &trans_alpha, &num_trans,
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001304 &trans_color) != 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001305 {
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001306 int sample_max = (1 << bit_depth);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001307 /* libpng doesn't reject a tRNS chunk with out-of-range samples */
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001308 if (!((color_type == PNG_COLOR_TYPE_GRAY &&
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001309 (int)trans_color->gray > sample_max) ||
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001310 (color_type == PNG_COLOR_TYPE_RGB &&
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001311 ((int)trans_color->red > sample_max ||
1312 (int)trans_color->green > sample_max ||
1313 (int)trans_color->blue > sample_max))))
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001314 png_set_tRNS(write_ptr, write_info_ptr, trans_alpha, num_trans,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001315 trans_color);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001316 }
1317 }
1318#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001319#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001320 {
1321 png_unknown_chunkp unknowns;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001322 int num_unknowns = png_get_unknown_chunks(read_ptr, read_info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001323 &unknowns);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001324
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001325 if (num_unknowns != 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001326 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001327 png_set_unknown_chunks(write_ptr, write_info_ptr, unknowns,
1328 num_unknowns);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001329#if PNG_LIBPNG_VER < 10600
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001330 /* Copy the locations from the read_info_ptr. The automatically
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001331 * generated locations in write_end_info_ptr are wrong prior to 1.6.0
1332 * because they are reset from the write pointer (removed in 1.6.0).
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001333 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001334 {
1335 int i;
1336 for (i = 0; i < num_unknowns; i++)
1337 png_set_unknown_chunk_location(write_ptr, write_info_ptr, i,
1338 unknowns[i].location);
1339 }
1340#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001341 }
1342 }
1343#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001344
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001345#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001346 pngtest_debug("Writing info struct");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001347
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001348 /* Write the info in two steps so that if we write the 'unknown' chunks here
1349 * they go to the correct place.
1350 */
1351 png_write_info_before_PLTE(write_ptr, write_info_ptr);
1352
1353 write_chunks(write_ptr, before_PLTE); /* before PLTE */
1354
Andreas Dilger47a0c421997-05-16 02:46:07 -05001355 png_write_info(write_ptr, write_info_ptr);
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -05001356
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001357 write_chunks(write_ptr, before_IDAT); /* after PLTE */
Glenn Randers-Pehrsond1209962006-06-21 19:40:52 -05001358#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001359
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001360#ifdef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001361 pngtest_debug("Allocating row buffer...");
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001362 row_buf = (png_bytep)png_malloc(read_ptr,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001363 png_get_rowbytes(read_ptr, read_info_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001364
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001365 pngtest_debug1("\t0x%08lx", (unsigned long)row_buf);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001366#endif /* SINGLE_ROWBUF_ALLOC */
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001367 pngtest_debug("Writing row data");
Guy Schalnat0d580581995-07-20 02:43:20 -05001368
John Bowlera8472472013-12-29 10:50:51 -06001369#ifdef PNG_READ_INTERLACING_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001370 num_pass = png_set_interlace_handling(read_ptr);
John Bowlera8472472013-12-29 10:50:51 -06001371 if (png_set_interlace_handling(write_ptr) != num_pass)
1372 png_error(write_ptr, "png_set_interlace_handling: inconsistent num_pass");
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001373#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001374
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001375#ifdef PNGTEST_TIMING
1376 t_stop = (float)clock();
1377 t_misc += (t_stop - t_start);
1378 t_start = t_stop;
1379#endif
Guy Schalnat0f716451995-11-28 11:22:13 -06001380 for (pass = 0; pass < num_pass; pass++)
1381 {
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001382 pngtest_debug1("Writing row data for pass %d", pass);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001383 for (y = 0; y < height; y++)
Guy Schalnat0f716451995-11-28 11:22:13 -06001384 {
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001385#ifndef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001386 pngtest_debug2("Allocating row buffer (pass %d, y = %u)...", pass, y);
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001387
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001388 row_buf = (png_bytep)png_malloc(read_ptr,
1389 png_get_rowbytes(read_ptr, read_info_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001390
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001391 pngtest_debug2("\t0x%08lx (%lu bytes)", (unsigned long)row_buf,
1392 (unsigned long)png_get_rowbytes(read_ptr, read_info_ptr));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001393
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001394#endif /* !SINGLE_ROWBUF_ALLOC */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -05001395 png_read_rows(read_ptr, (png_bytepp)&row_buf, NULL, 1);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001396
1397#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001398#ifdef PNGTEST_TIMING
1399 t_stop = (float)clock();
1400 t_decode += (t_stop - t_start);
1401 t_start = t_stop;
1402#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001403 png_write_rows(write_ptr, (png_bytepp)&row_buf, 1);
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001404#ifdef PNGTEST_TIMING
1405 t_stop = (float)clock();
1406 t_encode += (t_stop - t_start);
1407 t_start = t_stop;
1408#endif
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001409#endif /* PNG_WRITE_SUPPORTED */
1410
1411#ifndef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001412 pngtest_debug2("Freeing row buffer (pass %d, y = %u)", pass, y);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001413 png_free(read_ptr, row_buf);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -05001414 row_buf = NULL;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001415#endif /* !SINGLE_ROWBUF_ALLOC */
Guy Schalnat0f716451995-11-28 11:22:13 -06001416 }
1417 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001418
Glenn Randers-Pehrsonb3721752013-09-30 13:56:44 -05001419#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
1420# ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
1421 png_free_data(read_ptr, read_info_ptr, PNG_FREE_UNKN, -1);
1422# endif
1423# ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
1424 png_free_data(write_ptr, write_info_ptr, PNG_FREE_UNKN, -1);
1425# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001426#endif
1427
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001428 pngtest_debug("Reading and writing end_info data");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001429
Andreas Dilger47a0c421997-05-16 02:46:07 -05001430 png_read_end(read_ptr, end_info_ptr);
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001431#ifdef PNG_TEXT_SUPPORTED
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001432 {
1433 png_textp text_ptr;
1434 int num_text;
1435
1436 if (png_get_text(read_ptr, end_info_ptr, &text_ptr, &num_text) > 0)
1437 {
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001438 pngtest_debug1("Handling %d iTXt/tEXt/zTXt chunks", num_text);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001439
1440 pngtest_check_text_support(read_ptr, text_ptr, num_text);
1441
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001442 if (verbose != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001443 {
1444 int i;
1445
1446 printf("\n");
1447 for (i=0; i<num_text; i++)
1448 {
1449 printf(" Text compression[%d]=%d\n",
1450 i, text_ptr[i].compression);
1451 }
1452 }
1453
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001454 png_set_text(write_ptr, write_end_info_ptr, text_ptr, num_text);
1455 }
1456 }
1457#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001458#ifdef PNG_tIME_SUPPORTED
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001459 {
1460 png_timep mod_time;
1461
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001462 if (png_get_tIME(read_ptr, end_info_ptr, &mod_time) != 0)
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001463 {
1464 png_set_tIME(write_ptr, write_end_info_ptr, mod_time);
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001465#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001466 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time) != 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001467 tIME_string[(sizeof tIME_string) - 1] = '\0';
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001468
John Bowler40b26032011-12-22 08:09:15 -06001469 else
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001470 {
1471 strncpy(tIME_string, "*** invalid time ***", sizeof tIME_string);
1472 tIME_string[(sizeof tIME_string)-1] = '\0';
1473 }
John Bowler40b26032011-12-22 08:09:15 -06001474
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001475 tIME_chunk_present++;
1476#endif /* PNG_TIME_RFC1123_SUPPORTED */
1477 }
1478 }
1479#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001480#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001481 {
1482 png_unknown_chunkp unknowns;
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001483 int num_unknowns = png_get_unknown_chunks(read_ptr, end_info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001484 &unknowns);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001485
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001486 if (num_unknowns != 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001487 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001488 png_set_unknown_chunks(write_ptr, write_end_info_ptr, unknowns,
1489 num_unknowns);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001490#if PNG_LIBPNG_VER < 10600
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001491 /* Copy the locations from the read_info_ptr. The automatically
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001492 * generated locations in write_end_info_ptr are wrong prior to 1.6.0
1493 * because they are reset from the write pointer (removed in 1.6.0).
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001494 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001495 {
1496 int i;
1497 for (i = 0; i < num_unknowns; i++)
1498 png_set_unknown_chunk_location(write_ptr, write_end_info_ptr, i,
1499 unknowns[i].location);
1500 }
1501#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001502 }
1503 }
1504#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001505
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001506#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001507#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
1508 /* Normally one would use Z_DEFAULT_STRATEGY for text compression.
1509 * This is here just to make pngtest replicate the results from libpng
1510 * versions prior to 1.5.4, and to test this new API.
1511 */
1512 png_set_text_compression_strategy(write_ptr, Z_FILTERED);
1513#endif
1514
1515 /* When the unknown vpAg/sTER chunks are written by pngtest the only way to
1516 * do it is to write them *before* calling png_write_end. When unknown
1517 * chunks are written by libpng, however, they are written just before IEND.
1518 * There seems to be no way round this, however vpAg/sTER are not expected
1519 * after IDAT.
1520 */
1521 write_chunks(write_ptr, after_IDAT);
1522
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001523 png_write_end(write_ptr, write_end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001524#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001525
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001526#ifdef PNG_EASY_ACCESS_SUPPORTED
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001527 if (verbose != 0)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001528 {
1529 png_uint_32 iwidth, iheight;
1530 iwidth = png_get_image_width(write_ptr, write_info_ptr);
1531 iheight = png_get_image_height(write_ptr, write_info_ptr);
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001532 fprintf(STDERR, "\n Image width = %lu, height = %lu\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001533 (unsigned long)iwidth, (unsigned long)iheight);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001534 }
1535#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001536
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001537 pngtest_debug("Destroying data structs");
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001538#ifdef SINGLE_ROWBUF_ALLOC
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001539 pngtest_debug("destroying row_buf for read_ptr");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001540 png_free(read_ptr, row_buf);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -05001541 row_buf = NULL;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001542#endif /* SINGLE_ROWBUF_ALLOC */
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001543 pngtest_debug("destroying read_ptr, read_info_ptr, end_info_ptr");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001544 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001545#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001546 pngtest_debug("destroying write_end_info_ptr");
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -05001547 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001548 pngtest_debug("destroying write_ptr, write_info_ptr");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001549 png_destroy_write_struct(&write_ptr, &write_info_ptr);
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -05001550#endif
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001551 pngtest_debug("Destruction complete.");
Guy Schalnat0d580581995-07-20 02:43:20 -05001552
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001553 FCLOSE(fpin);
1554 FCLOSE(fpout);
Guy Schalnat0d580581995-07-20 02:43:20 -05001555
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001556 /* Summarize any warnings or errors and in 'strict' mode fail the test.
1557 * Unsupported chunks can result in warnings, in that case ignore the strict
1558 * setting, otherwise fail the test on warnings as well as errors.
1559 */
1560 if (error_count > 0)
1561 {
1562 /* We don't really expect to get here because of the setjmp handling
1563 * above, but this is safe.
1564 */
1565 fprintf(STDERR, "\n %s: %d libpng errors found (%d warnings)",
1566 inname, error_count, warning_count);
1567
1568 if (strict != 0)
1569 return (1);
1570 }
1571
1572# ifdef PNG_WRITE_SUPPORTED
1573 /* If there we no write support nothing was written! */
1574 else if (unsupported_chunks > 0)
1575 {
1576 fprintf(STDERR, "\n %s: unsupported chunks (%d)%s",
1577 inname, unsupported_chunks, strict ? ": IGNORED --strict!" : "");
1578 }
1579# endif
1580
1581 else if (warning_count > 0)
1582 {
1583 fprintf(STDERR, "\n %s: %d libpng warnings found",
1584 inname, warning_count);
1585
1586 if (strict != 0)
1587 return (1);
1588 }
1589
Glenn Randers-Pehrson31f92b02010-03-09 16:47:59 -06001590 pngtest_debug("Opening files for comparison");
Andreas Dilger47a0c421997-05-16 02:46:07 -05001591 if ((fpin = fopen(inname, "rb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -06001592 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001593 fprintf(STDERR, "Could not find file %s\n", inname);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001594 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -06001595 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001596
Andreas Dilger47a0c421997-05-16 02:46:07 -05001597 if ((fpout = fopen(outname, "rb")) == NULL)
Guy Schalnat0f716451995-11-28 11:22:13 -06001598 {
Guy Schalnate5a37791996-06-05 15:50:50 -05001599 fprintf(STDERR, "Could not find file %s\n", outname);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001600 FCLOSE(fpin);
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001601 return (1);
Guy Schalnat0f716451995-11-28 11:22:13 -06001602 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001603
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001604#ifdef PNG_WRITE_SUPPORTED /* else nothing was written */
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001605 if (interlace_preserved != 0) /* else the files will be changed */
Guy Schalnat0f716451995-11-28 11:22:13 -06001606 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001607 for (;;)
Guy Schalnat0f716451995-11-28 11:22:13 -06001608 {
John Bowler81dfd002013-12-01 15:07:09 -06001609 static int wrote_question = 0;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001610 png_size_t num_in, num_out;
1611 char inbuf[256], outbuf[256];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001612
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001613 num_in = fread(inbuf, 1, sizeof inbuf, fpin);
1614 num_out = fread(outbuf, 1, sizeof outbuf, fpout);
1615
1616 if (num_in != num_out)
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001617 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001618 fprintf(STDERR, "\nFiles %s and %s are of a different size\n",
1619 inname, outname);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001620
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001621 if (wrote_question == 0 && unsupported_chunks == 0)
1622 {
1623 fprintf(STDERR,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001624 " Was %s written with the same maximum IDAT chunk size (%d bytes),",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001625 inname, PNG_ZBUF_SIZE);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001626 fprintf(STDERR,
1627 "\n filtering heuristic (libpng default), compression");
1628 fprintf(STDERR,
1629 " level (zlib default),\n and zlib version (%s)?\n\n",
1630 ZLIB_VERSION);
1631 wrote_question = 1;
1632 }
1633
1634 FCLOSE(fpin);
1635 FCLOSE(fpout);
1636
1637 if (strict != 0 && unsupported_chunks == 0)
1638 return (1);
1639
1640 else
1641 return (0);
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001642 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001643
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001644 if (num_in == 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001645 break;
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001646
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001647 if (memcmp(inbuf, outbuf, num_in))
1648 {
1649 fprintf(STDERR, "\nFiles %s and %s are different\n", inname,
1650 outname);
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001651
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001652 if (wrote_question == 0 && unsupported_chunks == 0)
1653 {
1654 fprintf(STDERR,
1655 " Was %s written with the same maximum IDAT chunk size (%d bytes),",
1656 inname, PNG_ZBUF_SIZE);
1657 fprintf(STDERR,
1658 "\n filtering heuristic (libpng default), compression");
1659 fprintf(STDERR,
1660 " level (zlib default),\n and zlib version (%s)?\n\n",
1661 ZLIB_VERSION);
1662 wrote_question = 1;
1663 }
1664
1665 FCLOSE(fpin);
1666 FCLOSE(fpout);
1667
1668 /* NOTE: the unsupported_chunks escape is permitted here because
1669 * unsupported text chunk compression will result in the compression
1670 * mode being changed (to NONE) yet, in the test case, the result
1671 * can be exactly the same size!
1672 */
1673 if (strict != 0 && unsupported_chunks == 0)
1674 return (1);
1675
1676 else
1677 return (0);
1678 }
Guy Schalnat0f716451995-11-28 11:22:13 -06001679 }
1680 }
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001681#endif /* PNG_WRITE_SUPPORTED */
Guy Schalnat0f716451995-11-28 11:22:13 -06001682
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001683 FCLOSE(fpin);
1684 FCLOSE(fpout);
Guy Schalnat0d580581995-07-20 02:43:20 -05001685
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -06001686 return (0);
Guy Schalnat0d580581995-07-20 02:43:20 -05001687}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001688
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001689/* Input and output filenames */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001690#ifdef RISCOS
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001691static PNG_CONST char *inname = "pngtest/png";
1692static PNG_CONST char *outname = "pngout/png";
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001693#else
Glenn Randers-Pehrson983ec161998-03-07 11:24:03 -06001694static PNG_CONST char *inname = "pngtest.png";
1695static PNG_CONST char *outname = "pngout.png";
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001696#endif
1697
1698int
1699main(int argc, char *argv[])
1700{
1701 int multiple = 0;
1702 int ierror = 0;
1703
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001704 fprintf(STDERR, "\n Testing libpng version %s\n", PNG_LIBPNG_VER_STRING);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001705 fprintf(STDERR, " with zlib version %s\n", ZLIB_VERSION);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001706 fprintf(STDERR, "%s", png_get_copyright(NULL));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001707 /* Show the version of libpng used in building the library */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001708 fprintf(STDERR, " library (%lu):%s",
1709 (unsigned long)png_access_version_number(),
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001710 png_get_header_version(NULL));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001711
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001712 /* Show the version of libpng used in building the application */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001713 fprintf(STDERR, " pngtest (%lu):%s", (unsigned long)PNG_LIBPNG_VER,
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001714 PNG_HEADER_VERSION_STRING);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001715
1716 /* Do some consistency checking on the memory allocation settings, I'm
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001717 * not sure this matters, but it is nice to know, the first of these
1718 * tests should be impossible because of the way the macros are set
1719 * in pngconf.h
1720 */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001721#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001722 fprintf(STDERR, " NOTE: Zlib compiled for max 64k, libpng not\n");
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001723#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001724 /* I think the following can happen. */
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001725#if !defined(MAXSEG_64K) && defined(PNG_MAX_MALLOC_64K)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001726 fprintf(STDERR, " NOTE: libpng compiled for max 64k, zlib not\n");
Glenn Randers-Pehrsonea3bcd71998-03-07 14:33:00 -06001727#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001728
1729 if (strcmp(png_libpng_ver, PNG_LIBPNG_VER_STRING))
1730 {
1731 fprintf(STDERR,
1732 "Warning: versions are different between png.h and png.c\n");
1733 fprintf(STDERR, " png.h version: %s\n", PNG_LIBPNG_VER_STRING);
1734 fprintf(STDERR, " png.c version: %s\n\n", png_libpng_ver);
1735 ++ierror;
1736 }
1737
1738 if (argc > 1)
1739 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001740 if (strcmp(argv[1], "-m") == 0)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001741 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001742 multiple = 1;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001743 status_dots_requested = 0;
1744 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001745
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001746 else if (strcmp(argv[1], "-mv") == 0 ||
1747 strcmp(argv[1], "-vm") == 0 )
1748 {
1749 multiple = 1;
1750 verbose = 1;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001751 status_dots_requested = 1;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001752 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001753
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001754 else if (strcmp(argv[1], "-v") == 0)
1755 {
1756 verbose = 1;
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001757 status_dots_requested = 1;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001758 inname = argv[2];
1759 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001760
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001761 else if (strcmp(argv[1], "--strict") == 0)
1762 {
1763 status_dots_requested = 0;
1764 verbose = 1;
1765 inname = argv[2];
1766 strict++;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001767 relaxed = 0;
1768 }
1769
1770 else if (strcmp(argv[1], "--relaxed") == 0)
1771 {
1772 status_dots_requested = 0;
1773 verbose = 1;
1774 inname = argv[2];
1775 strict = 0;
1776 relaxed++;
Glenn Randers-Pehrson8e25a612011-09-26 20:57:33 -05001777 }
1778
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001779 else
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001780 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001781 inname = argv[1];
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001782 status_dots_requested = 0;
1783 }
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001784 }
1785
Glenn Randers-Pehrsonebba0742014-10-25 12:22:39 -05001786 if (multiple == 0 && argc == 3 + verbose)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001787 outname = argv[2 + verbose];
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001788
Glenn Randers-Pehrsonebba0742014-10-25 12:22:39 -05001789 if ((multiple == 0 && argc > 3 + verbose) ||
1790 (multiple != 0 && argc < 2))
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001791 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001792 fprintf(STDERR,
1793 "usage: %s [infile.png] [outfile.png]\n\t%s -m {infile.png}\n",
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001794 argv[0], argv[0]);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001795 fprintf(STDERR,
1796 " reads/writes one PNG file (without -m) or multiple files (-m)\n");
1797 fprintf(STDERR,
1798 " with -m %s is used as a temporary file\n", outname);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001799 exit(1);
1800 }
1801
Glenn Randers-Pehrson05670152014-03-08 12:39:52 -06001802 if (multiple != 0)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001803 {
1804 int i;
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001805#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001806 int allocation_now = current_allocation;
1807#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001808 for (i=2; i<argc; ++i)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001809 {
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001810 int kerror;
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001811 fprintf(STDERR, "\n Testing %s:", argv[i]);
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001812#if PNG_DEBUG > 0
1813 fprintf(STDERR, "\n");
1814#endif
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001815 kerror = test_one_file(argv[i], outname);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001816 if (kerror == 0)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001817 {
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001818#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
1819 int k;
1820#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001821#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001822 fprintf(STDERR, "\n PASS (%lu zero samples)\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001823 (unsigned long)zero_samples);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001824#else
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001825 fprintf(STDERR, " PASS\n");
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001826#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001827#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001828 for (k = 0; k<256; k++)
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001829 if (filters_used[k] != 0)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001830 fprintf(STDERR, " Filter %d was used %lu times\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001831 k, (unsigned long)filters_used[k]);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001832#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001833#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001834 if (tIME_chunk_present != 0)
1835 fprintf(STDERR, " tIME = %s\n", tIME_string);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001836
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001837 tIME_chunk_present = 0;
1838#endif /* PNG_TIME_RFC1123_SUPPORTED */
1839 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001840
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001841 else
1842 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001843 fprintf(STDERR, " FAIL\n");
1844 ierror += kerror;
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001845 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001846#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001847 if (allocation_now != current_allocation)
1848 fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001849 current_allocation - allocation_now);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001850
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001851 if (current_allocation != 0)
1852 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001853 memory_infop pinfo = pinformation;
1854
1855 fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
1856 current_allocation);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001857
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001858 while (pinfo != NULL)
1859 {
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001860 fprintf(STDERR, " %lu bytes at %p\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001861 (unsigned long)pinfo->size,
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001862 pinfo->pointer);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001863 pinfo = pinfo->next;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001864 }
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06001865 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001866#endif
1867 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001868#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001869 fprintf(STDERR, " Current memory allocation: %10d bytes\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001870 current_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001871 fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001872 maximum_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001873 fprintf(STDERR, " Total memory allocation: %10d bytes\n",
1874 total_allocation);
1875 fprintf(STDERR, " Number of allocations: %10d\n",
1876 num_allocations);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001877#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001878 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001879
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001880 else
1881 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001882 int i;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001883 for (i = 0; i<3; ++i)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001884 {
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001885 int kerror;
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001886#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001887 int allocation_now = current_allocation;
1888#endif
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001889 if (i == 1)
1890 status_dots_requested = 1;
1891
1892 else if (verbose == 0)
1893 status_dots_requested = 0;
1894
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001895 if (i == 0 || verbose == 1 || ierror != 0)
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001896 {
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001897 fprintf(STDERR, "\n Testing %s:", inname);
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001898#if PNG_DEBUG > 0
1899 fprintf(STDERR, "\n");
1900#endif
1901 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001902
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001903 kerror = test_one_file(inname, outname);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001904
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001905 if (kerror == 0)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001906 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001907 if (verbose == 1 || i == 2)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001908 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001909#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001910 int k;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001911#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001912#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001913 fprintf(STDERR, "\n PASS (%lu zero samples)\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001914 (unsigned long)zero_samples);
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001915#else
1916 fprintf(STDERR, " PASS\n");
1917#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001918#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001919 for (k = 0; k<256; k++)
Glenn Randers-Pehrson5d713fe2014-10-31 20:48:55 -05001920 if (filters_used[k] != 0)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001921 fprintf(STDERR, " Filter %d was used %lu times\n",
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001922 k, (unsigned long)filters_used[k]);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001923#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001924#ifdef PNG_TIME_RFC1123_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001925 if (tIME_chunk_present != 0)
1926 fprintf(STDERR, " tIME = %s\n", tIME_string);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001927#endif /* PNG_TIME_RFC1123_SUPPORTED */
1928 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001929 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001930
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001931 else
1932 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001933 if (verbose == 0 && i != 2)
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001934 {
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001935 fprintf(STDERR, "\n Testing %s:", inname);
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001936#if PNG_DEBUG > 0
1937 fprintf(STDERR, "\n");
1938#endif
1939 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001940
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001941 fprintf(STDERR, " FAIL\n");
1942 ierror += kerror;
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001943 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001944#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001945 if (allocation_now != current_allocation)
1946 fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001947 current_allocation - allocation_now);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001948
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001949 if (current_allocation != 0)
1950 {
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001951 memory_infop pinfo = pinformation;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001952
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001953 fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
1954 current_allocation);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001955
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001956 while (pinfo != NULL)
1957 {
Glenn Randers-Pehrson7f682632014-10-28 10:22:37 -05001958 fprintf(STDERR, " %lu bytes at %p\n",
1959 (unsigned long)pinfo->size, pinfo->pointer);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001960 pinfo = pinfo->next;
1961 }
1962 }
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001963#endif
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001964 }
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05001965#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001966 fprintf(STDERR, " Current memory allocation: %10d bytes\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001967 current_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001968 fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001969 maximum_allocation);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001970 fprintf(STDERR, " Total memory allocation: %10d bytes\n",
1971 total_allocation);
1972 fprintf(STDERR, " Number of allocations: %10d\n",
1973 num_allocations);
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001974#endif
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001975 }
1976
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001977#ifdef PNGTEST_TIMING
1978 t_stop = (float)clock();
1979 t_misc += (t_stop - t_start);
1980 t_start = t_stop;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001981 fprintf(STDERR, " CPU time used = %.3f seconds",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001982 (t_misc+t_decode+t_encode)/(float)CLOCKS_PER_SEC);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001983 fprintf(STDERR, " (decoding %.3f,\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001984 t_decode/(float)CLOCKS_PER_SEC);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001985 fprintf(STDERR, " encoding %.3f ,",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001986 t_encode/(float)CLOCKS_PER_SEC);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001987 fprintf(STDERR, " other %.3f seconds)\n\n",
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001988 t_misc/(float)CLOCKS_PER_SEC);
1989#endif
1990
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001991 if (ierror == 0)
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001992 fprintf(STDERR, " libpng passes test\n");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001993
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001994 else
Glenn Randers-Pehrsona93c9422009-04-13 11:41:33 -05001995 fprintf(STDERR, " libpng FAILS test\n");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001996
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001997 return (int)(ierror != 0);
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001998}
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001999#else
2000int
2001main(void)
2002{
2003 fprintf(STDERR,
2004 " test ignored because libpng was not built with read support\n");
John Bowlere4413a72013-04-17 21:27:47 -05002005 /* And skip this test */
John Bowlera8472472013-12-29 10:50:51 -06002006 return PNG_LIBPNG_VER < 10600 ? 0 : 77;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06002007}
2008#endif
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05002009
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05002010/* Generate a compiler error if there is an old png.h in the search path. */
Glenn Randers-Pehrsonbd3818e2014-11-01 18:45:35 -05002011typedef png_libpng_version_1_6_15beta03 Your_png_h_is_not_version_1_6_15beta03;