pngtest.c 41.5 KB
Newer Older
A
Andreas Dilger 已提交
1

G
Guy Schalnat 已提交
2
/* pngtest.c - a simple test program to test libpng
3
 *
4
 * libpng 1.0.8beta2 - July 10, 2000
5
 * For conditions of distribution and use, see copyright notice in png.h
6
 * Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
7 8
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9 10 11 12 13 14 15
 *
 * 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.
 *
16
 * The program will report "FAIL" in certain legitimate cases:
17
 * 1) when the compression level or filter selection method is changed.
18
 * 2) when the maximum IDAT size (PNG_ZBUF_SIZE in pngconf.h) is not 8192.
19 20 21
 * 3) unknown ancillary chunks exist in the input file.
 * 4) others not listed here...
 * In these cases, it is best to check with another tool such as "pngcheck"
22
 * to see what the differences between the two files are.
23 24 25
 *
 * 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
26 27
 * 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 ..."
28
 */
G
Guy Schalnat 已提交
29

30 31 32 33 34 35 36
#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) \
37 38 39
     if (ReadFile(file, data, length, &check,NULL)) check = 0
#  define WRITEFILE(file, data, length, check)) \
     if (WriteFile(file, data, length, &check, NULL)) check = 0
40 41 42 43 44 45 46 47
#  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) \
48
     check=(png_size_t)fwrite(data,(png_size_t)1, length, file)
49 50
#  define FCLOSE(file) fclose(file)
#endif
A
Andreas Dilger 已提交
51 52 53

/* Makes pngtest verbose so we can find problems (needs to be before png.h) */
#ifndef PNG_DEBUG
54
#define PNG_DEBUG 0
55
#endif
A
Andreas Dilger 已提交
56

57 58 59 60
/* Turn on CPU timing
#define PNGTEST_TIMING
*/

61 62 63 64
#ifdef PNG_NO_FLOATING_POINT_SUPPORTED
#undef PNGTEST_TIMING
#endif

65 66 67 68 69
#ifdef PNGTEST_TIMING
static float t_start, t_stop, t_decode, t_encode, t_misc;
#include <time.h>
#endif

G
Guy Schalnat 已提交
70 71
#include "png.h"

72 73 74 75 76
/* 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

77 78
#ifdef PNGTEST_TIMING
static float t_start, t_stop, t_decode, t_encode, t_misc;
79
#if !defined(PNG_tIME_SUPPORTED)
80 81 82 83
#include <time.h>
#endif
#endif

84 85
#if defined(PNG_TIME_RFC1123_SUPPORTED)
static int tIME_chunk_present=0;
86
static char tIME_string[30] = "no tIME chunk present in file";
87
#endif
88

89 90
static int verbose = 0;

91
int test_one_file PNGARG((PNG_CONST char *inname, PNG_CONST char *outname));
92

G
Guy Schalnat 已提交
93 94 95 96 97
#ifdef __TURBOC__
#include <mem.h>
#endif

/* defined so I can write to a file on gui/windowing platforms */
G
Guy Schalnat 已提交
98
/*  #define STDERR stderr  */
G
Guy Schalnat 已提交
99
#define STDERR stdout   /* for DOS */
G
Guy Schalnat 已提交
100

101 102 103 104
/* 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;
105

106 107
void
read_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
108
{
109
    if(png_ptr == NULL || row_number > PNG_MAX_UINT) return;
110 111 112 113
    if(status_pass != pass)
    {
       fprintf(stdout,"\n Pass %d: ",pass);
       status_pass = pass;
114
       status_dots = 31;
115 116 117 118 119 120 121 122 123
    }
    status_dots--;
    if(status_dots == 0)
    {
       fprintf(stdout, "\n         ");
       status_dots=30;
    }
    fprintf(stdout, "r");
}
124

125 126
void
write_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
127
{
128
    if(png_ptr == NULL || row_number > PNG_MAX_UINT || pass > 7) return;
129 130 131 132
    fprintf(stdout, "w");
}


133 134 135 136 137 138 139 140 141 142 143 144 145
#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
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

146
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
147
/* example of using user transform callback (we don't transform anything,
148
   but merely count the zero samples) */
149

150
static png_uint_32 zero_samples;
151

