This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/pngtest.c

1555 lines
46 KiB
C
Raw Normal View History

1997-01-17 07:34:35 +00:00
1996-01-16 07:51:56 +00:00
/* pngtest.c - a simple test program to test libpng
1998-01-01 13:13:13 +00:00
*
2004-08-26 03:00:45 +00:00
* libpng 1.2.7beta1 - August 26, 2004
1998-01-01 13:13:13 +00:00
* For conditions of distribution and use, see copyright notice in png.h
2004-07-18 03:45:44 +00:00
* Copyright (c) 1998-2004 Glenn Randers-Pehrson
2000-06-04 19:29:29 +00:00
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
1998-01-01 13:13:13 +00:00
*
* This program reads in a PNG image, writes it out again, and then
* compares the two files. If the files are identical, this shows that
* the basic chunk handling, filtering, and (de)compression code is working
* properly. It does not currently test all of the transforms, although
* it probably should.
*
1998-06-14 19:43:31 +00:00
* The program will report "FAIL" in certain legitimate cases:
1998-01-01 13:13:13 +00:00
* 1) when the compression level or filter selection method is changed.
2000-02-05 05:40:16 +00:00
* 2) when the maximum IDAT size (PNG_ZBUF_SIZE in pngconf.h) is not 8192.
2000-11-10 18:26:19 +00:00
* 3) unknown unsafe-to-copy ancillary chunks or unknown critical chunks
* exist in the input file.
1998-01-01 13:13:13 +00:00
* 4) others not listed here...
* In these cases, it is best to check with another tool such as "pngcheck"
2000-02-05 05:40:16 +00:00
* to see what the differences between the two files are.
1998-01-01 13:13:13 +00:00
*
* If a filename is given on the command-line, then this file is used
* for the input, rather than the default "pngtest.png". This allows
1998-06-06 20:31:35 +00:00
* testing a wide variety of files easily. You can also test a number
* of files at once by typing "pngtest -m file1.png file2.png ..."
1998-01-01 13:13:13 +00:00
*/
1995-07-20 07:43:20 +00:00
2004-07-28 13:20:44 +00:00
#include "png.h"
2000-07-08 18:19:41 +00:00
#if defined(_WIN32_WCE)
# if _WIN32_WCE < 211
__error__ (f|w)printf functions are not supported on old WindowsCE.;
# endif
# include <windows.h>
# include <stdlib.h>
# define READFILE(file, data, length, check) \
2000-07-10 12:48:54 +00:00
if (ReadFile(file, data, length, &check,NULL)) check = 0
# define WRITEFILE(file, data, length, check)) \
if (WriteFile(file, data, length, &check, NULL)) check = 0
2000-07-08 18:19:41 +00:00
# define FCLOSE(file) CloseHandle(file)
#else
# include <stdio.h>
# include <stdlib.h>
# include <assert.h>
# define READFILE(file, data, length, check) \
check=(png_size_t)fread(data,(png_size_t)1,length,file)
# define WRITEFILE(file, data, length, check) \
2000-07-10 12:48:54 +00:00
check=(png_size_t)fwrite(data,(png_size_t)1, length, file)
2000-07-08 18:19:41 +00:00
# define FCLOSE(file) fclose(file)
#endif
1997-05-16 07:46:07 +00:00
2001-01-22 14:52:16 +00:00
#if defined(PNG_NO_STDIO)
2001-05-07 19:52:45 +00:00
# if defined(_WIN32_WCE)
typedef HANDLE png_FILE_p;
# else
typedef FILE * png_FILE_p;
# endif
2001-01-22 14:52:16 +00:00
#endif
1997-05-16 07:46:07 +00:00
/* Makes pngtest verbose so we can find problems (needs to be before png.h) */
#ifndef PNG_DEBUG
2001-05-07 19:52:45 +00:00
# define PNG_DEBUG 0
#endif
#if !PNG_DEBUG
2002-06-20 11:54:34 +00:00
# define SINGLE_ROWBUF_ALLOC /* makes buffer overruns easier to nail */
1998-03-07 20:33:00 +00:00
#endif
1997-05-16 07:46:07 +00:00
1999-10-01 19:22:25 +00:00
/* Turn on CPU timing
#define PNGTEST_TIMING
*/
1999-12-10 15:43:02 +00:00
#ifdef PNG_NO_FLOATING_POINT_SUPPORTED
#undef PNGTEST_TIMING
#endif
1999-10-01 19:22:25 +00:00
#ifdef PNGTEST_TIMING
static float t_start, t_stop, t_decode, t_encode, t_misc;
#include <time.h>
#endif
2000-03-21 11:13:06 +00:00
/* Define png_jmpbuf() in case we are using a pre-1.0.6 version of libpng */
#ifndef png_jmpbuf
# define png_jmpbuf(png_ptr) png_ptr->jmpbuf
#endif
1999-10-01 19:22:25 +00:00
#ifdef PNGTEST_TIMING
static float t_start, t_stop, t_decode, t_encode, t_misc;
1999-12-10 15:43:02 +00:00
#if !defined(PNG_tIME_SUPPORTED)
1999-10-01 19:22:25 +00:00
#include <time.h>
#endif
#endif
1998-06-06 20:31:35 +00:00
#if defined(PNG_TIME_RFC1123_SUPPORTED)
static int tIME_chunk_present=0;
1998-06-14 19:43:31 +00:00
static char tIME_string[30] = "no tIME chunk present in file";
1999-12-10 15:43:02 +00:00
#endif
1998-06-06 20:31:35 +00:00
1999-09-17 17:27:26 +00:00
static int verbose = 0;
1998-03-07 20:33:00 +00:00
int test_one_file PNGARG((PNG_CONST char *inname, PNG_CONST char *outname));
1998-01-17 04:06:18 +00:00
1995-07-20 07:43:20 +00:00
#ifdef __TURBOC__
#include <mem.h>
#endif
/* defined so I can write to a file on gui/windowing platforms */
1995-12-19 09:22:19 +00:00
/* #define STDERR stderr */
1996-01-26 07:38:47 +00:00
#define STDERR stdout /* for DOS */
1995-07-20 07:43:20 +00:00
1998-03-07 12:06:55 +00:00
/* example of using row callbacks to make a simple progress meter */
static int status_pass=1;
static int status_dots_requested=0;
static int status_dots=1;
1998-03-07 20:33:00 +00:00
2000-07-17 11:17:09 +00:00
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
2000-07-17 11:17:09 +00:00
read_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass);
2002-10-03 11:32:37 +00:00
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
1998-03-07 22:17:42 +00:00
read_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
1998-03-07 12:06:55 +00:00
{
2004-07-28 13:20:44 +00:00
if(png_ptr == NULL || row_number > PNG_UINT_31_MAX) return;
1998-03-07 12:06:55 +00:00
if(status_pass != pass)
{
fprintf(stdout,"\n Pass %d: ",pass);
status_pass = pass;
1999-09-17 17:27:26 +00:00
status_dots = 31;
1998-03-07 12:06:55 +00:00
}
status_dots--;
if(status_dots == 0)
{
fprintf(stdout, "\n ");
status_dots=30;
}
fprintf(stdout, "r");
}
1998-03-07 20:33:00 +00:00
2002-10-03 11:32:37 +00:00
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
2000-07-17 11:17:09 +00:00
write_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass);
2002-10-03 11:32:37 +00:00
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
1998-03-07 22:17:42 +00:00
write_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
1998-03-07 12:06:55 +00:00
{
2004-07-28 13:20:44 +00:00
if(png_ptr == NULL || row_number > PNG_UINT_31_MAX || pass > 7) return;
1998-03-07 12:06:55 +00:00
fprintf(stdout, "w");
}
1999-09-17 17:27:26 +00:00
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
/* Example of using user transform callback (we don't transform anything,
but merely examine the row filters. We set this to 256 rather than
5 in case illegal filter values are present.) */
static png_uint_32 filters_used[256];
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
2000-07-17 11:17:09 +00:00
count_filters(png_structp png_ptr, png_row_infop row_info, png_bytep data);
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
1999-09-17 17:27:26 +00:00
count_filters(png_structp png_ptr, png_row_infop row_info, png_bytep data)
{
if(png_ptr != NULL && row_info != NULL)
++filters_used[*(data-1)];
}
#endif
1998-03-08 03:30:44 +00:00
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1998-03-07 12:06:55 +00:00
/* example of using user transform callback (we don't transform anything,
1998-04-21 20:03:57 +00:00
but merely count the zero samples) */
1998-03-07 12:06:55 +00:00
1998-04-21 20:03:57 +00:00
static png_uint_32 zero_samples;
1998-03-07 20:33:00 +00:00
2000-07-17 11:17:09 +00:00
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
2000-07-17 11:17:09 +00:00
count_zero_samples(png_structp png_ptr, png_row_infop row_info, png_bytep data);
1998-03-07 22:17:42 +00:00
void
2002-07-02 03:23:46 +00:00
#ifdef PNG_1_0_X
PNGAPI
#endif
1998-04-21 20:03:57 +00:00
count_zero_samples(png_structp png_ptr, png_row_infop row_info, png_bytep data)
1998-03-07 12:06:55 +00:00
{
png_bytep dp = data;
1998-12-29 17:47:59 +00:00
if(png_ptr == NULL)return;
1998-03-07 12:06:55 +00:00
/* contents of row_info:
* png_uint_32 width width of row
* png_uint_32 rowbytes number of bytes in row
* png_byte color_type color type of pixels
* png_byte bit_depth bit depth of samples
* png_byte channels number of channels (1-4)
* png_byte pixel_depth bits per pixel (depth*channels)
*/
1999-09-17 17:27:26 +00:00
1998-04-21 20:03:57 +00:00
/* counts the number of zero samples (or zero pixels if color_type is 3 */
1998-03-07 12:06:55 +00:00
if(row_info->color_type == 0 || row_info->color_type == 3)
{
int pos=0;
1998-04-21 20:03:57 +00:00
png_uint_32 n, nstop;
for (n=0, nstop=row_info->width; n<nstop; n++)
1998-03-07 12:06:55 +00:00
{
if(row_info->bit_depth == 1)
1998-04-21 20:03:57 +00:00
{
2000-02-05 05:40:16 +00:00
if(((*dp << pos++ ) & 0x80) == 0) zero_samples++;
1998-03-07 12:06:55 +00:00
if(pos == 8)
{
1998-04-21 20:03:57 +00:00
pos = 0;
1998-03-07 12:06:55 +00:00
dp++;
}
1998-04-21 20:03:57 +00:00
}
1998-03-07 12:06:55 +00:00
if(row_info->bit_depth == 2)
1998-04-21 20:03:57 +00:00
{
2000-02-05 05:40:16 +00:00
if(((*dp << (pos+=2)) & 0xc0) == 0) zero_samples++;
1998-03-07 12:06:55 +00:00
if(pos == 8)
{
1998-04-21 20:03:57 +00:00
pos = 0;
1998-03-07 12:06:55 +00:00
dp++;
}
1998-04-21 20:03:57 +00:00
}
1998-03-07 12:06:55 +00:00
if(row_info->bit_depth == 4)
1998-04-21 20:03:57 +00:00
{
2000-02-05 05:40:16 +00:00
if(((*dp << (pos+=4)) & 0xf0) == 0) zero_samples++;
1998-03-07 12:06:55 +00:00
if(pos == 8)
{
1998-04-21 20:03:57 +00:00
pos = 0;
1998-03-07 12:06:55 +00:00
dp++;
}
1998-04-21 20:03:57 +00:00
}
1998-03-07 12:06:55 +00:00
if(row_info->bit_depth == 8)
1998-04-21 20:03:57 +00:00
if(*dp++ == 0) zero_samples++;
1998-03-07 12:06:55 +00:00
if(row_info->bit_depth == 16)
{
1998-04-21 20:03:57 +00:00
if((*dp | *(dp+1)) == 0) zero_samples++;
1998-03-07 12:06:55 +00:00
dp+=2;
}
}
}
else /* other color types */
{
1998-04-21 20:03:57 +00:00
png_uint_32 n, nstop;
1998-03-07 12:06:55 +00:00
int channel;
int color_channels = row_info->channels;
if(row_info->color_type > 3)color_channels--;
1998-04-21 20:03:57 +00:00
for (n=0, nstop=row_info->width; n<nstop; n++)
1998-03-07 12:06:55 +00:00
{
for (channel = 0; channel < color_channels; channel++)
{
if(row_info->bit_depth == 8)
1998-04-21 20:03:57 +00:00
if(*dp++ == 0) zero_samples++;
1998-03-07 12:06:55 +00:00
if(row_info->bit_depth == 16)
{
1998-04-21 20:03:57 +00:00
if((*dp | *(dp+1)) == 0) zero_samples++;
1998-03-07 12:06:55 +00:00
dp+=2;
}
}
if(row_info->color_type > 3)
{
dp++;
if(row_info->bit_depth == 16)dp++;
}
}
}
}
1998-03-08 03:30:44 +00:00
#endif /* PNG_WRITE_USER_TRANSFORM_SUPPORTED */
1998-03-07 12:06:55 +00:00
1998-02-28 13:00:24 +00:00
static int wrote_question = 0;
1998-01-31 03:45:12 +00:00
1998-01-17 04:06:18 +00:00
#if defined(PNG_NO_STDIO)
1998-01-04 04:40:55 +00:00
/* START of code to validate stdio-free compilation */
/* These copies of the default read/write functions come from pngrio.c and */
/* pngwio.c. They allow "don't include stdio" testing of the library. */
1998-05-21 14:27:50 +00:00
/* This is the function that does the actual reading of data. If you are
1998-01-04 04:40:55 +00:00
not reading from a standard C stream, you should create a replacement
read_data function and use it at run time with png_set_read_fn(), rather
than changing the library. */
2001-01-22 14:52:16 +00:00
1998-01-04 04:40:55 +00:00
#ifndef USE_FAR_KEYWORD
static void
2000-05-29 13:58:03 +00:00
pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
1998-01-04 04:40:55 +00:00
{
png_size_t check;
/* fread() returns 0 on error, so it is OK to store this in a png_size_t
* instead of an int, which is what fread() actually returns.
*/
2000-07-08 18:19:41 +00:00
READFILE((png_FILE_p)png_ptr->io_ptr, data, length, check);
1998-01-04 04:40:55 +00:00
if (check != length)
{
2001-05-07 19:52:45 +00:00
png_error(png_ptr, "Read Error!");
1998-01-04 04:40:55 +00:00
}
}
1996-06-05 20:50:50 +00:00
#else
1998-01-04 04:40:55 +00:00
/* this is the model-independent version. Since the standard I/O library
can't handle far buffers in the medium and small models, we have to copy
the data.
*/
1998-12-29 17:47:59 +00:00
1998-01-04 04:40:55 +00:00
#define NEAR_BUF_SIZE 1024
#define MIN(a,b) (a <= b ? a : b)
1998-12-29 17:47:59 +00:00
1998-03-07 22:17:42 +00:00
static void
2000-05-29 13:58:03 +00:00
pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
1998-01-04 04:40:55 +00:00
{
int check;
png_byte *n_data;
2000-07-08 18:19:41 +00:00
png_FILE_p io_ptr;
1998-01-04 04:40:55 +00:00
/* Check if data really is near. If so, use usual code. */
n_data = (png_byte *)CVT_PTR_NOCHECK(data);
2000-07-08 18:19:41 +00:00
io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
1998-01-04 04:40:55 +00:00
if ((png_bytep)n_data == data)
{
2000-07-08 18:19:41 +00:00
READFILE(io_ptr, n_data, length, check);
1998-01-04 04:40:55 +00:00
}
else
{
png_byte buf[NEAR_BUF_SIZE];
png_size_t read, remaining, err;
check = 0;
remaining = length;
do
{
read = MIN(NEAR_BUF_SIZE, remaining);
2000-07-08 18:19:41 +00:00
READFILE(io_ptr, buf, 1, err);
1998-01-04 04:40:55 +00:00
png_memcpy(data, buf, read); /* copy far buffer to near buffer */
if(err != read)
break;
else
check += err;
data += read;
remaining -= read;
}
while (remaining != 0);
}
if (check != length)
{
png_error(png_ptr, "read Error");
}
}
1998-01-17 04:06:18 +00:00
#endif /* USE_FAR_KEYWORD */
1995-07-20 07:43:20 +00:00
1998-01-04 04:40:55 +00:00
#if defined(PNG_WRITE_FLUSH_SUPPORTED)
1998-03-07 22:17:42 +00:00
static void
2000-05-29 13:58:03 +00:00
pngtest_flush(png_structp png_ptr)
1998-01-04 04:40:55 +00:00
{
2000-07-08 18:19:41 +00:00
#if !defined(_WIN32_WCE)
png_FILE_p io_ptr;
io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));
1998-01-04 04:40:55 +00:00
if (io_ptr != NULL)
fflush(io_ptr);
2000-07-08 18:19:41 +00:00
#endif
1998-01-04 04:40:55 +00:00
}
#endif
1995-07-20 07:43:20 +00:00
1998-05-21 14:27:50 +00:00
/* This is the function that does the actual writing of data. If you are
1998-01-04 04:40:55 +00:00
not writing to a standard C stream, you should create a replacement
write_data function and use it at run time with png_set_write_fn(), rather
than changing the library. */
#ifndef USE_FAR_KEYWORD
static void
2000-05-29 13:58:03 +00:00
pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
1998-01-04 04:40:55 +00:00
{
png_uint_32 check;
2000-11-10 18:26:19 +00:00
WRITEFILE((png_FILE_p)png_ptr->io_ptr, data, length, check);
1998-01-04 04:40:55 +00:00
if (check != length)
{
png_error(png_ptr, "Write Error");
}
}
#else
/* this is the model-independent version. Since the standard I/O library
can't handle far buffers in the medium and small models, we have to copy
the data.
*/
#define NEAR_BUF_SIZE 1024
#define MIN(a,b) (a <= b ? a : b)
static void
2000-05-29 13:58:03 +00:00
pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
1998-01-04 04:40:55 +00:00
{
png_uint_32 check;
png_byte *near_data; /* Needs to be "png_byte *" instead of "png_bytep" */
2000-07-08 18:19:41 +00:00
png_FILE_p io_ptr;
1998-01-04 04:40:55 +00:00
/* Check if data really is near. If so, use usual code. */
near_data = (png_byte *)CVT_PTR_NOCHECK(data);
2000-07-08 18:19:41 +00:00
io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
1998-01-04 04:40:55 +00:00
if ((png_bytep)near_data == data)
{
2000-11-10 18:26:19 +00:00
WRITEFILE(io_ptr, near_data, length, check);
1998-01-04 04:40:55 +00:00
}
else
{
png_byte buf[NEAR_BUF_SIZE];
png_size_t written, remaining, err;
check = 0;
remaining = length;
do
{
written = MIN(NEAR_BUF_SIZE, remaining);
png_memcpy(buf, data, written); /* copy far buffer to near buffer */
2000-11-10 18:26:19 +00:00
WRITEFILE(io_ptr, buf, written, err);
1998-01-04 04:40:55 +00:00
if (err != written)
break;
else
check += err;
data += written;
remaining -= written;
}
while (remaining != 0);
}
if (check != length)
{
png_error(png_ptr, "Write Error");
}
}
1998-01-17 04:06:18 +00:00
#endif /* USE_FAR_KEYWORD */
1998-01-04 04:40:55 +00:00
/* This function is called when there is a warning, but the library thinks
* it can continue anyway. Replacement functions don't have to do anything
* here if you don't want to. In the default configuration, png_ptr is
* not used, but it is passed in case it may be useful.
*/
static void
2000-05-29 13:58:03 +00:00
pngtest_warning(png_structp png_ptr, png_const_charp message)
1998-01-04 04:40:55 +00:00
{
PNG_CONST char *name = "UNKNOWN (ERROR!)";
if (png_ptr != NULL && png_ptr->error_ptr != NULL)
name = png_ptr->error_ptr;
fprintf(STDERR, "%s: libpng warning: %s\n", name, message);
}
/* This is the default error handling function. Note that replacements for
* this function MUST NOT RETURN, or the program will likely crash. This
* function is used by default, or if the program supplies NULL for the
* error function pointer in png_set_error_fn().
*/
static void
2000-05-29 13:58:03 +00:00
pngtest_error(png_structp png_ptr, png_const_charp message)
1998-01-04 04:40:55 +00:00
{
2000-05-29 13:58:03 +00:00
pngtest_warning(png_ptr, message);
1998-05-21 14:27:50 +00:00
/* We can return because png_error calls the default handler, which is
* actually OK in this case. */
1998-01-04 04:40:55 +00:00
}
1998-01-17 04:06:18 +00:00
#endif /* PNG_NO_STDIO */
1998-01-04 04:40:55 +00:00
/* END of code to validate stdio-free compilation */
1998-01-31 03:45:12 +00:00
/* START of code to validate memory allocation and deallocation */
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1998-01-31 03:45:12 +00:00
/* Allocate memory. For reasonable files, size should never exceed
64K. However, zlib may allocate more then 64K if you don't tell
it not to. See zconf.h and png.h for more information. zlib does
need to allocate exactly 64K, so whatever you call here must
have the ability to do that.
This piece of code can be compiled to validate max 64K allocations
by setting MAXSEG_64K in zlib zconf.h *or* PNG_MAX_MALLOC_64K. */
2000-02-05 05:40:16 +00:00
typedef struct memory_information
{
2000-07-08 18:19:41 +00:00
png_uint_32 size;
1998-06-06 20:31:35 +00:00
png_voidp pointer;
1998-01-31 03:45:12 +00:00
struct memory_information FAR *next;
} memory_information;
typedef memory_information FAR *memory_infop;
static memory_infop pinformation = NULL;
static int current_allocation = 0;
static int maximum_allocation = 0;
2000-05-29 13:58:03 +00:00
static int total_allocation = 0;
static int num_allocations = 0;
1998-01-31 03:45:12 +00:00
2001-06-23 13:03:17 +00:00
png_voidp png_debug_malloc PNGARG((png_structp png_ptr, png_uint_32 size));
void png_debug_free PNGARG((png_structp png_ptr, png_voidp ptr));
1998-01-31 03:45:12 +00:00
png_voidp
2000-02-05 05:40:16 +00:00
png_debug_malloc(png_structp png_ptr, png_uint_32 size)
{
1998-06-06 20:31:35 +00:00
/* png_malloc has already tested for NULL; png_create_struct calls
png_debug_malloc directly, with png_ptr == NULL which is OK */
1998-01-31 03:45:12 +00:00
if (size == 0)
2001-10-27 12:35:13 +00:00
return (NULL);
1998-01-31 03:45:12 +00:00
/* This calls the library allocator twice, once to get the requested
buffer and once to get a new free list entry. */
{
2004-08-08 02:42:49 +00:00
/* Disable malloc_fn and free_fn */
2004-08-10 11:55:02 +00:00
memory_infop pinfo;
2004-08-08 02:42:49 +00:00
png_set_mem_fn(png_ptr, NULL, NULL, NULL);
2004-08-10 11:55:02 +00:00
pinfo = (memory_infop)png_malloc(png_ptr,
2004-07-28 13:20:44 +00:00
(png_uint_32)png_sizeof (*pinfo));
1998-01-31 03:45:12 +00:00
pinfo->size = size;
current_allocation += size;
2000-05-29 13:58:03 +00:00
total_allocation += size;
num_allocations ++;
1998-01-31 03:45:12 +00:00
if (current_allocation > maximum_allocation)
maximum_allocation = current_allocation;
2004-08-08 02:42:49 +00:00
pinfo->pointer = (png_voidp)png_malloc(png_ptr, size);
/* Restore malloc_fn and free_fn */
png_set_mem_fn(png_ptr, png_voidp_NULL, (png_malloc_ptr)png_debug_malloc,
(png_free_ptr)png_debug_free);
2004-08-04 11:34:52 +00:00
if (size != 0 && pinfo->pointer == NULL)
{
current_allocation -= size;
total_allocation -= size;
2004-08-08 02:42:49 +00:00
png_error(png_ptr,
"out of memory in pngtest->png_debug_malloc.");
2004-08-04 11:34:52 +00:00
}
1998-01-31 03:45:12 +00:00
pinfo->next = pinformation;
pinformation = pinfo;
/* Make sure the caller isn't assuming zeroed memory. */
png_memset(pinfo->pointer, 0xdd, pinfo->size);
1999-10-23 13:39:18 +00:00
if(verbose)
2001-06-23 13:03:17 +00:00
printf("png_malloc %lu bytes at %x\n",size,pinfo->pointer);
2000-07-08 18:19:41 +00:00
assert(pinfo->size != 12345678);
1998-02-07 16:20:57 +00:00
return (png_voidp)(pinfo->pointer);
1998-01-31 03:45:12 +00:00
}
}
/* Free a pointer. It is removed from the list at the same time. */
void
1998-06-06 20:31:35 +00:00
png_debug_free(png_structp png_ptr, png_voidp ptr)
1998-01-31 03:45:12 +00:00
{
if (png_ptr == NULL)
1998-06-06 20:31:35 +00:00
fprintf(STDERR, "NULL pointer to png_debug_free.\n");
2000-02-05 05:40:16 +00:00
if (ptr == 0)
{
1998-01-31 03:45:12 +00:00
#if 0 /* This happens all the time. */
fprintf(STDERR, "WARNING: freeing NULL pointer\n");
#endif
return;
}
/* Unlink the element from the list. */
{
memory_infop FAR *ppinfo = &pinformation;
2000-02-05 05:40:16 +00:00
for (;;)
{
1998-01-31 03:45:12 +00:00
memory_infop pinfo = *ppinfo;
2000-02-05 05:40:16 +00:00
if (pinfo->pointer == ptr)
{
1998-01-31 03:45:12 +00:00
*ppinfo = pinfo->next;
current_allocation -= pinfo->size;
if (current_allocation < 0)
fprintf(STDERR, "Duplicate free of memory\n");
/* We must free the list element too, but first kill
1998-05-21 14:27:50 +00:00
the memory that is to be freed. */
2001-05-07 19:52:45 +00:00
png_memset(ptr, 0x55, pinfo->size);
1998-06-06 20:31:35 +00:00
png_free_default(png_ptr, pinfo);
2000-07-17 11:17:09 +00:00
pinfo=NULL;
1998-01-31 03:45:12 +00:00
break;
}
2000-02-05 05:40:16 +00:00
if (pinfo->next == NULL)
{
2001-06-23 13:03:17 +00:00
fprintf(STDERR, "Pointer %x not found\n", (unsigned int)ptr);
1998-01-31 03:45:12 +00:00
break;
}
ppinfo = &pinfo->next;
}
}
/* Finally free the data. */
1999-10-23 13:39:18 +00:00
if(verbose)
printf("Freeing %x\n",ptr);
1998-06-06 20:31:35 +00:00
png_free_default(png_ptr, ptr);
2000-07-17 11:17:09 +00:00
ptr=NULL;
1998-01-31 03:45:12 +00:00
}
2004-08-10 02:50:32 +00:00
#endif /* PNG_USER_MEM_SUPPORTED && PNG_DEBUG */
1998-01-31 03:45:12 +00:00
/* END of code to test memory allocation/deallocation */
1998-01-04 04:40:55 +00:00
/* Test one file */
1998-03-07 22:17:42 +00:00
int
test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
1995-07-20 07:43:20 +00:00
{
2000-07-08 18:19:41 +00:00
static png_FILE_p fpin;
static png_FILE_p fpout; /* "static" prevents setjmp corruption */
2001-05-07 19:52:45 +00:00
png_structp read_ptr;
png_infop read_info_ptr, end_info_ptr;
#ifdef PNG_WRITE_SUPPORTED
png_structp write_ptr;
png_infop write_info_ptr;
png_infop write_end_info_ptr;
#else
png_structp write_ptr = NULL;
png_infop write_info_ptr = NULL;
png_infop write_end_info_ptr = NULL;
#endif
1996-01-26 07:38:47 +00:00
png_bytep row_buf;
1995-07-20 07:43:20 +00:00
png_uint_32 y;
1997-05-16 07:46:07 +00:00
png_uint_32 width, height;
int num_pass, pass;
int bit_depth, color_type;
2000-02-05 05:40:16 +00:00
#ifdef PNG_SETJMP_SUPPORTED
1997-01-17 07:34:35 +00:00
#ifdef USE_FAR_KEYWORD
2000-03-21 11:13:06 +00:00
jmp_buf jmpbuf;
2000-02-05 05:40:16 +00:00
#endif
1999-12-10 15:43:02 +00:00
#endif
1998-12-29 17:47:59 +00:00
2000-07-11 12:12:36 +00:00
#if defined(_WIN32_WCE)
TCHAR path[MAX_PATH];
#endif
1998-01-04 04:40:55 +00:00
char inbuf[256], outbuf[256];
1995-07-20 07:43:20 +00:00
2001-10-27 12:35:13 +00:00
row_buf = NULL;
1996-06-05 20:50:50 +00:00
2000-07-11 12:12:36 +00:00
#if defined(_WIN32_WCE)
MultiByteToWideChar(CP_ACP, 0, inname, -1, path, MAX_PATH);
if ((fpin = CreateFile(path, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL)) == INVALID_HANDLE_VALUE)
#else
1997-05-16 07:46:07 +00:00
if ((fpin = fopen(inname, "rb")) == NULL)
2000-07-11 12:12:36 +00:00
#endif
1995-11-28 17:22:13 +00:00
{
fprintf(STDERR, "Could not find input file %s\n", inname);
1998-02-01 02:07:59 +00:00
return (1);
1995-11-28 17:22:13 +00:00
}
2000-07-11 12:12:36 +00:00
#if defined(_WIN32_WCE)
MultiByteToWideChar(CP_ACP, 0, outname, -1, path, MAX_PATH);
if ((fpout = CreateFile(path, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL)) == INVALID_HANDLE_VALUE)
#else
1997-05-16 07:46:07 +00:00
if ((fpout = fopen(outname, "wb")) == NULL)
2000-07-11 12:12:36 +00:00
#endif
1995-11-28 17:22:13 +00:00
{
1996-06-05 20:50:50 +00:00
fprintf(STDERR, "Could not open output file %s\n", outname);
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
1998-02-01 02:07:59 +00:00
return (1);
1995-11-28 17:22:13 +00:00
}
1997-05-16 07:46:07 +00:00
png_debug(0, "Allocating read and write structures\n");
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
2001-10-27 12:35:13 +00:00
read_ptr = png_create_read_struct_2(PNG_LIBPNG_VER_STRING, png_voidp_NULL,
png_error_ptr_NULL, png_error_ptr_NULL, png_voidp_NULL,
1998-06-06 20:31:35 +00:00
(png_malloc_ptr)png_debug_malloc, (png_free_ptr)png_debug_free);
#else
2001-10-27 12:35:13 +00:00
read_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, png_voidp_NULL,
png_error_ptr_NULL, png_error_ptr_NULL);
1998-06-06 20:31:35 +00:00
#endif
1998-01-04 04:40:55 +00:00
#if defined(PNG_NO_STDIO)
2000-05-29 13:58:03 +00:00
png_set_error_fn(read_ptr, (png_voidp)inname, pngtest_error,
pngtest_warning);
1998-01-04 04:40:55 +00:00
#endif
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
2001-10-27 12:35:13 +00:00
write_ptr = png_create_write_struct_2(PNG_LIBPNG_VER_STRING, png_voidp_NULL,
png_error_ptr_NULL, png_error_ptr_NULL, png_voidp_NULL,
1998-06-06 20:31:35 +00:00
(png_malloc_ptr)png_debug_malloc, (png_free_ptr)png_debug_free);
#else
2001-10-27 12:35:13 +00:00
write_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, png_voidp_NULL,
png_error_ptr_NULL, png_error_ptr_NULL);
1998-06-06 20:31:35 +00:00
#endif
1998-01-04 04:40:55 +00:00
#if defined(PNG_NO_STDIO)
2000-05-29 13:58:03 +00:00
png_set_error_fn(write_ptr, (png_voidp)inname, pngtest_error,
pngtest_warning);
2001-05-07 19:52:45 +00:00
#endif
1998-01-04 04:40:55 +00:00
#endif
1997-05-16 07:46:07 +00:00
png_debug(0, "Allocating read_info, write_info and end_info structures\n");
read_info_ptr = png_create_info_struct(read_ptr);
2001-05-06 10:34:26 +00:00
end_info_ptr = png_create_info_struct(read_ptr);
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
write_info_ptr = png_create_info_struct(write_ptr);
1999-10-23 13:39:18 +00:00
write_end_info_ptr = png_create_info_struct(write_ptr);
1998-06-06 20:31:35 +00:00
#endif
1996-06-05 20:50:50 +00:00
2000-02-05 05:40:16 +00:00
#ifdef PNG_SETJMP_SUPPORTED
2000-03-21 11:13:06 +00:00
png_debug(0, "Setting jmpbuf for read struct\n");
1997-01-17 07:34:35 +00:00
#ifdef USE_FAR_KEYWORD
2000-03-21 11:13:06 +00:00
if (setjmp(jmpbuf))
1997-01-17 07:34:35 +00:00
#else
2000-03-21 11:13:06 +00:00
if (setjmp(png_jmpbuf(read_ptr)))
1997-01-17 07:34:35 +00:00
#endif
1995-11-28 17:22:13 +00:00
{
1998-01-04 04:40:55 +00:00
fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
2002-06-28 14:34:00 +00:00
if (row_buf)
png_free(read_ptr, row_buf);
1997-05-16 07:46:07 +00:00
png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
1999-10-23 13:39:18 +00:00
png_destroy_info_struct(write_ptr, &write_end_info_ptr);
1997-05-16 07:46:07 +00:00
png_destroy_write_struct(&write_ptr, &write_info_ptr);
2001-05-07 19:52:45 +00:00
#endif
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
FCLOSE(fpout);
1998-02-01 02:07:59 +00:00
return (1);
1995-11-28 17:22:13 +00:00
}
1998-12-29 17:47:59 +00:00
#ifdef USE_FAR_KEYWORD
2004-07-28 13:20:44 +00:00
png_memcpy(png_jmpbuf(read_ptr),jmpbuf,png_sizeof(jmp_buf));
1998-12-29 17:47:59 +00:00
#endif
1997-05-16 07:46:07 +00:00
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
2000-03-21 11:13:06 +00:00
png_debug(0, "Setting jmpbuf for write struct\n");
1997-01-17 07:34:35 +00:00
#ifdef USE_FAR_KEYWORD
2000-03-21 11:13:06 +00:00
if (setjmp(jmpbuf))
1997-01-17 07:34:35 +00:00
#else
2000-03-21 11:13:06 +00:00
if (setjmp(png_jmpbuf(write_ptr)))
1997-01-17 07:34:35 +00:00
#endif
1996-01-26 07:38:47 +00:00
{
1998-01-04 04:40:55 +00:00
fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
1997-05-16 07:46:07 +00:00
png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
1999-10-23 13:39:18 +00:00
png_destroy_info_struct(write_ptr, &write_end_info_ptr);
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
1997-05-16 07:46:07 +00:00
png_destroy_write_struct(&write_ptr, &write_info_ptr);
2001-05-07 19:52:45 +00:00
#endif
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
FCLOSE(fpout);
1998-02-01 02:07:59 +00:00
return (1);
1995-11-28 17:22:13 +00:00
}
1997-01-17 07:34:35 +00:00
#ifdef USE_FAR_KEYWORD
2004-07-28 13:20:44 +00:00
png_memcpy(png_jmpbuf(write_ptr),jmpbuf,png_sizeof(jmp_buf));
2000-02-05 05:40:16 +00:00
#endif
2001-05-07 19:52:45 +00:00
#endif
1997-01-17 07:34:35 +00:00
#endif
1998-12-29 17:47:59 +00:00
1997-05-16 07:46:07 +00:00
png_debug(0, "Initializing input and output streams\n");
1998-01-04 04:40:55 +00:00
#if !defined(PNG_NO_STDIO)
1996-06-05 20:50:50 +00:00
png_init_io(read_ptr, fpin);
2001-05-07 19:52:45 +00:00
# ifdef PNG_WRITE_SUPPORTED
1996-06-05 20:50:50 +00:00
png_init_io(write_ptr, fpout);
2001-05-07 19:52:45 +00:00
# endif
1998-01-04 04:40:55 +00:00
#else
2000-05-29 13:58:03 +00:00
png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data);
2001-05-18 09:54:50 +00:00
# ifdef PNG_WRITE_SUPPORTED
2000-05-29 13:58:03 +00:00
png_set_write_fn(write_ptr, (png_voidp)fpout, pngtest_write_data,
2001-05-18 09:54:50 +00:00
# if defined(PNG_WRITE_FLUSH_SUPPORTED)
2000-05-29 13:58:03 +00:00
pngtest_flush);
2001-05-18 09:54:50 +00:00
# else
1998-01-04 04:40:55 +00:00
NULL);
2001-05-18 09:54:50 +00:00
# endif
# endif
1998-03-07 12:06:55 +00:00
#endif
if(status_dots_requested == 1)
{
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
1998-03-07 12:06:55 +00:00
png_set_write_status_fn(write_ptr, write_row_callback);
2001-05-07 19:52:45 +00:00
#endif
1998-03-07 12:06:55 +00:00
png_set_read_status_fn(read_ptr, read_row_callback);
}
else
{
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
2001-10-27 12:35:13 +00:00
png_set_write_status_fn(write_ptr, png_write_status_ptr_NULL);
2001-05-07 19:52:45 +00:00
#endif
2001-10-27 12:35:13 +00:00
png_set_read_status_fn(read_ptr, png_read_status_ptr_NULL);
1998-03-07 12:06:55 +00:00
}
1999-09-17 17:27:26 +00:00
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
{
int i;
for(i=0; i<256; i++)
filters_used[i]=0;
png_set_read_user_transform_fn(read_ptr, count_filters);
}
#endif
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
zero_samples=0;
png_set_write_user_transform_fn(write_ptr, count_zero_samples);
#endif
1995-11-28 17:22:13 +00:00
2000-02-05 05:40:16 +00:00
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
2004-08-08 02:42:49 +00:00
# ifndef PNG_HANDLE_CHUNK_ALWAYS
# define PNG_HANDLE_CHUNK_ALWAYS 3
# endif
png_set_keep_unknown_chunks(read_ptr, PNG_HANDLE_CHUNK_ALWAYS,
2001-10-27 12:35:13 +00:00
png_bytep_NULL, 0);
2000-02-05 05:40:16 +00:00
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
2004-08-08 02:42:49 +00:00
# ifndef PNG_HANDLE_CHUNK_IF_SAFE
# define PNG_HANDLE_CHUNK_IF_SAFE 2
# endif
png_set_keep_unknown_chunks(write_ptr, PNG_HANDLE_CHUNK_IF_SAFE,
2001-10-27 12:35:13 +00:00
png_bytep_NULL, 0);
2000-02-05 05:40:16 +00:00
#endif
1997-05-16 07:46:07 +00:00
png_debug(0, "Reading info struct\n");
png_read_info(read_ptr, read_info_ptr);
1995-11-28 17:22:13 +00:00
1997-05-16 07:46:07 +00:00
png_debug(0, "Transferring info struct\n");
{
int interlace_type, compression_type, filter_type;
1995-11-28 17:22:13 +00:00
1997-05-16 07:46:07 +00:00
if (png_get_IHDR(read_ptr, read_info_ptr, &width, &height, &bit_depth,
&color_type, &interlace_type, &compression_type, &filter_type))
{
png_set_IHDR(write_ptr, write_info_ptr, width, height, bit_depth,
1998-01-31 03:45:12 +00:00
#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
1997-05-16 07:46:07 +00:00
color_type, interlace_type, compression_type, filter_type);
1998-01-31 03:45:12 +00:00
#else
color_type, PNG_INTERLACE_NONE, compression_type, filter_type);
#endif
1997-05-16 07:46:07 +00:00
}
}
2000-05-01 14:31:54 +00:00
#if defined(PNG_FIXED_POINT_SUPPORTED)
1999-12-10 15:43:02 +00:00
#if defined(PNG_cHRM_SUPPORTED)
1995-11-28 17:22:13 +00:00
{
2000-02-05 05:40:16 +00:00
png_fixed_point white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
1999-12-10 15:43:02 +00:00
blue_y;
if (png_get_cHRM_fixed(read_ptr, read_info_ptr, &white_x, &white_y, &red_x,
&red_y, &green_x, &green_y, &blue_x, &blue_y))
1997-05-16 07:46:07 +00:00
{
1999-12-10 15:43:02 +00:00
png_set_cHRM_fixed(write_ptr, write_info_ptr, white_x, white_y, red_x,
red_y, green_x, green_y, blue_x, blue_y);
1997-05-16 07:46:07 +00:00
}
1995-11-28 17:22:13 +00:00
}
1997-05-16 07:46:07 +00:00
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_gAMA_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
2000-02-05 05:40:16 +00:00
png_fixed_point gamma;
1995-11-28 17:22:13 +00:00
1999-12-10 15:43:02 +00:00
if (png_get_gAMA_fixed(read_ptr, read_info_ptr, &gamma))
1997-05-16 07:46:07 +00:00
{
1999-12-10 15:43:02 +00:00
png_set_gAMA_fixed(write_ptr, write_info_ptr, gamma);
1997-05-16 07:46:07 +00:00
}
}
#endif
2000-05-01 14:31:54 +00:00
#else /* Use floating point versions */
#if defined(PNG_FLOATING_POINT_SUPPORTED)
#if defined(PNG_cHRM_SUPPORTED)
{
double white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
blue_y;
if (png_get_cHRM(read_ptr, read_info_ptr, &white_x, &white_y, &red_x,
&red_y, &green_x, &green_y, &blue_x, &blue_y))
{
png_set_cHRM(write_ptr, write_info_ptr, white_x, white_y, red_x,
red_y, green_x, green_y, blue_x, blue_y);
}
}
#endif
#if defined(PNG_gAMA_SUPPORTED)
{
double gamma;
if (png_get_gAMA(read_ptr, read_info_ptr, &gamma))
{
png_set_gAMA(write_ptr, write_info_ptr, gamma);
}
}
#endif
#endif /* floating point */
#endif /* fixed point */
1999-12-10 15:43:02 +00:00
#if defined(PNG_iCCP_SUPPORTED)
1995-11-28 17:22:13 +00:00
{
1999-12-10 15:43:02 +00:00
png_charp name;
png_charp profile;
2000-02-05 05:40:16 +00:00
png_uint_32 proflen;
1999-12-10 15:43:02 +00:00
int compression_type;
1997-05-16 07:46:07 +00:00
1999-12-10 15:43:02 +00:00
if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type,
&profile, &proflen))
1997-05-16 07:46:07 +00:00
{
1999-12-10 15:43:02 +00:00
png_set_iCCP(write_ptr, write_info_ptr, name, compression_type,
profile, proflen);
1997-05-16 07:46:07 +00:00
}
1995-11-28 17:22:13 +00:00
}
1998-01-01 13:13:13 +00:00
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_sRGB_SUPPORTED)
1998-01-01 13:13:13 +00:00
{
1998-01-17 04:06:18 +00:00
int intent;
1998-01-01 13:13:13 +00:00
if (png_get_sRGB(read_ptr, read_info_ptr, &intent))
{
png_set_sRGB(write_ptr, write_info_ptr, intent);
}
}
1997-05-16 07:46:07 +00:00
#endif
1999-12-10 15:43:02 +00:00
{
png_colorp palette;
int num_palette;
if (png_get_PLTE(read_ptr, read_info_ptr, &palette, &num_palette))
{
png_set_PLTE(write_ptr, write_info_ptr, palette, num_palette);
}
}
#if defined(PNG_bKGD_SUPPORTED)
{
png_color_16p background;
if (png_get_bKGD(read_ptr, read_info_ptr, &background))
{
png_set_bKGD(write_ptr, write_info_ptr, background);
}
}
#endif
#if defined(PNG_hIST_SUPPORTED)
1995-11-28 17:22:13 +00:00
{
1997-05-16 07:46:07 +00:00
png_uint_16p hist;
if (png_get_hIST(read_ptr, read_info_ptr, &hist))
{
png_set_hIST(write_ptr, write_info_ptr, hist);
}
1995-11-28 17:22:13 +00:00
}
1997-05-16 07:46:07 +00:00
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_oFFs_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
2000-02-05 05:40:16 +00:00
png_int_32 offset_x, offset_y;
1997-05-16 07:46:07 +00:00
int unit_type;
1995-11-28 17:22:13 +00:00
1997-05-16 07:46:07 +00:00
if (png_get_oFFs(read_ptr, read_info_ptr,&offset_x,&offset_y,&unit_type))
{
png_set_oFFs(write_ptr, write_info_ptr, offset_x, offset_y, unit_type);
}
}
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_pCAL_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
png_charp purpose, units;
png_charpp params;
png_int_32 X0, X1;
int type, nparams;
if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type,
&nparams, &units, &params))
{
png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type,
nparams, units, params);
}
}
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_pHYs_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
png_uint_32 res_x, res_y;
int unit_type;
if (png_get_pHYs(read_ptr, read_info_ptr, &res_x, &res_y, &unit_type))
{
png_set_pHYs(write_ptr, write_info_ptr, res_x, res_y, unit_type);
}
}
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_sBIT_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
1999-12-10 15:43:02 +00:00
png_color_8p sig_bit;
1997-05-16 07:46:07 +00:00
1999-12-10 15:43:02 +00:00
if (png_get_sBIT(read_ptr, read_info_ptr, &sig_bit))
1997-05-16 07:46:07 +00:00
{
1999-12-10 15:43:02 +00:00
png_set_sBIT(write_ptr, write_info_ptr, sig_bit);
1997-05-16 07:46:07 +00:00
}
}
1999-12-10 15:43:02 +00:00
#endif
#if defined(PNG_sCAL_SUPPORTED)
#ifdef PNG_FLOATING_POINT_SUPPORTED
1995-11-28 17:22:13 +00:00
{
2000-02-05 05:40:16 +00:00
int unit;
2000-07-17 11:17:09 +00:00
double scal_width, scal_height;
1997-05-16 07:46:07 +00:00
2000-07-17 11:17:09 +00:00
if (png_get_sCAL(read_ptr, read_info_ptr, &unit, &scal_width,
&scal_height))
1995-11-28 17:22:13 +00:00
{
2000-07-17 11:17:09 +00:00
png_set_sCAL(write_ptr, write_info_ptr, unit, scal_width, scal_height);
1999-12-10 15:43:02 +00:00
}
}
#else
2000-02-05 05:40:16 +00:00
#ifdef PNG_FIXED_POINT_SUPPORTED
1999-12-10 15:43:02 +00:00
{
2000-02-05 05:40:16 +00:00
int unit;
2000-07-17 11:17:09 +00:00
png_charp scal_width, scal_height;
1999-12-10 15:43:02 +00:00
2000-07-17 11:17:09 +00:00
if (png_get_sCAL_s(read_ptr, read_info_ptr, &unit, &scal_width,
&scal_height))
1999-12-10 15:43:02 +00:00
{
2000-07-17 11:17:09 +00:00
png_set_sCAL_s(write_ptr, write_info_ptr, unit, scal_width, scal_height);
1997-05-16 07:46:07 +00:00
}
}
1996-01-16 07:51:56 +00:00
#endif
2000-02-05 05:40:16 +00:00
#endif
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_TEXT_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
png_textp text_ptr;
int num_text;
if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
{
1999-12-10 15:43:02 +00:00
png_debug1(0, "Handling %d iTXt/tEXt/zTXt chunks\n", num_text);
1997-05-16 07:46:07 +00:00
png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
}
}
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_tIME_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
png_timep mod_time;
if (png_get_tIME(read_ptr, read_info_ptr, &mod_time))
{
png_set_tIME(write_ptr, write_info_ptr, mod_time);
1998-06-06 20:31:35 +00:00
#if defined(PNG_TIME_RFC1123_SUPPORTED)
/* we have to use png_strcpy instead of "=" because the string
pointed to by png_convert_to_rfc1123() gets free'ed before
we use it */
png_strcpy(tIME_string,png_convert_to_rfc1123(read_ptr, mod_time));
tIME_chunk_present++;
#endif /* PNG_TIME_RFC1123_SUPPORTED */
1999-01-07 03:50:16 +00:00
}
1997-05-16 07:46:07 +00:00
}
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_tRNS_SUPPORTED)
1997-05-16 07:46:07 +00:00
{
png_bytep trans;
int num_trans;
png_color_16p trans_values;
if (png_get_tRNS(read_ptr, read_info_ptr, &trans, &num_trans,
&trans_values))
{
png_set_tRNS(write_ptr, write_info_ptr, trans, num_trans,
trans_values);
}
}
#endif
2000-02-05 05:40:16 +00:00
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
{
png_unknown_chunkp unknowns;
int num_unknowns = (int)png_get_unknown_chunks(read_ptr, read_info_ptr,
&unknowns);
if (num_unknowns)
{
png_size_t i;
png_set_unknown_chunks(write_ptr, write_info_ptr, unknowns,
num_unknowns);
/* copy the locations from the read_info_ptr. The automatically
generated locations in write_info_ptr are wrong because we
haven't written anything yet */
for (i = 0; i < (png_size_t)num_unknowns; i++)
2000-04-24 04:14:02 +00:00
png_set_unknown_chunk_location(write_ptr, write_info_ptr, i,
unknowns[i].location);
2000-02-05 05:40:16 +00:00
}
}
#endif
1997-05-16 07:46:07 +00:00
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
1997-05-16 07:46:07 +00:00
png_debug(0, "\nWriting info struct\n");
1999-11-27 16:22:33 +00:00
/* If we wanted, we could write info in two steps:
png_write_info_before_PLTE(write_ptr, write_info_ptr);
*/
1997-05-16 07:46:07 +00:00
png_write_info(write_ptr, write_info_ptr);
2001-05-07 19:52:45 +00:00
#endif
1997-05-16 07:46:07 +00:00
2001-05-07 19:52:45 +00:00
#ifdef SINGLE_ROWBUF_ALLOC
png_debug(0, "\nAllocating row buffer...");
1998-12-29 17:47:59 +00:00
row_buf = (png_bytep)png_malloc(read_ptr,
1997-05-16 07:46:07 +00:00
png_get_rowbytes(read_ptr, read_info_ptr));
2001-05-07 19:52:45 +00:00
png_debug1(0, "0x%08lx\n\n", (unsigned long)row_buf);
#endif /* SINGLE_ROWBUF_ALLOC */
1998-02-07 16:20:57 +00:00
png_debug(0, "Writing row data\n");
1997-05-16 07:46:07 +00:00
1999-10-01 19:22:25 +00:00
#if defined(PNG_READ_INTERLACING_SUPPORTED) || \
defined(PNG_WRITE_INTERLACING_SUPPORTED)
1997-05-16 07:46:07 +00:00
num_pass = png_set_interlace_handling(read_ptr);
2001-05-07 19:52:45 +00:00
# ifdef PNG_WRITE_SUPPORTED
1997-05-16 07:46:07 +00:00
png_set_interlace_handling(write_ptr);
2001-05-07 19:52:45 +00:00
# endif
1999-10-01 19:22:25 +00:00
#else
num_pass=1;
#endif
1997-05-16 07:46:07 +00:00
1999-10-01 19:22:25 +00:00
#ifdef PNGTEST_TIMING
t_stop = (float)clock();
t_misc += (t_stop - t_start);
t_start = t_stop;
#endif
1997-05-16 07:46:07 +00:00
for (pass = 0; pass < num_pass; pass++)
{
1998-02-07 16:20:57 +00:00
png_debug1(0, "Writing row data for pass %d\n",pass);
1997-05-16 07:46:07 +00:00
for (y = 0; y < height; y++)
{
2001-05-07 19:52:45 +00:00
#ifndef SINGLE_ROWBUF_ALLOC
png_debug2(0, "\nAllocating row buffer (pass %d, y = %ld)...", pass,y);
row_buf = (png_bytep)png_malloc(read_ptr,
png_get_rowbytes(read_ptr, read_info_ptr));
png_debug2(0, "0x%08lx (%ld bytes)\n", (unsigned long)row_buf,
png_get_rowbytes(read_ptr, read_info_ptr));
#endif /* !SINGLE_ROWBUF_ALLOC */
2001-10-27 12:35:13 +00:00
png_read_rows(read_ptr, (png_bytepp)&row_buf, png_bytepp_NULL, 1);
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
1999-10-01 19:22:25 +00:00
#ifdef PNGTEST_TIMING
t_stop = (float)clock();
t_decode += (t_stop - t_start);
t_start = t_stop;
#endif
1996-06-05 20:50:50 +00:00
png_write_rows(write_ptr, (png_bytepp)&row_buf, 1);
1999-10-01 19:22:25 +00:00
#ifdef PNGTEST_TIMING
t_stop = (float)clock();
t_encode += (t_stop - t_start);
t_start = t_stop;
#endif
2001-05-07 19:52:45 +00:00
#endif /* PNG_WRITE_SUPPORTED */
#ifndef SINGLE_ROWBUF_ALLOC
png_debug2(0, "Freeing row buffer (pass %d, y = %ld)\n\n", pass, y);
png_free(read_ptr, row_buf);
#endif /* !SINGLE_ROWBUF_ALLOC */
1995-11-28 17:22:13 +00:00
}
}
2000-02-05 05:40:16 +00:00
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
2000-02-18 19:48:52 +00:00
png_free_data(read_ptr, read_info_ptr, PNG_FREE_UNKN, -1);
2000-02-05 05:40:16 +00:00
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
2000-02-18 19:48:52 +00:00
png_free_data(write_ptr, write_info_ptr, PNG_FREE_UNKN, -1);
2000-02-05 05:40:16 +00:00
#endif
1997-05-16 07:46:07 +00:00
png_debug(0, "Reading and writing end_info data\n");
2000-02-05 05:40:16 +00:00
1997-05-16 07:46:07 +00:00
png_read_end(read_ptr, end_info_ptr);
1999-12-10 15:43:02 +00:00
#if defined(PNG_TEXT_SUPPORTED)
1999-10-23 13:39:18 +00:00
{
png_textp text_ptr;
int num_text;
if (png_get_text(read_ptr, end_info_ptr, &text_ptr, &num_text) > 0)
{
1999-12-10 15:43:02 +00:00
png_debug1(0, "Handling %d iTXt/tEXt/zTXt chunks\n", num_text);
1999-10-23 13:39:18 +00:00
png_set_text(write_ptr, write_end_info_ptr, text_ptr, num_text);
}
}
#endif
1999-12-10 15:43:02 +00:00
#if defined(PNG_tIME_SUPPORTED)
1999-10-23 13:39:18 +00:00
{
png_timep mod_time;
if (png_get_tIME(read_ptr, end_info_ptr, &mod_time))
{
png_set_tIME(write_ptr, write_end_info_ptr, mod_time);
#if defined(PNG_TIME_RFC1123_SUPPORTED)
/* we have to use png_strcpy instead of "=" because the string
pointed to by png_convert_to_rfc1123() gets free'ed before
we use it */
png_strcpy(tIME_string,png_convert_to_rfc1123(read_ptr, mod_time));
tIME_chunk_present++;
#endif /* PNG_TIME_RFC1123_SUPPORTED */
}
}
2000-02-05 05:40:16 +00:00
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
{
png_unknown_chunkp unknowns;
int num_unknowns;
num_unknowns = (int)png_get_unknown_chunks(read_ptr, end_info_ptr,
&unknowns);
if (num_unknowns)
{
png_size_t i;
png_set_unknown_chunks(write_ptr, write_end_info_ptr, unknowns,
num_unknowns);
/* copy the locations from the read_info_ptr. The automatically
generated locations in write_end_info_ptr are wrong because we
haven't written the end_info yet */
for (i = 0; i < (png_size_t)num_unknowns; i++)
2000-04-24 04:14:02 +00:00
png_set_unknown_chunk_location(write_ptr, write_end_info_ptr, i,
unknowns[i].location);
2000-02-05 05:40:16 +00:00
}
}
1999-10-23 13:39:18 +00:00
#endif
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
1999-10-23 13:39:18 +00:00
png_write_end(write_ptr, write_end_info_ptr);
2001-05-07 19:52:45 +00:00
#endif
1998-12-29 17:47:59 +00:00
1998-01-31 03:45:12 +00:00
#ifdef PNG_EASY_ACCESS_SUPPORTED
if(verbose)
{
png_uint_32 iwidth, iheight;
iwidth = png_get_image_width(write_ptr, write_info_ptr);
iheight = png_get_image_height(write_ptr, write_info_ptr);
fprintf(STDERR, "Image width = %lu, height = %lu\n",
iwidth, iheight);
}
#endif
1995-11-28 17:22:13 +00:00
1997-05-16 07:46:07 +00:00
png_debug(0, "Destroying data structs\n");
2001-05-07 19:52:45 +00:00
#ifdef SINGLE_ROWBUF_ALLOC
png_debug(1, "destroying row_buf for read_ptr\n");
1998-01-17 04:06:18 +00:00
png_free(read_ptr, row_buf);
2000-07-17 11:17:09 +00:00
row_buf=NULL;
2001-05-07 19:52:45 +00:00
#endif /* SINGLE_ROWBUF_ALLOC */
png_debug(1, "destroying read_ptr, read_info_ptr, end_info_ptr\n");
1997-05-16 07:46:07 +00:00
png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
2001-05-07 19:52:45 +00:00
#ifdef PNG_WRITE_SUPPORTED
png_debug(1, "destroying write_end_info_ptr\n");
1999-10-23 13:39:18 +00:00
png_destroy_info_struct(write_ptr, &write_end_info_ptr);
2001-05-07 19:52:45 +00:00
png_debug(1, "destroying write_ptr, write_info_ptr\n");
1997-05-16 07:46:07 +00:00
png_destroy_write_struct(&write_ptr, &write_info_ptr);
2001-05-07 19:52:45 +00:00
#endif
png_debug(0, "Destruction complete.\n");
1995-11-28 17:22:13 +00:00
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
FCLOSE(fpout);
1995-11-28 17:22:13 +00:00
1997-05-16 07:46:07 +00:00
png_debug(0, "Opening files for comparison\n");
2000-07-11 12:12:36 +00:00
#if defined(_WIN32_WCE)
MultiByteToWideChar(CP_ACP, 0, inname, -1, path, MAX_PATH);
if ((fpin = CreateFile(path, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL)) == INVALID_HANDLE_VALUE)
#else
1997-05-16 07:46:07 +00:00
if ((fpin = fopen(inname, "rb")) == NULL)
2000-07-11 12:12:36 +00:00
#endif
1995-11-28 17:22:13 +00:00
{
1996-06-05 20:50:50 +00:00
fprintf(STDERR, "Could not find file %s\n", inname);
1998-02-01 02:07:59 +00:00
return (1);
1995-11-28 17:22:13 +00:00
}
2000-07-11 12:12:36 +00:00
#if defined(_WIN32_WCE)
MultiByteToWideChar(CP_ACP, 0, outname, -1, path, MAX_PATH);
if ((fpout = CreateFile(path, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL)) == INVALID_HANDLE_VALUE)
#else
1997-05-16 07:46:07 +00:00
if ((fpout = fopen(outname, "rb")) == NULL)
2000-07-11 12:12:36 +00:00
#endif
1995-11-28 17:22:13 +00:00
{
1996-06-05 20:50:50 +00:00
fprintf(STDERR, "Could not find file %s\n", outname);
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
1998-02-01 02:07:59 +00:00
return (1);
1995-11-28 17:22:13 +00:00
}
1997-05-16 07:46:07 +00:00
1998-03-07 20:33:00 +00:00
for(;;)
1995-11-28 17:22:13 +00:00
{
1997-05-16 07:46:07 +00:00
png_size_t num_in, num_out;
1995-11-28 17:22:13 +00:00
2000-07-08 18:19:41 +00:00
READFILE(fpin, inbuf, 1, num_in);
READFILE(fpout, outbuf, 1, num_out);
1995-11-28 17:22:13 +00:00
if (num_in != num_out)
{
2000-02-05 05:40:16 +00:00
fprintf(STDERR, "\nFiles %s and %s are of a different size\n",
1996-06-05 20:50:50 +00:00
inname, outname);
1998-02-28 13:00:24 +00:00
if(wrote_question == 0)
{
fprintf(STDERR,
2000-02-05 05:40:16 +00:00
" Was %s written with the same maximum IDAT chunk size (%d bytes),",
inname,PNG_ZBUF_SIZE);
1998-02-28 13:00:24 +00:00
fprintf(STDERR,
2000-02-05 05:40:16 +00:00
"\n filtering heuristic (libpng default), compression");
1998-02-28 13:00:24 +00:00
fprintf(STDERR,
2000-02-05 05:40:16 +00:00
" level (zlib default),\n and zlib version (%s)?\n\n",
1998-02-28 13:00:24 +00:00
ZLIB_VERSION);
wrote_question=1;
}
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
FCLOSE(fpout);
1998-02-28 13:00:24 +00:00
return (0);
1995-11-28 17:22:13 +00:00
}
if (!num_in)
break;
1997-05-16 07:46:07 +00:00
if (png_memcmp(inbuf, outbuf, num_in))
1995-11-28 17:22:13 +00:00
{
1999-09-17 17:27:26 +00:00
fprintf(STDERR, "\nFiles %s and %s are different\n", inname, outname);
1998-02-28 13:00:24 +00:00
if(wrote_question == 0)
{
fprintf(STDERR,
2000-02-05 05:40:16 +00:00
" Was %s written with the same maximum IDAT chunk size (%d bytes),",
inname,PNG_ZBUF_SIZE);
1998-02-28 13:00:24 +00:00
fprintf(STDERR,
2000-02-05 05:40:16 +00:00
"\n filtering heuristic (libpng default), compression");
1998-02-28 13:00:24 +00:00
fprintf(STDERR,
2000-02-05 05:40:16 +00:00
" level (zlib default),\n and zlib version (%s)?\n\n",
1998-02-28 13:00:24 +00:00
ZLIB_VERSION);
wrote_question=1;
}
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
FCLOSE(fpout);
1998-02-28 13:00:24 +00:00
return (0);
1995-11-28 17:22:13 +00:00
}
}
2000-07-11 12:12:36 +00:00
FCLOSE(fpin);
FCLOSE(fpout);
1995-07-20 07:43:20 +00:00
1998-02-01 02:07:59 +00:00
return (0);
1995-07-20 07:43:20 +00:00
}
1995-09-26 10:22:39 +00:00
1998-01-04 04:40:55 +00:00
/* input and output filenames */
#ifdef RISCOS
1999-09-17 17:27:26 +00:00
static PNG_CONST char *inname = "pngtest/png";
static PNG_CONST char *outname = "pngout/png";
1998-01-04 04:40:55 +00:00
#else
1998-03-07 17:24:03 +00:00
static PNG_CONST char *inname = "pngtest.png";
static PNG_CONST char *outname = "pngout.png";
1998-01-04 04:40:55 +00:00
#endif
int
main(int argc, char *argv[])
{
int multiple = 0;
int ierror = 0;
fprintf(STDERR, "Testing libpng version %s\n", PNG_LIBPNG_VER_STRING);
1998-01-31 03:45:12 +00:00
fprintf(STDERR, " with zlib version %s\n", ZLIB_VERSION);
1998-12-29 17:47:59 +00:00
fprintf(STDERR,"%s",png_get_copyright(NULL));
1999-11-27 16:22:33 +00:00
/* Show the version of libpng used in building the library */
2000-05-12 11:19:53 +00:00
fprintf(STDERR," library (%lu):%s", png_access_version_number(),
png_get_header_version(NULL));
1999-11-27 16:22:33 +00:00
/* Show the version of libpng used in building the application */
2000-06-24 12:42:42 +00:00
fprintf(STDERR," pngtest (%lu):%s", (unsigned long)PNG_LIBPNG_VER,
2000-05-12 11:19:53 +00:00
PNG_HEADER_VERSION_STRING);
2004-07-28 13:20:44 +00:00
fprintf(STDERR," png_sizeof(png_struct)=%ld, png_sizeof(png_info)=%ld\n",
(long)png_sizeof(png_struct), (long)png_sizeof(png_info));
1998-01-31 03:45:12 +00:00
/* Do some consistency checking on the memory allocation settings, I'm
not sure this matters, but it is nice to know, the first of these
tests should be impossible because of the way the macros are set
in pngconf.h */
1998-03-07 20:33:00 +00:00
#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
1998-01-31 03:45:12 +00:00
fprintf(STDERR, " NOTE: Zlib compiled for max 64k, libpng not\n");
1998-03-07 20:33:00 +00:00
#endif
1998-01-31 03:45:12 +00:00
/* I think the following can happen. */
1998-03-07 20:33:00 +00:00
#if !defined(MAXSEG_64K) && defined(PNG_MAX_MALLOC_64K)
1998-01-31 03:45:12 +00:00
fprintf(STDERR, " NOTE: libpng compiled for max 64k, zlib not\n");
1998-03-07 20:33:00 +00:00
#endif
1998-01-04 04:40:55 +00:00
if (strcmp(png_libpng_ver, PNG_LIBPNG_VER_STRING))
{
fprintf(STDERR,
"Warning: versions are different between png.h and png.c\n");
fprintf(STDERR, " png.h version: %s\n", PNG_LIBPNG_VER_STRING);
fprintf(STDERR, " png.c version: %s\n\n", png_libpng_ver);
++ierror;
}
if (argc > 1)
{
1998-01-31 03:45:12 +00:00
if (strcmp(argv[1], "-m") == 0)
1998-03-07 12:06:55 +00:00
{
1998-01-31 03:45:12 +00:00
multiple = 1;
1998-03-07 12:06:55 +00:00
status_dots_requested = 0;
}
1998-01-31 03:45:12 +00:00
else if (strcmp(argv[1], "-mv") == 0 ||
strcmp(argv[1], "-vm") == 0 )
{
multiple = 1;
verbose = 1;
1998-03-07 12:06:55 +00:00
status_dots_requested = 1;
1998-01-31 03:45:12 +00:00
}
else if (strcmp(argv[1], "-v") == 0)
{
verbose = 1;
1998-03-07 12:06:55 +00:00
status_dots_requested = 1;
1998-01-31 03:45:12 +00:00
inname = argv[2];
}
else
1998-03-07 12:06:55 +00:00
{
1998-01-31 03:45:12 +00:00
inname = argv[1];
1998-03-07 12:06:55 +00:00
status_dots_requested = 0;
}
1998-01-04 04:40:55 +00:00
}
1998-01-31 03:45:12 +00:00
if (!multiple && argc == 3+verbose)
outname = argv[2+verbose];
1998-01-04 04:40:55 +00:00
1998-01-31 03:45:12 +00:00
if ((!multiple && argc > 3+verbose) || (multiple && argc < 2))
1998-01-04 04:40:55 +00:00
{
1998-01-17 04:06:18 +00:00
fprintf(STDERR,
"usage: %s [infile.png] [outfile.png]\n\t%s -m {infile.png}\n",
1998-01-04 04:40:55 +00:00
argv[0], argv[0]);
1998-01-17 04:06:18 +00:00
fprintf(STDERR,
" reads/writes one PNG file (without -m) or multiple files (-m)\n");
fprintf(STDERR,
" with -m %s is used as a temporary file\n", outname);
1998-01-04 04:40:55 +00:00
exit(1);
}
if (multiple)
{
int i;
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1998-01-31 03:45:12 +00:00
int allocation_now = current_allocation;
#endif
1998-01-04 04:40:55 +00:00
for (i=2; i<argc; ++i)
1998-01-31 03:45:12 +00:00
{
2000-05-01 14:31:54 +00:00
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
int k;
#endif
int kerror;
1998-01-17 04:06:18 +00:00
fprintf(STDERR, "Testing %s:",argv[i]);
kerror = test_one_file(argv[i], outname);
1998-12-29 17:47:59 +00:00
if (kerror == 0)
1998-06-06 20:31:35 +00:00
{
1998-03-08 03:30:44 +00:00
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1999-10-23 13:39:18 +00:00
fprintf(STDERR, "\n PASS (%lu zero samples)\n",zero_samples);
1998-03-07 12:06:55 +00:00
#else
1998-01-31 03:45:12 +00:00
fprintf(STDERR, " PASS\n");
1998-12-29 17:47:59 +00:00
#endif
1999-09-17 17:27:26 +00:00
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
for (k=0; k<256; k++)
if(filters_used[k])
fprintf(STDERR, " Filter %d was used %lu times\n",
k,filters_used[k]);
#endif
1998-06-06 20:31:35 +00:00
#if defined(PNG_TIME_RFC1123_SUPPORTED)
if(tIME_chunk_present != 0)
fprintf(STDERR, " tIME = %s\n",tIME_string);
tIME_chunk_present = 0;
#endif /* PNG_TIME_RFC1123_SUPPORTED */
}
else
{
1998-01-17 04:06:18 +00:00
fprintf(STDERR, " FAIL\n");
ierror += kerror;
1998-06-06 20:31:35 +00:00
}
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1998-01-31 03:45:12 +00:00
if (allocation_now != current_allocation)
fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
current_allocation-allocation_now);
2000-02-05 05:40:16 +00:00
if (current_allocation != 0)
{
1998-01-31 03:45:12 +00:00
memory_infop pinfo = pinformation;
fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
current_allocation);
2000-02-05 05:40:16 +00:00
while (pinfo != NULL)
{
2001-06-23 13:03:17 +00:00
fprintf(STDERR, " %lu bytes at %x\n", pinfo->size,
(unsigned int) pinfo->pointer);
1998-01-31 03:45:12 +00:00
pinfo = pinfo->next;
2000-02-05 05:40:16 +00:00
}
1998-01-08 02:54:20 +00:00
}
1998-01-31 03:45:12 +00:00
#endif
}
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
2000-05-29 13:58:03 +00:00
fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1999-10-01 19:22:25 +00:00
current_allocation);
2000-05-29 13:58:03 +00:00
fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1998-01-31 03:45:12 +00:00
maximum_allocation);
2000-05-29 13:58:03 +00:00
fprintf(STDERR, " Total memory allocation: %10d bytes\n",
total_allocation);
fprintf(STDERR, " Number of allocations: %10d\n",
num_allocations);
1998-01-31 03:45:12 +00:00
#endif
1998-01-04 04:40:55 +00:00
}
else
{
1998-01-17 04:06:18 +00:00
int i;
2000-02-05 05:40:16 +00:00
for (i=0; i<3; ++i)
{
1998-01-17 04:06:18 +00:00
int kerror;
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1998-01-31 03:45:12 +00:00
int allocation_now = current_allocation;
#endif
1998-03-07 12:06:55 +00:00
if (i == 1) status_dots_requested = 1;
else if(verbose == 0)status_dots_requested = 0;
1998-01-31 03:45:12 +00:00
if (i == 0 || verbose == 1 || ierror != 0)
fprintf(STDERR, "Testing %s:",inname);
1998-01-17 04:06:18 +00:00
kerror = test_one_file(inname, outname);
1998-01-31 03:45:12 +00:00
if(kerror == 0)
{
1998-03-07 12:06:55 +00:00
if(verbose == 1 || i == 2)
1998-06-06 20:31:35 +00:00
{
2000-05-01 14:31:54 +00:00
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
1999-09-17 17:27:26 +00:00
int k;
2000-05-01 14:31:54 +00:00
#endif
1998-03-08 03:30:44 +00:00
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1999-10-23 13:39:18 +00:00
fprintf(STDERR, "\n PASS (%lu zero samples)\n",zero_samples);
1998-03-07 12:06:55 +00:00
#else
fprintf(STDERR, " PASS\n");
#endif
1999-09-17 17:27:26 +00:00
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
for (k=0; k<256; k++)
if(filters_used[k])
fprintf(STDERR, " Filter %d was used %lu times\n",
k,filters_used[k]);
#endif
1998-06-06 20:31:35 +00:00
#if defined(PNG_TIME_RFC1123_SUPPORTED)
1999-09-17 17:27:26 +00:00
if(tIME_chunk_present != 0)
fprintf(STDERR, " tIME = %s\n",tIME_string);
1998-06-06 20:31:35 +00:00
#endif /* PNG_TIME_RFC1123_SUPPORTED */
}
1998-01-31 03:45:12 +00:00
}
else
{
if(verbose == 0 && i != 2)
fprintf(STDERR, "Testing %s:",inname);
1998-01-17 04:06:18 +00:00
fprintf(STDERR, " FAIL\n");
ierror += kerror;
1998-01-31 03:45:12 +00:00
}
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1998-01-31 03:45:12 +00:00
if (allocation_now != current_allocation)
fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
current_allocation-allocation_now);
2000-02-05 05:40:16 +00:00
if (current_allocation != 0)
{
1998-01-31 03:45:12 +00:00
memory_infop pinfo = pinformation;
1998-12-29 17:47:59 +00:00
1998-01-31 03:45:12 +00:00
fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
current_allocation);
2000-02-05 05:40:16 +00:00
while (pinfo != NULL)
{
2001-06-23 13:03:17 +00:00
fprintf(STDERR," %lu bytes at %x\n",
pinfo->size, (unsigned int)pinfo->pointer);
1998-01-31 03:45:12 +00:00
pinfo = pinfo->next;
}
}
#endif
1998-01-17 04:06:18 +00:00
}
2004-08-15 12:15:39 +00:00
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
2000-05-29 13:58:03 +00:00
fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1999-10-01 19:22:25 +00:00
current_allocation);
2000-05-29 13:58:03 +00:00
fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1998-01-31 03:45:12 +00:00
maximum_allocation);
2000-05-29 13:58:03 +00:00
fprintf(STDERR, " Total memory allocation: %10d bytes\n",
total_allocation);
fprintf(STDERR, " Number of allocations: %10d\n",
num_allocations);
1998-01-31 03:45:12 +00:00
#endif
1998-01-04 04:40:55 +00:00
}
1999-10-01 19:22:25 +00:00
#ifdef PNGTEST_TIMING
t_stop = (float)clock();
t_misc += (t_stop - t_start);
t_start = t_stop;
fprintf(STDERR," CPU time used = %.3f seconds",
(t_misc+t_decode+t_encode)/(float)CLOCKS_PER_SEC);
fprintf(STDERR," (decoding %.3f,\n",
t_decode/(float)CLOCKS_PER_SEC);
fprintf(STDERR," encoding %.3f ,",
t_encode/(float)CLOCKS_PER_SEC);
fprintf(STDERR," other %.3f seconds)\n\n",
t_misc/(float)CLOCKS_PER_SEC);
#endif
1998-01-04 04:40:55 +00:00
if (ierror == 0)
fprintf(STDERR, "libpng passes test\n");
else
fprintf(STDERR, "libpng FAILS test\n");
1998-02-07 16:20:57 +00:00
return (int)(ierror != 0);
1998-01-04 04:40:55 +00:00
}
1998-06-06 20:31:35 +00:00
1999-10-01 19:22:25 +00:00
/* Generate a compiler error if there is an old png.h in the search path. */
2004-08-26 03:00:45 +00:00
typedef version_1_2_7beta1 your_png_h_is_not_version_1_2_7beta1;