152
void
153
count_zero_samples(png_structp png_ptr, png_row_infop row_info, png_bytep data)
154 155
{
   png_bytep dp = data;
156
   if(png_ptr == NULL)return;
157 158 159 160 161 162 163 164 165 166

   /* 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)
    */

167

168
    /* counts the number of zero samples (or zero pixels if color_type is 3 */
169 170 171 172

    if(row_info->color_type == 0 || row_info->color_type == 3)
    {
       int pos=0;
173 174
       png_uint_32 n, nstop;
       for (n=0, nstop=row_info->width; n<nstop; n++)
175 176
       {
          if(row_info->bit_depth == 1)
177
          {
178
             if(((*dp << pos++ ) & 0x80) == 0) zero_samples++;
179 180
             if(pos == 8)
             {
181
                pos = 0;
182 183
                dp++;
             }
184
          }
185
          if(row_info->bit_depth == 2)
186
          {
187
             if(((*dp << (pos+=2)) & 0xc0) == 0) zero_samples++;
188 189
             if(pos == 8)
             {
190
                pos = 0;
191 192
                dp++;
             }
193
          }
194
          if(row_info->bit_depth == 4)
195
          {
196
             if(((*dp << (pos+=4)) & 0xf0) == 0) zero_samples++;
197 198
             if(pos == 8)
             {
199
                pos = 0;
200 201
                dp++;
             }
202
          }
203
          if(row_info->bit_depth == 8)
204
             if(*dp++ == 0) zero_samples++;
205 206
          if(row_info->bit_depth == 16)
          {
207
             if((*dp | *(dp+1)) == 0) zero_samples++;
208 209 210 211 212 213
             dp+=2;
          }
       }
    }
    else /* other color types */
    {
214
       png_uint_32 n, nstop;
215 216 217 218
       int channel;
       int color_channels = row_info->channels;
       if(row_info->color_type > 3)color_channels--;

219
       for (n=0, nstop=row_info->width; n<nstop; n++)
220 221 222 223
       {
          for (channel = 0; channel < color_channels; channel++)
          {
             if(row_info->bit_depth == 8)
224
                if(*dp++ == 0) zero_samples++;
225 226
             if(row_info->bit_depth == 16)
             {
227
                if((*dp | *(dp+1)) == 0) zero_samples++;
228 229 230 231 232 233 234 235 236 237 238
                dp+=2;
             }
          }
          if(row_info->color_type > 3)
          {
             dp++;
             if(row_info->bit_depth == 16)dp++;
          }
       }
    }
}
239
#endif /* PNG_WRITE_USER_TRANSFORM_SUPPORTED */
240

241
static int wrote_question = 0;
242

243
#if defined(PNG_NO_STDIO)
244 245 246
/* 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. */
247
/* This is the function that does the actual reading of data.  If you are
248 249 250 251 252
   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. */
#ifndef USE_FAR_KEYWORD
static void
253
pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
254 255 256 257 258 259
{
   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.
    */
260
   READFILE((png_FILE_p)png_ptr->io_ptr, data, length, check);
261 262 263 264 265 266

   if (check != length)
   {
      png_error(png_ptr, "Read Error");
   }
}
G
Guy Schalnat 已提交
267
#else
268 269 270 271
/* 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.
*/
272

273 274
#define NEAR_BUF_SIZE 1024
#define MIN(a,b) (a <= b ? a : b)
275

276
static void
277
pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
278 279 280
{
   int check;
   png_byte *n_data;
281
   png_FILE_p io_ptr;
282 283 284

   /* Check if data really is near. If so, use usual code. */
   n_data = (png_byte *)CVT_PTR_NOCHECK(data);
285
   io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
286 287
   if ((png_bytep)n_data == data)
   {
288
      READFILE(io_ptr, n_data, length, check);
289 290 291 292 293 294 295 296 297 298
   }
   else
   {
      png_byte buf[NEAR_BUF_SIZE];
      png_size_t read, remaining, err;
      check = 0;
      remaining = length;
      do
      {
         read = MIN(NEAR_BUF_SIZE, remaining);
299
         READFILE(io_ptr, buf, 1, err);
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
         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");
   }
}
315
#endif /* USE_FAR_KEYWORD */
G
Guy Schalnat 已提交
316

317
#if defined(PNG_WRITE_FLUSH_SUPPORTED)
318
static void
319
pngtest_flush(png_structp png_ptr)
320
{
321 322 323
#if !defined(_WIN32_WCE)
   png_FILE_p io_ptr;
   io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));
324 325
   if (io_ptr != NULL)
      fflush(io_ptr);
326
#endif
327 328
}
#endif
G
Guy Schalnat 已提交
329

330
/* This is the function that does the actual writing of data.  If you are
331 332 333 334 335
   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
336
pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
337 338 339
{
   png_uint_32 check;

340
   WRITEFILE((png_FILE_p)png_ptr->io_ptr,  data, 1, check);
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
   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
356
pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
357 358 359
{
   png_uint_32 check;
   png_byte *near_data;  /* Needs to be "png_byte *" instead of "png_bytep" */
360
   png_FILE_p io_ptr;
361 362 363

   /* Check if data really is near. If so, use usual code. */
   near_data = (png_byte *)CVT_PTR_NOCHECK(data);
364
   io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
365 366
   if ((png_bytep)near_data == data)
   {
367
      WRITEFILE(io_ptr, near_data, 1, check);
368 369 370 371 372 373 374 375 376 377 378
   }
   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 */
379
         WRITEFILE(io_ptr, written, 1, err);
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
         if (err != written)
            break;
         else
            check += err;
         data += written;
         remaining -= written;
      }
      while (remaining != 0);
   }
   if (check != length)
   {
      png_error(png_ptr, "Write Error");
   }
}

395
#endif /* USE_FAR_KEYWORD */
396 397 398 399 400 401 402

/* 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
403
pngtest_warning(png_structp png_ptr, png_const_charp message)
404 405 406 407 408 409 410 411 412 413 414 415 416
{
   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
417
pngtest_error(png_structp png_ptr, png_const_charp message)
418
{
419
   pngtest_warning(png_ptr, message);
420 421
   /* We can return because png_error calls the default handler, which is
    * actually OK in this case. */
422
}
423
#endif /* PNG_NO_STDIO */
424 425
/* END of code to validate stdio-free compilation */

426
/* START of code to validate memory allocation and deallocation */
427
#ifdef PNG_USER_MEM_SUPPORTED
428 429 430 431 432 433 434 435 436

/* 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. */
437 438
typedef struct memory_information
{
439
   png_uint_32               size;
440
   png_voidp                 pointer;
441 442 443 444 445 446 447
   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;
448 449
static int total_allocation = 0;
static int num_allocations = 0;
450 451 452 453 454 455 456

extern PNG_EXPORT(png_voidp,png_debug_malloc) PNGARG((png_structp png_ptr,
   png_uint_32 size));
extern PNG_EXPORT(void,png_debug_free) PNGARG((png_structp png_ptr,
   png_voidp ptr));

png_voidp
457 458
png_debug_malloc(png_structp png_ptr, png_uint_32 size)
{
459 460 461 462

   /* png_malloc has already tested for NULL; png_create_struct calls
      png_debug_malloc directly, with png_ptr == NULL which is OK */

463
   if (size == 0)
464
      return (png_voidp)(NULL);
465 466 467 468

   /* This calls the library allocator twice, once to get the requested
      buffer and once to get a new free list entry. */
   {
469
      memory_infop pinfo = png_malloc_default(png_ptr, sizeof *pinfo);
470 471
      pinfo->size = size;
      current_allocation += size;
472 473
      total_allocation += size;
      num_allocations ++;
474 475
      if (current_allocation > maximum_allocation)
         maximum_allocation = current_allocation;
476
      pinfo->pointer = png_malloc_default(png_ptr, size);
477 478 479 480
      pinfo->next = pinformation;
      pinformation = pinfo;
      /* Make sure the caller isn't assuming zeroed memory. */
      png_memset(pinfo->pointer, 0xdd, pinfo->size);
481 482 483 484
#if PNG_DEBUG
      if(verbose)
         printf("png_malloc %d bytes at %x\n",size,pinfo->pointer);
#endif
485
      assert(pinfo->size != 12345678);
486
      return (png_voidp)(pinfo->pointer);
487 488 489 490 491
   }
}

/* Free a pointer.  It is removed from the list at the same time. */
void
492
png_debug_free(png_structp png_ptr, png_voidp ptr)
493 494
{
   if (png_ptr == NULL)
495
      fprintf(STDERR, "NULL pointer to png_debug_free.\n");
496 497
   if (ptr == 0)
   {
498 499 500 501 502 503 504 505 506
#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;
507 508
      for (;;)
      {
509
         memory_infop pinfo = *ppinfo;
510 511
         if (pinfo->pointer == ptr)
         {
512 513 514 515 516
            *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
517
               the memory that is to be freed. */
518
            memset(ptr, 0x55, pinfo->size);
519
            png_free_default(png_ptr, pinfo);
520 521
            break;
         }
522 523
         if (pinfo->next == NULL)
         {
524 525 526 527 528 529 530 531
            fprintf(STDERR, "Pointer %x not found\n", ptr);
            break;
         }
         ppinfo = &pinfo->next;
      }
   }

   /* Finally free the data. */
532 533 534 535
#if PNG_DEBUG
   if(verbose)
      printf("Freeing %x\n",ptr);
#endif
536
   png_free_default(png_ptr, ptr);
537
}
538
#endif /* PNG_USER_MEM_SUPPORTED */
539 540
/* END of code to test memory allocation/deallocation */

541
/* Test one file */
542 543
int
test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
G
Guy Schalnat 已提交
544
{
545 546
   static png_FILE_p fpin;
   static png_FILE_p fpout;  /* "static" prevents setjmp corruption */
A
Andreas Dilger 已提交
547
   png_structp read_ptr, write_ptr;
548
   png_infop read_info_ptr, write_info_ptr, end_info_ptr, write_end_info_ptr;
G
Guy Schalnat 已提交
549
   png_bytep row_buf;
G
Guy Schalnat 已提交
550
   png_uint_32 y;
A
Andreas Dilger 已提交
551 552 553
   png_uint_32 width, height;
   int num_pass, pass;
   int bit_depth, color_type;
554
#ifdef PNG_SETJMP_SUPPORTED
A
Andreas Dilger 已提交
555
#ifdef USE_FAR_KEYWORD
556
   jmp_buf jmpbuf;
557
#endif
558
#endif
559

560
   char inbuf[256], outbuf[256];
G
Guy Schalnat 已提交
561

562
   row_buf = (png_bytep)NULL;
G
Guy Schalnat 已提交
563

A
Andreas Dilger 已提交
564
   if ((fpin = fopen(inname, "rb")) == NULL)
G
Guy Schalnat 已提交
565 566
   {
      fprintf(STDERR, "Could not find input file %s\n", inname);
567
      return (1);
G
Guy Schalnat 已提交
568 569
   }

A
Andreas Dilger 已提交
570
   if ((fpout = fopen(outname, "wb")) == NULL)
G
Guy Schalnat 已提交
571
   {
G
Guy Schalnat 已提交
572
      fprintf(STDERR, "Could not open output file %s\n", outname);
G
Guy Schalnat 已提交
573
      fclose(fpin);
574
      return (1);
G
Guy Schalnat 已提交
575 576
   }

A
Andreas Dilger 已提交
577
   png_debug(0, "Allocating read and write structures\n");
578 579 580 581 582
#ifdef PNG_USER_MEM_SUPPORTED
   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,
      (png_malloc_ptr)png_debug_malloc, (png_free_ptr)png_debug_free);
#else
A
Andreas Dilger 已提交
583
   read_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
A
Andreas Dilger 已提交
584
      (png_error_ptr)NULL, (png_error_ptr)NULL);
585
#endif
586
#if defined(PNG_NO_STDIO)
587 588
   png_set_error_fn(read_ptr, (png_voidp)inname, pngtest_error,
       pngtest_warning);
589
#endif
590 591 592 593 594
#ifdef PNG_USER_MEM_SUPPORTED
   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,
      (png_malloc_ptr)png_debug_malloc, (png_free_ptr)png_debug_free);
#else
A
Andreas Dilger 已提交
595
   write_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
G
Guy Schalnat 已提交
596
      (png_error_ptr)NULL, (png_error_ptr)NULL);
597
#endif
598
#if defined(PNG_NO_STDIO)
599 600
   png_set_error_fn(write_ptr, (png_voidp)inname, pngtest_error,
       pngtest_warning);
601
#endif
A
Andreas Dilger 已提交
602 603
   png_debug(0, "Allocating read_info, write_info and end_info structures\n");
   read_info_ptr = png_create_info_struct(read_ptr);
604
   write_info_ptr = png_create_info_struct(write_ptr);
A
Andreas Dilger 已提交
605
   end_info_ptr = png_create_info_struct(read_ptr);
606
   write_end_info_ptr = png_create_info_struct(write_ptr);
607 608
#ifdef PNG_USER_MEM_SUPPORTED
#endif
G
Guy Schalnat 已提交
609

610
#ifdef PNG_SETJMP_SUPPORTED
611
   png_debug(0, "Setting jmpbuf for read struct\n");
A
Andreas Dilger 已提交
612
#ifdef USE_FAR_KEYWORD
613
   if (setjmp(jmpbuf))
A
Andreas Dilger 已提交
614
#else
615
   if (setjmp(png_jmpbuf(read_ptr)))
A
Andreas Dilger 已提交
616
#endif
G
Guy Schalnat 已提交
617
   {
618
      fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
A
Andreas Dilger 已提交
619
      png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
620
      png_destroy_info_struct(write_ptr, &write_end_info_ptr);
A
Andreas Dilger 已提交
621
      png_destroy_write_struct(&write_ptr, &write_info_ptr);
G
Guy Schalnat 已提交
622 623
      fclose(fpin);
      fclose(fpout);
624
      return (1);
G
Guy Schalnat 已提交
625
   }
626
#ifdef USE_FAR_KEYWORD
627
   png_memcpy(png_jmpbuf(read_ptr),jmpbuf,sizeof(jmp_buf));
628
#endif
A
Andreas Dilger 已提交
629

630
   png_debug(0, "Setting jmpbuf for write struct\n");
A
Andreas Dilger 已提交
631
#ifdef USE_FAR_KEYWORD
632
   if (setjmp(jmpbuf))
A
Andreas Dilger 已提交
633
#else
634
   if (setjmp(png_jmpbuf(write_ptr)))
A
Andreas Dilger 已提交
635
#endif
G
Guy Schalnat 已提交
636
   {
637
      fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
A
Andreas Dilger 已提交
638
      png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
639
      png_destroy_info_struct(write_ptr, &write_end_info_ptr);
A
Andreas Dilger 已提交
640
      png_destroy_write_struct(&write_ptr, &write_info_ptr);
G
Guy Schalnat 已提交
641 642
      fclose(fpin);
      fclose(fpout);
643
      return (1);
G
Guy Schalnat 已提交
644
   }
A
Andreas Dilger 已提交
645
#ifdef USE_FAR_KEYWORD
646
   png_memcpy(png_jmpbuf(write_ptr),jmpbuf,sizeof(jmp_buf));
647
#endif
A
Andreas Dilger 已提交
648
#endif
649

A
Andreas Dilger 已提交
650
   png_debug(0, "Initializing input and output streams\n");
651
#if !defined(PNG_NO_STDIO)
G
Guy Schalnat 已提交
652 653
   png_init_io(read_ptr, fpin);
   png_init_io(write_ptr, fpout);
654
#else
655 656
   png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data);
   png_set_write_fn(write_ptr, (png_voidp)fpout,  pngtest_write_data,
657
#if defined(PNG_WRITE_FLUSH_SUPPORTED)
658
      pngtest_flush);
659 660 661
#else
      NULL);
#endif
662 663 664 665 666 667 668 669 670 671 672 673
#endif
   if(status_dots_requested == 1)
   {
      png_set_write_status_fn(write_ptr, write_row_callback);
      png_set_read_status_fn(read_ptr, read_row_callback);
   }
   else
   {
      png_set_write_status_fn(write_ptr, NULL);
      png_set_read_status_fn(read_ptr, NULL);
   }

674 675 676 677 678 679 680 681 682 683 684 685
#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
G
Guy Schalnat 已提交
686

687 688 689 690 691 692 693 694 695
#define HANDLE_CHUNK_IF_SAFE      2
#define HANDLE_CHUNK_ALWAYS       3
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
   png_set_keep_unknown_chunks(read_ptr, HANDLE_CHUNK_ALWAYS, NULL, 0);
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
   png_set_keep_unknown_chunks(write_ptr, HANDLE_CHUNK_IF_SAFE, NULL, 0);
#endif

A
Andreas Dilger 已提交
696 697
   png_debug(0, "Reading info struct\n");
   png_read_info(read_ptr, read_info_ptr);
G
Guy Schalnat 已提交
698

A
Andreas Dilger 已提交
699 700 701
   png_debug(0, "Transferring info struct\n");
   {
      int interlace_type, compression_type, filter_type;
G
Guy Schalnat 已提交
702

A
Andreas Dilger 已提交
703 704 705 706
      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,
707
#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
A
Andreas Dilger 已提交
708
            color_type, interlace_type, compression_type, filter_type);
709 710 711
#else
            color_type, PNG_INTERLACE_NONE, compression_type, filter_type);
#endif
A
Andreas Dilger 已提交
712 713
      }
   }
714
#if defined(PNG_FIXED_POINT_SUPPORTED)
715
#if defined(PNG_cHRM_SUPPORTED)
G
Guy Schalnat 已提交
716
   {
717
      png_fixed_point white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
718 719 720
         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))
A
Andreas Dilger 已提交
721
      {
722 723
         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);
A
Andreas Dilger 已提交
724
      }
G
Guy Schalnat 已提交
725
   }
A
Andreas Dilger 已提交
726
#endif
727
#if defined(PNG_gAMA_SUPPORTED)
A
Andreas Dilger 已提交
728
   {
729
      png_fixed_point gamma;
G
Guy Schalnat 已提交
730

731
      if (png_get_gAMA_fixed(read_ptr, read_info_ptr, &gamma))
A
Andreas Dilger 已提交
732
      {
733
         png_set_gAMA_fixed(write_ptr, write_info_ptr, gamma);
A
Andreas Dilger 已提交
734 735 736
      }
   }
#endif
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
#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 */
763
#if defined(PNG_iCCP_SUPPORTED)
G
Guy Schalnat 已提交
764
   {
765 766
      png_charp name;
      png_charp profile;
767
      png_uint_32 proflen;
768
      int compression_type;
A
Andreas Dilger 已提交
769

770 771
      if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type,
                      &profile, &proflen))
A
Andreas Dilger 已提交
772
      {
773 774
         png_set_iCCP(write_ptr, write_info_ptr, name, compression_type,
                      profile, proflen);
A
Andreas Dilger 已提交
775
      }
G
Guy Schalnat 已提交
776
   }
777
#endif
778
#if defined(PNG_sRGB_SUPPORTED)
779
   {
780
      int intent;
781 782 783 784 785 786

      if (png_get_sRGB(read_ptr, read_info_ptr, &intent))
      {
         png_set_sRGB(write_ptr, write_info_ptr, intent);
      }
   }
A
Andreas Dilger 已提交
787
#endif
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
   {
      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)
G
Guy Schalnat 已提交
808
   {
A
Andreas Dilger 已提交
809 810 811 812 813 814
      png_uint_16p hist;

      if (png_get_hIST(read_ptr, read_info_ptr, &hist))
      {
         png_set_hIST(write_ptr, write_info_ptr, hist);
      }
G
Guy Schalnat 已提交
815
   }
A
Andreas Dilger 已提交
816
#endif
817
#if defined(PNG_oFFs_SUPPORTED)
A
Andreas Dilger 已提交
818
   {
819
      png_int_32 offset_x, offset_y;
A
Andreas Dilger 已提交
820
      int unit_type;
G
Guy Schalnat 已提交
821

A
Andreas Dilger 已提交
822 823 824 825 826 827
      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
828
#if defined(PNG_pCAL_SUPPORTED)
A
Andreas Dilger 已提交
829 830 831 832 833 834 835 836 837 838 839 840 841 842
   {
      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
843
#if defined(PNG_pHYs_SUPPORTED)
A
Andreas Dilger 已提交
844 845 846 847 848 849 850 851 852 853
   {
      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
854
#if defined(PNG_sBIT_SUPPORTED)
A
Andreas Dilger 已提交
855
   {
856
      png_color_8p sig_bit;
A
Andreas Dilger 已提交
857

858
      if (png_get_sBIT(read_ptr, read_info_ptr, &sig_bit))
A
Andreas Dilger 已提交
859
      {
860
         png_set_sBIT(write_ptr, write_info_ptr, sig_bit);
A
Andreas Dilger 已提交
861 862
      }
   }
863 864 865
#endif
#if defined(PNG_sCAL_SUPPORTED)
#ifdef PNG_FLOATING_POINT_SUPPORTED
G
Guy Schalnat 已提交
866
   {
867
      int unit;
868
      double width, height;
A
Andreas Dilger 已提交
869

870
      if (png_get_sCAL(read_ptr, read_info_ptr, &unit, &width, &height))
G
Guy Schalnat 已提交
871
      {
872 873 874 875
         png_set_sCAL(write_ptr, write_info_ptr, unit, width, height);
      }
   }
#else
876
#ifdef PNG_FIXED_POINT_SUPPORTED
877
   {
878 879
      int unit;
      png_charp width, height;
880 881 882 883

      if (png_get_sCAL_s(read_ptr, read_info_ptr, &unit, &width, &height))
      {
         png_set_sCAL_s(write_ptr, write_info_ptr, unit, width, height);
A
Andreas Dilger 已提交
884 885
      }
   }
G
Guy Schalnat 已提交
886
#endif
887 888
#endif
#endif
889
#if defined(PNG_TEXT_SUPPORTED)
A
Andreas Dilger 已提交
890 891 892 893 894 895
   {
      png_textp text_ptr;
      int num_text;

      if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
      {
896
         png_debug1(0, "Handling %d iTXt/tEXt/zTXt chunks\n", num_text);
A
Andreas Dilger 已提交
897 898 899 900
         png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
      }
   }
#endif
901
#if defined(PNG_tIME_SUPPORTED)
A
Andreas Dilger 已提交
902 903 904 905 906 907
   {
      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);
908 909 910 911 912 913 914
#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 */
915
      }
A
Andreas Dilger 已提交
916 917
   }
#endif
918
#if defined(PNG_tRNS_SUPPORTED)
A
Andreas Dilger 已提交
919 920 921 922 923 924 925 926 927 928 929 930 931
   {
      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
932 933 934 935 936 937 938 939 940 941 942 943 944 945
#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++)
946 947
           png_set_unknown_chunk_location(write_ptr, write_info_ptr, i,
             unknowns[i].location);
948 949 950
      }
   }
#endif
A
Andreas Dilger 已提交
951 952

   png_debug(0, "\nWriting info struct\n");
953 954 955 956

/* If we wanted, we could write info in two steps:
   png_write_info_before_PLTE(write_ptr, write_info_ptr);
 */
A
Andreas Dilger 已提交
957 958
   png_write_info(write_ptr, write_info_ptr);

959
   png_debug(0, "\nAllocating row buffer \n");
960
   row_buf = (png_bytep)png_malloc(read_ptr,
A
Andreas Dilger 已提交
961 962 963 964 965
      png_get_rowbytes(read_ptr, read_info_ptr));
   if (row_buf == NULL)
   {
      fprintf(STDERR, "No memory to allocate row buffer\n");
      png_destroy_read_struct(&read_ptr, &read_info_ptr, (png_infopp)NULL);
966
      png_destroy_info_struct(write_ptr, &write_end_info_ptr);
A
Andreas Dilger 已提交
967 968 969
      png_destroy_write_struct(&write_ptr, &write_info_ptr);
      fclose(fpin);
      fclose(fpout);
970
      return (1);
A
Andreas Dilger 已提交
971
   }
972
   png_debug(0, "Writing row data\n");
A
Andreas Dilger 已提交
973

974 975
#if defined(PNG_READ_INTERLACING_SUPPORTED) || \
  defined(PNG_WRITE_INTERLACING_SUPPORTED)
A
Andreas Dilger 已提交
976 977
   num_pass = png_set_interlace_handling(read_ptr);
   png_set_interlace_handling(write_ptr);
978 979 980
#else
   num_pass=1;
#endif
A
Andreas Dilger 已提交
981

982 983 984 985 986
#ifdef PNGTEST_TIMING
   t_stop = (float)clock();
   t_misc += (t_stop - t_start);
   t_start = t_stop;
#endif
A
Andreas Dilger 已提交
987 988
   for (pass = 0; pass < num_pass; pass++)
   {
989
      png_debug1(0, "Writing row data for pass %d\n",pass);
A
Andreas Dilger 已提交
990 991 992
      for (y = 0; y < height; y++)
      {
         png_read_rows(read_ptr, (png_bytepp)&row_buf, (png_bytepp)NULL, 1);
993 994 995 996 997
#ifdef PNGTEST_TIMING
         t_stop = (float)clock();
         t_decode += (t_stop - t_start);
         t_start = t_stop;
#endif
G
Guy Schalnat 已提交
998
         png_write_rows(write_ptr, (png_bytepp)&row_buf, 1);
999 1000 1001 1002 1003
#ifdef PNGTEST_TIMING
         t_stop = (float)clock();
         t_encode += (t_stop - t_start);
         t_start = t_stop;
#endif
G
Guy Schalnat 已提交
1004 1005 1006
      }
   }

1007
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
1008
   png_free_data(read_ptr, read_info_ptr, PNG_FREE_UNKN, -1);
1009 1010
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
1011
   png_free_data(write_ptr, write_info_ptr, PNG_FREE_UNKN, -1);
1012 1013
#endif

A
Andreas Dilger 已提交
1014
   png_debug(0, "Reading and writing end_info data\n");
1015

A
Andreas Dilger 已提交
1016
   png_read_end(read_ptr, end_info_ptr);
1017
#if defined(PNG_TEXT_SUPPORTED)
1018 1019 1020 1021 1022 1023
   {
      png_textp text_ptr;
      int num_text;

      if (png_get_text(read_ptr, end_info_ptr, &text_ptr, &num_text) > 0)
      {
1024
         png_debug1(0, "Handling %d iTXt/tEXt/zTXt chunks\n", num_text);
1025 1026 1027 1028
         png_set_text(write_ptr, write_end_info_ptr, text_ptr, num_text);
      }
   }
#endif
1029
#if defined(PNG_tIME_SUPPORTED)
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
   {
      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 */
      }
   }
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
#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++)
1061 1062
           png_set_unknown_chunk_location(write_ptr, write_end_info_ptr, i,
             unknowns[i].location);
1063 1064
      }
   }
1065 1066
#endif
   png_write_end(write_ptr, write_end_info_ptr);
1067

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
#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
G
Guy Schalnat 已提交
1078

A
Andreas Dilger 已提交
1079
   png_debug(0, "Destroying data structs\n");
1080
   png_free(read_ptr, row_buf);
A
Andreas Dilger 已提交
1081
   png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
1082
   png_destroy_info_struct(write_ptr, &write_end_info_ptr);
A
Andreas Dilger 已提交
1083
   png_destroy_write_struct(&write_ptr, &write_info_ptr);
G
Guy Schalnat 已提交
1084 1085 1086 1087

   fclose(fpin);
   fclose(fpout);

A
Andreas Dilger 已提交
1088 1089
   png_debug(0, "Opening files for comparison\n");
   if ((fpin = fopen(inname, "rb")) == NULL)
G
Guy Schalnat 已提交
1090
   {
G
Guy Schalnat 已提交
1091
      fprintf(STDERR, "Could not find file %s\n", inname);
1092
      return (1);
G
Guy Schalnat 已提交
1093 1094
   }

A
Andreas Dilger 已提交
1095
   if ((fpout = fopen(outname, "rb")) == NULL)
G
Guy Schalnat 已提交
1096
   {
G
Guy Schalnat 已提交
1097
      fprintf(STDERR, "Could not find file %s\n", outname);
G
Guy Schalnat 已提交
1098
      fclose(fpin);
1099
      return (1);
G
Guy Schalnat 已提交
1100
   }
A
Andreas Dilger 已提交
1101

1102
   for(;;)
G
Guy Schalnat 已提交
1103
   {
A
Andreas Dilger 已提交
1104
      png_size_t num_in, num_out;
G
Guy Schalnat 已提交
1105

1106 1107
      READFILE(fpin, inbuf, 1, num_in);
      READFILE(fpout, outbuf, 1, num_out);
G
Guy Schalnat 已提交
1108 1109 1110

      if (num_in != num_out)
      {
1111
         fprintf(STDERR, "\nFiles %s and %s are of a different size\n",
G
Guy Schalnat 已提交
1112
                 inname, outname);
1113 1114 1115
         if(wrote_question == 0)
         {
            fprintf(STDERR,
1116 1117
         "   Was %s written with the same maximum IDAT chunk size (%d bytes),",
              inname,PNG_ZBUF_SIZE);
1118
            fprintf(STDERR,
1119
              "\n   filtering heuristic (libpng default), compression");
1120
            fprintf(STDERR,
1121
              " level (zlib default),\n   and zlib version (%s)?\n\n",
1122 1123 1124
              ZLIB_VERSION);
            wrote_question=1;
         }
G
Guy Schalnat 已提交
1125 1126
         fclose(fpin);
         fclose(fpout);
1127
         return (0);
G
Guy Schalnat 已提交
1128 1129 1130 1131 1132
      }

      if (!num_in)
         break;

A
Andreas Dilger 已提交
1133
      if (png_memcmp(inbuf, outbuf, num_in))
G
Guy Schalnat 已提交
1134
      {
1135
         fprintf(STDERR, "\nFiles %s and %s are different\n", inname, outname);
1136 1137 1138
         if(wrote_question == 0)
         {
            fprintf(STDERR,
1139 1140
         "   Was %s written with the same maximum IDAT chunk size (%d bytes),",
                 inname,PNG_ZBUF_SIZE);
1141
            fprintf(STDERR,
1142
              "\n   filtering heuristic (libpng default), compression");
1143
            fprintf(STDERR,
1144
              " level (zlib default),\n   and zlib version (%s)?\n\n",
1145 1146 1147
              ZLIB_VERSION);
            wrote_question=1;
         }
G
Guy Schalnat 已提交
1148 1149
         fclose(fpin);
         fclose(fpout);
1150
         return (0);
G
Guy Schalnat 已提交
1151 1152 1153 1154 1155
      }
   }

   fclose(fpin);
   fclose(fpout);
G
Guy Schalnat 已提交
1156

1157
   return (0);
G
Guy Schalnat 已提交
1158
}
G
Guy Schalnat 已提交
1159

1160 1161
/* input and output filenames */
#ifdef RISCOS
1162 1163
static PNG_CONST char *inname = "pngtest/png";
static PNG_CONST char *outname = "pngout/png";
1164
#else
1165 1166
static PNG_CONST char *inname = "pngtest.png";
static PNG_CONST char *outname = "pngout.png";
1167 1168 1169 1170 1171 1172 1173 1174 1175
#endif

int
main(int argc, char *argv[])
{
   int multiple = 0;
   int ierror = 0;

   fprintf(STDERR, "Testing libpng version %s\n", PNG_LIBPNG_VER_STRING);
1176
   fprintf(STDERR, "   with zlib   version %s\n", ZLIB_VERSION);
1177
   fprintf(STDERR,"%s",png_get_copyright(NULL));
1178
   /* Show the version of libpng used in building the library */
1179 1180
   fprintf(STDERR," library (%lu):%s", png_access_version_number(),
      png_get_header_version(NULL));
1181
   /* Show the version of libpng used in building the application */
1182
   fprintf(STDERR," pngtest (%lu):%s", (unsigned long)PNG_LIBPNG_VER,
1183
      PNG_HEADER_VERSION_STRING);
1184 1185
   fprintf(STDERR," sizeof(png_struct)=%d, sizeof(png_info)=%d\n",
                    sizeof(png_struct), sizeof(png_info));
1186 1187 1188 1189 1190

   /* 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 */
1191
#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
1192
      fprintf(STDERR, " NOTE: Zlib compiled for max 64k, libpng not\n");
1193
#endif
1194
   /* I think the following can happen. */
1195
#if !defined(MAXSEG_64K) && defined(PNG_MAX_MALLOC_64K)
1196
      fprintf(STDERR, " NOTE: libpng compiled for max 64k, zlib not\n");
1197
#endif
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209

   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)
   {
1210
      if (strcmp(argv[1], "-m") == 0)
1211
      {
1212
         multiple = 1;
1213 1214
         status_dots_requested = 0;
      }
1215 1216 1217 1218 1219
      else if (strcmp(argv[1], "-mv") == 0 ||
               strcmp(argv[1], "-vm") == 0 )
      {
         multiple = 1;
         verbose = 1;
1220
         status_dots_requested = 1;
1221 1222 1223 1224
      }
      else if (strcmp(argv[1], "-v") == 0)
      {
         verbose = 1;
1225
         status_dots_requested = 1;
1226 1227 1228
         inname = argv[2];
      }
      else
1229
      {
1230
         inname = argv[1];
1231 1232
         status_dots_requested = 0;
      }
1233 1234
   }

1235 1236
   if (!multiple && argc == 3+verbose)
     outname = argv[2+verbose];
1237

1238
   if ((!multiple && argc > 3+verbose) || (multiple && argc < 2))
1239
   {
1240 1241
     fprintf(STDERR,
       "usage: %s [infile.png] [outfile.png]\n\t%s -m {infile.png}\n",
1242
        argv[0], argv[0]);
1243 1244 1245 1246
     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);
1247 1248 1249 1250 1251 1252
     exit(1);
   }

   if (multiple)
   {
      int i;
1253
#ifdef PNG_USER_MEM_SUPPORTED
1254 1255
      int allocation_now = current_allocation;
#endif
1256
      for (i=2; i<argc; ++i)
1257
      {
1258 1259 1260 1261
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
         int k;
#endif
         int kerror;
1262 1263
         fprintf(STDERR, "Testing %s:",argv[i]);
         kerror = test_one_file(argv[i], outname);
1264
         if (kerror == 0)
1265
         {
1266
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1267
            fprintf(STDERR, "\n PASS (%lu zero samples)\n",zero_samples);
1268
#else
1269
            fprintf(STDERR, " PASS\n");
1270
#endif
1271 1272 1273 1274 1275 1276
#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
1277 1278 1279 1280 1281 1282 1283 1284
#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
         {
1285 1286
            fprintf(STDERR, " FAIL\n");
            ierror += kerror;
1287 1288
         }
#ifdef PNG_USER_MEM_SUPPORTED
1289 1290 1291
         if (allocation_now != current_allocation)
            fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
               current_allocation-allocation_now);
1292 1293
         if (current_allocation != 0)
         {
1294 1295 1296 1297
            memory_infop pinfo = pinformation;

            fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
               current_allocation);
1298 1299
            while (pinfo != NULL)
            {
1300 1301
               fprintf(STDERR, " %d bytes at %x\n", pinfo->size, pinfo->pointer);
               pinfo = pinfo->next;
1302
            }
1303
         }
1304 1305
#endif
      }
1306
#ifdef PNG_USER_MEM_SUPPORTED
1307
         fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1308
            current_allocation);
1309
         fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1310
            maximum_allocation);
1311 1312 1313 1314
         fprintf(STDERR, " Total   memory allocation: %10d bytes\n",
            total_allocation);
         fprintf(STDERR, "     Number of allocations: %10d\n",
            num_allocations);
1315
#endif
1316 1317 1318
   }
   else
   {
1319
      int i;
1320 1321
      for (i=0; i<3; ++i)
      {
1322
         int kerror;
1323
#ifdef PNG_USER_MEM_SUPPORTED
1324 1325
         int allocation_now = current_allocation;
#endif
1326 1327
         if (i == 1) status_dots_requested = 1;
         else if(verbose == 0)status_dots_requested = 0;
1328 1329
         if (i == 0 || verbose == 1 || ierror != 0)
            fprintf(STDERR, "Testing %s:",inname);
1330
         kerror = test_one_file(inname, outname);
1331 1332
         if(kerror == 0)
         {
1333
            if(verbose == 1 || i == 2)
1334
            {
1335
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
1336
                int k;
1337
#endif
1338
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1339
                fprintf(STDERR, "\n PASS (%lu zero samples)\n",zero_samples);
1340 1341 1342
#else
                fprintf(STDERR, " PASS\n");
#endif
1343 1344 1345 1346 1347 1348
#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
1349
#if defined(PNG_TIME_RFC1123_SUPPORTED)
1350 1351
             if(tIME_chunk_present != 0)
                fprintf(STDERR, " tIME = %s\n",tIME_string);
1352 1353
#endif /* PNG_TIME_RFC1123_SUPPORTED */
            }
1354 1355 1356 1357 1358
         }
         else
         {
            if(verbose == 0 && i != 2)
               fprintf(STDERR, "Testing %s:",inname);
1359 1360
            fprintf(STDERR, " FAIL\n");
            ierror += kerror;
1361
         }
1362
#ifdef PNG_USER_MEM_SUPPORTED
1363 1364 1365
         if (allocation_now != current_allocation)
             fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
               current_allocation-allocation_now);
1366 1367
         if (current_allocation != 0)
         {
1368
             memory_infop pinfo = pinformation;
1369

1370 1371
             fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
                current_allocation);
1372 1373 1374 1375
             while (pinfo != NULL)
             {
                fprintf(STDERR," %d bytes at %x\n",
                   pinfo->size, pinfo->pointer);
1376 1377 1378 1379
                pinfo = pinfo->next;
             }
          }
#endif
1380
       }
1381
#ifdef PNG_USER_MEM_SUPPORTED
1382
       fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1383
          current_allocation);
1384
       fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1385
          maximum_allocation);
1386 1387 1388 1389
       fprintf(STDERR, " Total   memory allocation: %10d bytes\n",
          total_allocation);
       fprintf(STDERR, "     Number of allocations: %10d\n",
            num_allocations);
1390
#endif
1391 1392
   }

1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
#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

1407 1408 1409 1410
   if (ierror == 0)
      fprintf(STDERR, "libpng passes test\n");
   else
      fprintf(STDERR, "libpng FAILS test\n");
1411
   return (int)(ierror != 0);
1412
}
1413

1414
/* Generate a compiler error if there is an old png.h in the search path. */
1415
typedef version_1_0_8beta2 your_png_h_is_not_version_1_0_8beta2;