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

G
Guy Schalnat 已提交
2
/* pngtest.c - a simple test program to test libpng
3
 *
4
 * Last changed in libpng 1.2.6 - August 15, 2004
5
 * For conditions of distribution and use, see copyright notice in png.h
6
 * Copyright (c) 1998-2004 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
 * 3) unknown unsafe-to-copy ancillary chunks or unknown critical chunks
 *    exist in the input file.
21 22
 * 4) others not listed here...
 * In these cases, it is best to check with another tool such as "pngcheck"
23
 * to see what the differences between the two files are.
24 25 26
 *
 * 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
27 28
 * 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 ..."
29
 */
G
Guy Schalnat 已提交
30

31 32
#include "png.h"

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

54
#if defined(PNG_NO_STDIO)
55 56 57 58 59
#  if defined(_WIN32_WCE)
     typedef HANDLE                png_FILE_p;
#  else
     typedef FILE                * png_FILE_p;
#  endif
60 61
#endif

A
Andreas Dilger 已提交
62 63
/* Makes pngtest verbose so we can find problems (needs to be before png.h) */
#ifndef PNG_DEBUG
64 65 66 67
#  define PNG_DEBUG 0
#endif

#if !PNG_DEBUG
68
#  define SINGLE_ROWBUF_ALLOC  /* makes buffer overruns easier to nail */
69
#endif
A
Andreas Dilger 已提交
70

71 72 73 74
/* Turn on CPU timing
#define PNGTEST_TIMING
*/

75 76 77 78
#ifdef PNG_NO_FLOATING_POINT_SUPPORTED
#undef PNGTEST_TIMING
#endif

79 80 81 82 83
#ifdef PNGTEST_TIMING
static float t_start, t_stop, t_decode, t_encode, t_misc;
#include <time.h>
#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 108 109 110 111 112 113 114 115
/* In case a system header (e.g., on AIX) defined jmpbuf */
#ifdef jmpbuf
#  undef jmpbuf
#endif

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

116
void
117 118 119
#ifdef PNG_1_0_X
PNGAPI
#endif
120
read_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass);
121
void
122 123 124
#ifdef PNG_1_0_X
PNGAPI
#endif
125
read_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
126
{
127
    if(png_ptr == NULL || row_number > PNG_UINT_31_MAX) return;
128 129 130 131
    if(status_pass != pass)
    {
       fprintf(stdout,"\n Pass %d: ",pass);
       status_pass = pass;
132
       status_dots = 31;
133 134 135 136 137 138 139 140 141
    }
    status_dots--;
    if(status_dots == 0)
    {
       fprintf(stdout, "\n         ");
       status_dots=30;
    }
    fprintf(stdout, "r");
}
142

143
void
144 145 146
#ifdef PNG_1_0_X
PNGAPI
#endif
147
write_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass);
148
void
149 150 151
#ifdef PNG_1_0_X
PNGAPI
#endif
152
write_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
153
{
154
    if(png_ptr == NULL || row_number > PNG_UINT_31_MAX || pass > 7) return;
155 156 157 158
    fprintf(stdout, "w");
}


159 160 161 162 163 164
#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
165 166 167
#ifdef PNG_1_0_X
PNGAPI
#endif
168 169
count_filters(png_structp png_ptr, png_row_infop row_info, png_bytep data);
void
170 171 172
#ifdef PNG_1_0_X
PNGAPI
#endif
173 174 175 176 177 178 179
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

180
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
181
/* example of using user transform callback (we don't transform anything,
182
   but merely count the zero samples) */
183

184
static png_uint_32 zero_samples;
185

186
void
187 188 189
#ifdef PNG_1_0_X
PNGAPI
#endif
190
count_zero_samples(png_structp png_ptr, png_row_infop row_info, png_bytep data);
191
void
192 193 194
#ifdef PNG_1_0_X
PNGAPI
#endif
195
count_zero_samples(png_structp png_ptr, png_row_infop row_info, png_bytep data)
196 197
{
   png_bytep dp = data;
198
   if(png_ptr == NULL)return;
199 200 201 202 203 204 205 206 207 208

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

209

210
    /* counts the number of zero samples (or zero pixels if color_type is 3 */
211 212 213 214

    if(row_info->color_type == 0 || row_info->color_type == 3)
    {
       int pos=0;
215 216
       png_uint_32 n, nstop;
       for (n=0, nstop=row_info->width; n<nstop; n++)
217 218
       {
          if(row_info->bit_depth == 1)
219
          {
220
             if(((*dp << pos++ ) & 0x80) == 0) zero_samples++;
221 222
             if(pos == 8)
             {
223
                pos = 0;
224 225
                dp++;
             }
226
          }
227
          if(row_info->bit_depth == 2)
228
          {
229
             if(((*dp << (pos+=2)) & 0xc0) == 0) zero_samples++;
230 231
             if(pos == 8)
             {
232
                pos = 0;
233 234
                dp++;
             }
235
          }
236
          if(row_info->bit_depth == 4)
237
          {
238
             if(((*dp << (pos+=4)) & 0xf0) == 0) zero_samples++;
239 240
             if(pos == 8)
             {
241
                pos = 0;
242 243
                dp++;
             }
244
          }
245
          if(row_info->bit_depth == 8)
246
             if(*dp++ == 0) zero_samples++;
247 248
          if(row_info->bit_depth == 16)
          {
249
             if((*dp | *(dp+1)) == 0) zero_samples++;
250 251 252 253 254 255
             dp+=2;
          }
       }
    }
    else /* other color types */
    {
256
       png_uint_32 n, nstop;
257 258 259 260
       int channel;
       int color_channels = row_info->channels;
       if(row_info->color_type > 3)color_channels--;

261
       for (n=0, nstop=row_info->width; n<nstop; n++)
262 263 264 265
       {
          for (channel = 0; channel < color_channels; channel++)
          {
             if(row_info->bit_depth == 8)
266
                if(*dp++ == 0) zero_samples++;
267 268
             if(row_info->bit_depth == 16)
             {
269
                if((*dp | *(dp+1)) == 0) zero_samples++;
270 271 272 273 274 275 276 277 278 279 280
                dp+=2;
             }
          }
          if(row_info->color_type > 3)
          {
             dp++;
             if(row_info->bit_depth == 16)dp++;
          }
       }
    }
}
281
#endif /* PNG_WRITE_USER_TRANSFORM_SUPPORTED */
282

283
static int wrote_question = 0;
284

285
#if defined(PNG_NO_STDIO)
286 287 288
/* 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. */
289
/* This is the function that does the actual reading of data.  If you are
290 291 292
   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. */
293

294 295
#ifndef USE_FAR_KEYWORD
static void
296
pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
297 298 299 300 301 302
{
   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.
    */
303
   READFILE((png_FILE_p)png_ptr->io_ptr, data, length, check);
304 305 306

   if (check != length)
   {
307
      png_error(png_ptr, "Read Error!");
308 309
   }
}
G
Guy Schalnat 已提交
310
#else
311 312 313 314
/* 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.
*/
315

316 317
#define NEAR_BUF_SIZE 1024
#define MIN(a,b) (a <= b ? a : b)
318

319
static void
320
pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
321 322 323
{
   int check;
   png_byte *n_data;
324
   png_FILE_p io_ptr;
325 326 327

   /* Check if data really is near. If so, use usual code. */
   n_data = (png_byte *)CVT_PTR_NOCHECK(data);
328
   io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
329 330
   if ((png_bytep)n_data == data)
   {
331
      READFILE(io_ptr, n_data, length, check);
332 333 334 335 336 337 338 339 340 341
   }
   else
   {
      png_byte buf[NEAR_BUF_SIZE];
      png_size_t read, remaining, err;
      check = 0;
      remaining = length;
      do
      {
         read = MIN(NEAR_BUF_SIZE, remaining);
342
         READFILE(io_ptr, buf, 1, err);
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
         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");
   }
}
358
#endif /* USE_FAR_KEYWORD */
G
Guy Schalnat 已提交
359

360
#if defined(PNG_WRITE_FLUSH_SUPPORTED)
361
static void
362
pngtest_flush(png_structp png_ptr)
363
{
364 365 366
#if !defined(_WIN32_WCE)
   png_FILE_p io_ptr;
   io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));
367 368
   if (io_ptr != NULL)
      fflush(io_ptr);
369
#endif
370 371
}
#endif
G
Guy Schalnat 已提交
372

373
/* This is the function that does the actual writing of data.  If you are
374 375 376 377 378
   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
379
pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
380 381 382
{
   png_uint_32 check;

383
   WRITEFILE((png_FILE_p)png_ptr->io_ptr,  data, length, check);
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
   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
399
pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
400 401 402
{
   png_uint_32 check;
   png_byte *near_data;  /* Needs to be "png_byte *" instead of "png_bytep" */
403
   png_FILE_p io_ptr;
404 405 406

   /* Check if data really is near. If so, use usual code. */
   near_data = (png_byte *)CVT_PTR_NOCHECK(data);
407
   io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
408 409
   if ((png_bytep)near_data == data)
   {
410
      WRITEFILE(io_ptr, near_data, length, check);
411 412 413 414 415 416 417 418 419 420 421
   }
   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 */
422
         WRITEFILE(io_ptr, buf, written, err);
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
         if (err != written)
            break;
         else
            check += err;
         data += written;
         remaining -= written;
      }
      while (remaining != 0);
   }
   if (check != length)
   {
      png_error(png_ptr, "Write Error");
   }
}

438
#endif /* USE_FAR_KEYWORD */
439 440 441 442 443 444 445

/* 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
446
pngtest_warning(png_structp png_ptr, png_const_charp message)
447 448 449 450 451 452 453 454 455 456 457 458 459
{
   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
460
pngtest_error(png_structp png_ptr, png_const_charp message)
461
{
462
   pngtest_warning(png_ptr, message);
463 464
   /* We can return because png_error calls the default handler, which is
    * actually OK in this case. */
465
}
466
#endif /* PNG_NO_STDIO */
467 468
/* END of code to validate stdio-free compilation */

469
/* START of code to validate memory allocation and deallocation */
470
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
471 472 473 474 475 476 477 478 479

/* 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. */
480 481
typedef struct memory_information
{
482
   png_uint_32               size;
483
   png_voidp                 pointer;
484 485 486 487 488 489 490
   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;
491 492
static int total_allocation = 0;
static int num_allocations = 0;
493

494 495
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));
496 497

png_voidp
498 499
png_debug_malloc(png_structp png_ptr, png_uint_32 size)
{
500 501 502 503

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

504
   if (size == 0)
505
      return (NULL);
506 507 508 509

   /* This calls the library allocator twice, once to get the requested
      buffer and once to get a new free list entry. */
   {
510
      /* Disable malloc_fn and free_fn */
511
      memory_infop pinfo;
512
      png_set_mem_fn(png_ptr, NULL, NULL, NULL);
513
      pinfo = (memory_infop)png_malloc(png_ptr,
514
         (png_uint_32)png_sizeof (*pinfo));
515 516
      pinfo->size = size;
      current_allocation += size;
517 518
      total_allocation += size;
      num_allocations ++;
519 520
      if (current_allocation > maximum_allocation)
         maximum_allocation = current_allocation;
521 522 523 524
      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);
525 526 527 528
      if (size != 0 && pinfo->pointer == NULL)
      {
         current_allocation -= size;
         total_allocation -= size;
529 530
         png_error(png_ptr,
           "out of memory in pngtest->png_debug_malloc.");
531
      }
532 533 534 535
      pinfo->next = pinformation;
      pinformation = pinfo;
      /* Make sure the caller isn't assuming zeroed memory. */
      png_memset(pinfo->pointer, 0xdd, pinfo->size);
536
      if(verbose)
537 538
         printf("png_malloc %lu bytes at %x\n",(unsigned long)size,
          pinfo->pointer);
539
      return (png_voidp)(pinfo->pointer);
540 541 542 543 544
   }
}

/* Free a pointer.  It is removed from the list at the same time. */
void
545
png_debug_free(png_structp png_ptr, png_voidp ptr)
546 547
{
   if (png_ptr == NULL)
548
      fprintf(STDERR, "NULL pointer to png_debug_free.\n");
549 550
   if (ptr == 0)
   {
551 552 553 554 555 556 557 558 559
#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;
560 561
      for (;;)
      {
562
         memory_infop pinfo = *ppinfo;
563 564
         if (pinfo->pointer == ptr)
         {
565 566 567 568 569
            *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
570
               the memory that is to be freed. */
571
            png_memset(ptr, 0x55, pinfo->size);
572
            png_free_default(png_ptr, pinfo);
573
            pinfo=NULL;
574 575
            break;
         }
576 577
         if (pinfo->next == NULL)
         {
578
            fprintf(STDERR, "Pointer %x not found\n", (unsigned int)ptr);
579 580 581 582 583 584 585
            break;
         }
         ppinfo = &pinfo->next;
      }
   }

   /* Finally free the data. */
586 587
   if(verbose)
      printf("Freeing %x\n",ptr);
588
   png_free_default(png_ptr, ptr);
589
   ptr=NULL;
590
}
591
#endif /* PNG_USER_MEM_SUPPORTED && PNG_DEBUG */
592 593
/* END of code to test memory allocation/deallocation */

594
/* Test one file */
595 596
int
test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
G
Guy Schalnat 已提交
597
{
598 599
   static png_FILE_p fpin;
   static png_FILE_p fpout;  /* "static" prevents setjmp corruption */
600 601 602 603 604 605 606 607 608 609 610
   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
G
Guy Schalnat 已提交
611
   png_bytep row_buf;
G
Guy Schalnat 已提交
612
   png_uint_32 y;
A
Andreas Dilger 已提交
613 614 615
   png_uint_32 width, height;
   int num_pass, pass;
   int bit_depth, color_type;
616
#ifdef PNG_SETJMP_SUPPORTED
A
Andreas Dilger 已提交
617
#ifdef USE_FAR_KEYWORD
618
   jmp_buf jmpbuf;
619
#endif
620
#endif
621

622 623 624
#if defined(_WIN32_WCE)
   TCHAR path[MAX_PATH];
#endif
625
   char inbuf[256], outbuf[256];
G
Guy Schalnat 已提交
626

627
   row_buf = NULL;
G
Guy Schalnat 已提交
628

629 630 631 632
#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
A
Andreas Dilger 已提交
633
   if ((fpin = fopen(inname, "rb")) == NULL)
634
#endif
G
Guy Schalnat 已提交
635 636
   {
      fprintf(STDERR, "Could not find input file %s\n", inname);
637
      return (1);
G
Guy Schalnat 已提交
638 639
   }

640 641 642 643
#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
A
Andreas Dilger 已提交
644
   if ((fpout = fopen(outname, "wb")) == NULL)
645
#endif
G
Guy Schalnat 已提交
646
   {
G
Guy Schalnat 已提交
647
      fprintf(STDERR, "Could not open output file %s\n", outname);
648
      FCLOSE(fpin);
649
      return (1);
G
Guy Schalnat 已提交
650 651
   }

A
Andreas Dilger 已提交
652
   png_debug(0, "Allocating read and write structures\n");
653
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
654 655
   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,
656 657
      (png_malloc_ptr)png_debug_malloc, (png_free_ptr)png_debug_free);
#else
658 659
   read_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, png_voidp_NULL,
      png_error_ptr_NULL, png_error_ptr_NULL);
660
#endif
661
#if defined(PNG_NO_STDIO)
662 663
   png_set_error_fn(read_ptr, (png_voidp)inname, pngtest_error,
       pngtest_warning);
664
#endif
665
#ifdef PNG_WRITE_SUPPORTED
666
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
667 668
   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,
669 670
      (png_malloc_ptr)png_debug_malloc, (png_free_ptr)png_debug_free);
#else
671 672
   write_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, png_voidp_NULL,
      png_error_ptr_NULL, png_error_ptr_NULL);
673
#endif
674
#if defined(PNG_NO_STDIO)
675 676
   png_set_error_fn(write_ptr, (png_voidp)inname, pngtest_error,
       pngtest_warning);
677
#endif
678
#endif
A
Andreas Dilger 已提交
679 680
   png_debug(0, "Allocating read_info, write_info and end_info structures\n");
   read_info_ptr = png_create_info_struct(read_ptr);
681
   end_info_ptr = png_create_info_struct(read_ptr);
682 683
#ifdef PNG_WRITE_SUPPORTED
   write_info_ptr = png_create_info_struct(write_ptr);
684
   write_end_info_ptr = png_create_info_struct(write_ptr);
685
#endif
G
Guy Schalnat 已提交
686

687
#ifdef PNG_SETJMP_SUPPORTED
688
   png_debug(0, "Setting jmpbuf for read struct\n");
A
Andreas Dilger 已提交
689
#ifdef USE_FAR_KEYWORD
690
   if (setjmp(jmpbuf))
A
Andreas Dilger 已提交
691
#else
692
   if (setjmp(png_jmpbuf(read_ptr)))
A
Andreas Dilger 已提交
693
#endif
G
Guy Schalnat 已提交
694
   {
695
      fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
696 697
      if (row_buf)
         png_free(read_ptr, row_buf);
A
Andreas Dilger 已提交
698
      png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
699
#ifdef PNG_WRITE_SUPPORTED
700
      png_destroy_info_struct(write_ptr, &write_end_info_ptr);
A
Andreas Dilger 已提交
701
      png_destroy_write_struct(&write_ptr, &write_info_ptr);
702
#endif
703 704
      FCLOSE(fpin);
      FCLOSE(fpout);
705
      return (1);
G
Guy Schalnat 已提交
706
   }
707
#ifdef USE_FAR_KEYWORD
708
   png_memcpy(png_jmpbuf(read_ptr),jmpbuf,png_sizeof(jmp_buf));
709
#endif
A
Andreas Dilger 已提交
710

711
#ifdef PNG_WRITE_SUPPORTED
712
   png_debug(0, "Setting jmpbuf for write struct\n");
A
Andreas Dilger 已提交
713
#ifdef USE_FAR_KEYWORD
714
   if (setjmp(jmpbuf))
A
Andreas Dilger 已提交
715
#else
716
   if (setjmp(png_jmpbuf(write_ptr)))
A
Andreas Dilger 已提交
717
#endif
G
Guy Schalnat 已提交
718
   {
719
      fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
A
Andreas Dilger 已提交
720
      png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
721
      png_destroy_info_struct(write_ptr, &write_end_info_ptr);
722
#ifdef PNG_WRITE_SUPPORTED
A
Andreas Dilger 已提交
723
      png_destroy_write_struct(&write_ptr, &write_info_ptr);
724
#endif
725 726
      FCLOSE(fpin);
      FCLOSE(fpout);
727
      return (1);
G
Guy Schalnat 已提交
728
   }
A
Andreas Dilger 已提交
729
#ifdef USE_FAR_KEYWORD
730
   png_memcpy(png_jmpbuf(write_ptr),jmpbuf,png_sizeof(jmp_buf));
731
#endif
732
#endif
A
Andreas Dilger 已提交
733
#endif
734

A
Andreas Dilger 已提交
735
   png_debug(0, "Initializing input and output streams\n");
736
#if !defined(PNG_NO_STDIO)
G
Guy Schalnat 已提交
737
   png_init_io(read_ptr, fpin);
738
#  ifdef PNG_WRITE_SUPPORTED
G
Guy Schalnat 已提交
739
   png_init_io(write_ptr, fpout);
740
#  endif
741
#else
742
   png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data);
743
#  ifdef PNG_WRITE_SUPPORTED
744
   png_set_write_fn(write_ptr, (png_voidp)fpout,  pngtest_write_data,
745
#    if defined(PNG_WRITE_FLUSH_SUPPORTED)
746
      pngtest_flush);
747
#    else
748
      NULL);
749 750
#    endif
#  endif
751 752 753
#endif
   if(status_dots_requested == 1)
   {
754
#ifdef PNG_WRITE_SUPPORTED
755
      png_set_write_status_fn(write_ptr, write_row_callback);
756
#endif
757 758 759 760
      png_set_read_status_fn(read_ptr, read_row_callback);
   }
   else
   {
761
#ifdef PNG_WRITE_SUPPORTED
762
      png_set_write_status_fn(write_ptr, png_write_status_ptr_NULL);
763
#endif
764
      png_set_read_status_fn(read_ptr, png_read_status_ptr_NULL);
765 766
   }

767 768 769 770 771 772 773 774 775 776 777 778
#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 已提交
779

780
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
781 782 783 784
#  ifndef PNG_HANDLE_CHUNK_ALWAYS
#    define PNG_HANDLE_CHUNK_ALWAYS       3
#  endif
   png_set_keep_unknown_chunks(read_ptr, PNG_HANDLE_CHUNK_ALWAYS,
785
      png_bytep_NULL, 0);
786 787
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
788 789 790 791
#  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,
792
      png_bytep_NULL, 0);
793 794
#endif

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

A
Andreas Dilger 已提交
798 799 800
   png_debug(0, "Transferring info struct\n");
   {
      int interlace_type, compression_type, filter_type;
G
Guy Schalnat 已提交
801

A
Andreas Dilger 已提交
802 803 804 805
      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,
806
#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
A
Andreas Dilger 已提交
807
            color_type, interlace_type, compression_type, filter_type);
808 809 810
#else
            color_type, PNG_INTERLACE_NONE, compression_type, filter_type);
#endif
A
Andreas Dilger 已提交
811 812
      }
   }
813
#if defined(PNG_FIXED_POINT_SUPPORTED)
814
#if defined(PNG_cHRM_SUPPORTED)
G
Guy Schalnat 已提交
815
   {
816
      png_fixed_point white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
817 818 819
         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 已提交
820
      {
821 822
         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 已提交
823
      }
G
Guy Schalnat 已提交
824
   }
A
Andreas Dilger 已提交
825
#endif
826
#if defined(PNG_gAMA_SUPPORTED)
A
Andreas Dilger 已提交
827
   {
828
      png_fixed_point gamma;
G
Guy Schalnat 已提交
829

830
      if (png_get_gAMA_fixed(read_ptr, read_info_ptr, &gamma))
A
Andreas Dilger 已提交
831
      {
832
         png_set_gAMA_fixed(write_ptr, write_info_ptr, gamma);
A
Andreas Dilger 已提交
833 834 835
      }
   }
#endif
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
#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 */
862
#if defined(PNG_iCCP_SUPPORTED)
G
Guy Schalnat 已提交
863
   {
864 865
      png_charp name;
      png_charp profile;
866
      png_uint_32 proflen;
867
      int compression_type;
A
Andreas Dilger 已提交
868

869 870
      if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type,
                      &profile, &proflen))
A
Andreas Dilger 已提交
871
      {
872 873
         png_set_iCCP(write_ptr, write_info_ptr, name, compression_type,
                      profile, proflen);
A
Andreas Dilger 已提交
874
      }
G
Guy Schalnat 已提交
875
   }
876
#endif
877
#if defined(PNG_sRGB_SUPPORTED)
878
   {
879
      int intent;
880 881 882 883 884 885

      if (png_get_sRGB(read_ptr, read_info_ptr, &intent))
      {
         png_set_sRGB(write_ptr, write_info_ptr, intent);
      }
   }
A
Andreas Dilger 已提交
886
#endif
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
   {
      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 已提交
907
   {
A
Andreas Dilger 已提交
908 909 910 911 912 913
      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 已提交
914
   }
A
Andreas Dilger 已提交
915
#endif
916
#if defined(PNG_oFFs_SUPPORTED)
A
Andreas Dilger 已提交
917
   {
918
      png_int_32 offset_x, offset_y;
A
Andreas Dilger 已提交
919
      int unit_type;
G
Guy Schalnat 已提交
920

A
Andreas Dilger 已提交
921 922 923 924 925 926
      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
927
#if defined(PNG_pCAL_SUPPORTED)
A
Andreas Dilger 已提交
928 929 930 931 932 933 934 935 936 937 938 939 940 941
   {
      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
942
#if defined(PNG_pHYs_SUPPORTED)
A
Andreas Dilger 已提交
943 944 945 946 947 948 949 950 951 952
   {
      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
953
#if defined(PNG_sBIT_SUPPORTED)
A
Andreas Dilger 已提交
954
   {
955
      png_color_8p sig_bit;
A
Andreas Dilger 已提交
956

957
      if (png_get_sBIT(read_ptr, read_info_ptr, &sig_bit))
A
Andreas Dilger 已提交
958
      {
959
         png_set_sBIT(write_ptr, write_info_ptr, sig_bit);
A
Andreas Dilger 已提交
960 961
      }
   }
962 963 964
#endif
#if defined(PNG_sCAL_SUPPORTED)
#ifdef PNG_FLOATING_POINT_SUPPORTED
G
Guy Schalnat 已提交
965
   {
966
      int unit;
967
      double scal_width, scal_height;
A
Andreas Dilger 已提交
968

969 970
      if (png_get_sCAL(read_ptr, read_info_ptr, &unit, &scal_width,
         &scal_height))
G
Guy Schalnat 已提交
971
      {
972
         png_set_sCAL(write_ptr, write_info_ptr, unit, scal_width, scal_height);
973 974 975
      }
   }
#else
976
#ifdef PNG_FIXED_POINT_SUPPORTED
977
   {
978
      int unit;
979
      png_charp scal_width, scal_height;
980

981 982
      if (png_get_sCAL_s(read_ptr, read_info_ptr, &unit, &scal_width,
          &scal_height))
983
      {
984
         png_set_sCAL_s(write_ptr, write_info_ptr, unit, scal_width, scal_height);
A
Andreas Dilger 已提交
985 986
      }
   }
G
Guy Schalnat 已提交
987
#endif
988 989
#endif
#endif
990
#if defined(PNG_TEXT_SUPPORTED)
A
Andreas Dilger 已提交
991 992 993 994 995 996
   {
      png_textp text_ptr;
      int num_text;

      if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
      {
997
         png_debug1(0, "Handling %d iTXt/tEXt/zTXt chunks\n", num_text);
A
Andreas Dilger 已提交
998 999 1000 1001
         png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
      }
   }
#endif
1002
#if defined(PNG_tIME_SUPPORTED)
A
Andreas Dilger 已提交
1003 1004 1005 1006 1007 1008
   {
      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);
1009
#if defined(PNG_TIME_RFC1123_SUPPORTED)
1010
         /* we have to use png_strncpy instead of "=" because the string
1011 1012
            pointed to by png_convert_to_rfc1123() gets free'ed before
            we use it */
1013 1014
         png_strncpy(tIME_string,png_convert_to_rfc1123(read_ptr,
            mod_time),30);
1015 1016
         tIME_chunk_present++;
#endif /* PNG_TIME_RFC1123_SUPPORTED */
1017
      }
A
Andreas Dilger 已提交
1018 1019
   }
#endif
1020
#if defined(PNG_tRNS_SUPPORTED)
A
Andreas Dilger 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
   {
      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
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
#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++)
1048 1049
           png_set_unknown_chunk_location(write_ptr, write_info_ptr, i,
             unknowns[i].location);
1050 1051 1052
      }
   }
#endif
A
Andreas Dilger 已提交
1053

1054
#ifdef PNG_WRITE_SUPPORTED
A
Andreas Dilger 已提交
1055
   png_debug(0, "\nWriting info struct\n");
1056 1057 1058 1059

/* If we wanted, we could write info in two steps:
   png_write_info_before_PLTE(write_ptr, write_info_ptr);
 */
A
Andreas Dilger 已提交
1060
   png_write_info(write_ptr, write_info_ptr);
1061
#endif
A
Andreas Dilger 已提交
1062

1063 1064
#ifdef SINGLE_ROWBUF_ALLOC
   png_debug(0, "\nAllocating row buffer...");
1065
   row_buf = (png_bytep)png_malloc(read_ptr,
A
Andreas Dilger 已提交
1066
      png_get_rowbytes(read_ptr, read_info_ptr));
1067 1068
   png_debug1(0, "0x%08lx\n\n", (unsigned long)row_buf);
#endif /* SINGLE_ROWBUF_ALLOC */
1069
   png_debug(0, "Writing row data\n");
A
Andreas Dilger 已提交
1070

1071 1072
#if defined(PNG_READ_INTERLACING_SUPPORTED) || \
  defined(PNG_WRITE_INTERLACING_SUPPORTED)
A
Andreas Dilger 已提交
1073
   num_pass = png_set_interlace_handling(read_ptr);
1074
#  ifdef PNG_WRITE_SUPPORTED
A
Andreas Dilger 已提交
1075
   png_set_interlace_handling(write_ptr);
1076
#  endif
1077 1078 1079
#else
   num_pass=1;
#endif
A
Andreas Dilger 已提交
1080

1081 1082 1083 1084 1085
#ifdef PNGTEST_TIMING
   t_stop = (float)clock();
   t_misc += (t_stop - t_start);
   t_start = t_stop;
#endif
A
Andreas Dilger 已提交
1086 1087
   for (pass = 0; pass < num_pass; pass++)
   {
1088
      png_debug1(0, "Writing row data for pass %d\n",pass);
A
Andreas Dilger 已提交
1089 1090
      for (y = 0; y < height; y++)
      {
1091 1092 1093 1094 1095 1096 1097
#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 */
1098
         png_read_rows(read_ptr, (png_bytepp)&row_buf, png_bytepp_NULL, 1);
1099 1100

#ifdef PNG_WRITE_SUPPORTED
1101 1102 1103 1104 1105
#ifdef PNGTEST_TIMING
         t_stop = (float)clock();
         t_decode += (t_stop - t_start);
         t_start = t_stop;
#endif
G
Guy Schalnat 已提交
1106
         png_write_rows(write_ptr, (png_bytepp)&row_buf, 1);
1107 1108 1109 1110 1111
#ifdef PNGTEST_TIMING
         t_stop = (float)clock();
         t_encode += (t_stop - t_start);
         t_start = t_stop;
#endif
1112 1113 1114 1115 1116 1117
#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 */
G
Guy Schalnat 已提交
1118 1119 1120
      }
   }

1121
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
1122
   png_free_data(read_ptr, read_info_ptr, PNG_FREE_UNKN, -1);
1123 1124
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
1125
   png_free_data(write_ptr, write_info_ptr, PNG_FREE_UNKN, -1);
1126 1127
#endif

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

A
Andreas Dilger 已提交
1130
   png_read_end(read_ptr, end_info_ptr);
1131
#if defined(PNG_TEXT_SUPPORTED)
1132 1133 1134 1135 1136 1137
   {
      png_textp text_ptr;
      int num_text;

      if (png_get_text(read_ptr, end_info_ptr, &text_ptr, &num_text) > 0)
      {
1138
         png_debug1(0, "Handling %d iTXt/tEXt/zTXt chunks\n", num_text);
1139 1140 1141 1142
         png_set_text(write_ptr, write_end_info_ptr, text_ptr, num_text);
      }
   }
#endif
1143
#if defined(PNG_tIME_SUPPORTED)
1144 1145 1146 1147 1148 1149 1150
   {
      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)
1151
         /* we have to use png_strncpy instead of "=" because the string
1152 1153
            pointed to by png_convert_to_rfc1123() gets free'ed before
            we use it */
1154 1155
         png_strncpy(tIME_string,png_convert_to_rfc1123(read_ptr,
            mod_time),30);
1156 1157 1158 1159
         tIME_chunk_present++;
#endif /* PNG_TIME_RFC1123_SUPPORTED */
      }
   }
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
#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++)
1176 1177
           png_set_unknown_chunk_location(write_ptr, write_end_info_ptr, i,
             unknowns[i].location);
1178 1179
      }
   }
1180
#endif
1181
#ifdef PNG_WRITE_SUPPORTED
1182
   png_write_end(write_ptr, write_end_info_ptr);
1183
#endif
1184

1185 1186 1187 1188 1189 1190 1191
#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",
1192
         (unsigned long)iwidth, (unsigned long)iheight);
1193 1194
   }
#endif
G
Guy Schalnat 已提交
1195

A
Andreas Dilger 已提交
1196
   png_debug(0, "Destroying data structs\n");
1197 1198
#ifdef SINGLE_ROWBUF_ALLOC
   png_debug(1, "destroying row_buf for read_ptr\n");
1199
   png_free(read_ptr, row_buf);
1200
   row_buf=NULL;
1201 1202
#endif /* SINGLE_ROWBUF_ALLOC */
   png_debug(1, "destroying read_ptr, read_info_ptr, end_info_ptr\n");
A
Andreas Dilger 已提交
1203
   png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
1204 1205
#ifdef PNG_WRITE_SUPPORTED
   png_debug(1, "destroying write_end_info_ptr\n");
1206
   png_destroy_info_struct(write_ptr, &write_end_info_ptr);
1207
   png_debug(1, "destroying write_ptr, write_info_ptr\n");
A
Andreas Dilger 已提交
1208
   png_destroy_write_struct(&write_ptr, &write_info_ptr);
1209 1210
#endif
   png_debug(0, "Destruction complete.\n");
G
Guy Schalnat 已提交
1211

1212 1213
   FCLOSE(fpin);
   FCLOSE(fpout);
G
Guy Schalnat 已提交
1214

A
Andreas Dilger 已提交
1215
   png_debug(0, "Opening files for comparison\n");
1216 1217 1218 1219
#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
A
Andreas Dilger 已提交
1220
   if ((fpin = fopen(inname, "rb")) == NULL)
1221
#endif
G
Guy Schalnat 已提交
1222
   {
G
Guy Schalnat 已提交
1223
      fprintf(STDERR, "Could not find file %s\n", inname);
1224
      return (1);
G
Guy Schalnat 已提交
1225 1226
   }

1227 1228 1229 1230
#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
A
Andreas Dilger 已提交
1231
   if ((fpout = fopen(outname, "rb")) == NULL)
1232
#endif
G
Guy Schalnat 已提交
1233
   {
G
Guy Schalnat 已提交
1234
      fprintf(STDERR, "Could not find file %s\n", outname);
1235
      FCLOSE(fpin);
1236
      return (1);
G
Guy Schalnat 已提交
1237
   }
A
Andreas Dilger 已提交
1238

1239
   for(;;)
G
Guy Schalnat 已提交
1240
   {
A
Andreas Dilger 已提交
1241
      png_size_t num_in, num_out;
G
Guy Schalnat 已提交
1242

1243 1244
      READFILE(fpin, inbuf, 1, num_in);
      READFILE(fpout, outbuf, 1, num_out);
G
Guy Schalnat 已提交
1245 1246 1247

      if (num_in != num_out)
      {
1248
         fprintf(STDERR, "\nFiles %s and %s are of a different size\n",
G
Guy Schalnat 已提交
1249
                 inname, outname);
1250 1251 1252
         if(wrote_question == 0)
         {
            fprintf(STDERR,
1253 1254
         "   Was %s written with the same maximum IDAT chunk size (%d bytes),",
              inname,PNG_ZBUF_SIZE);
1255
            fprintf(STDERR,
1256
              "\n   filtering heuristic (libpng default), compression");
1257
            fprintf(STDERR,
1258
              " level (zlib default),\n   and zlib version (%s)?\n\n",
1259 1260 1261
              ZLIB_VERSION);
            wrote_question=1;
         }
1262 1263
         FCLOSE(fpin);
         FCLOSE(fpout);
1264
         return (0);
G
Guy Schalnat 已提交
1265 1266 1267 1268 1269
      }

      if (!num_in)
         break;

A
Andreas Dilger 已提交
1270
      if (png_memcmp(inbuf, outbuf, num_in))
G
Guy Schalnat 已提交
1271
      {
1272
         fprintf(STDERR, "\nFiles %s and %s are different\n", inname, outname);
1273 1274 1275
         if(wrote_question == 0)
         {
            fprintf(STDERR,
1276 1277
         "   Was %s written with the same maximum IDAT chunk size (%d bytes),",
                 inname,PNG_ZBUF_SIZE);
1278
            fprintf(STDERR,
1279
              "\n   filtering heuristic (libpng default), compression");
1280
            fprintf(STDERR,
1281
              " level (zlib default),\n   and zlib version (%s)?\n\n",
1282 1283 1284
              ZLIB_VERSION);
            wrote_question=1;
         }
1285 1286
         FCLOSE(fpin);
         FCLOSE(fpout);
1287
         return (0);
G
Guy Schalnat 已提交
1288 1289 1290
      }
   }

1291 1292
   FCLOSE(fpin);
   FCLOSE(fpout);
G
Guy Schalnat 已提交
1293

1294
   return (0);
G
Guy Schalnat 已提交
1295
}
G
Guy Schalnat 已提交
1296

1297 1298
/* input and output filenames */
#ifdef RISCOS
1299 1300
static PNG_CONST char *inname = "pngtest/png";
static PNG_CONST char *outname = "pngout/png";
1301
#else
1302 1303
static PNG_CONST char *inname = "pngtest.png";
static PNG_CONST char *outname = "pngout.png";
1304 1305 1306 1307 1308 1309 1310 1311 1312
#endif

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

   fprintf(STDERR, "Testing libpng version %s\n", PNG_LIBPNG_VER_STRING);
1313
   fprintf(STDERR, "   with zlib   version %s\n", ZLIB_VERSION);
1314
   fprintf(STDERR,"%s",png_get_copyright(NULL));
1315
   /* Show the version of libpng used in building the library */
1316 1317
   fprintf(STDERR," library (%lu):%s",
      (unsigned long)png_access_version_number(),
1318
      png_get_header_version(NULL));
1319
   /* Show the version of libpng used in building the application */
1320
   fprintf(STDERR," pngtest (%lu):%s", (unsigned long)PNG_LIBPNG_VER,
1321
      PNG_HEADER_VERSION_STRING);
1322 1323
   fprintf(STDERR," png_sizeof(png_struct)=%ld, png_sizeof(png_info)=%ld\n",
                    (long)png_sizeof(png_struct), (long)png_sizeof(png_info));
1324 1325 1326 1327 1328

   /* 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 */
1329
#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
1330
      fprintf(STDERR, " NOTE: Zlib compiled for max 64k, libpng not\n");
1331
#endif
1332
   /* I think the following can happen. */
1333
#if !defined(MAXSEG_64K) && defined(PNG_MAX_MALLOC_64K)
1334
      fprintf(STDERR, " NOTE: libpng compiled for max 64k, zlib not\n");
1335
#endif
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347

   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)
   {
1348
      if (strcmp(argv[1], "-m") == 0)
1349
      {
1350
         multiple = 1;
1351 1352
         status_dots_requested = 0;
      }
1353 1354 1355 1356 1357
      else if (strcmp(argv[1], "-mv") == 0 ||
               strcmp(argv[1], "-vm") == 0 )
      {
         multiple = 1;
         verbose = 1;
1358
         status_dots_requested = 1;
1359 1360 1361 1362
      }
      else if (strcmp(argv[1], "-v") == 0)
      {
         verbose = 1;
1363
         status_dots_requested = 1;
1364 1365 1366
         inname = argv[2];
      }
      else
1367
      {
1368
         inname = argv[1];
1369 1370
         status_dots_requested = 0;
      }
1371 1372
   }

1373 1374
   if (!multiple && argc == 3+verbose)
     outname = argv[2+verbose];
1375

1376
   if ((!multiple && argc > 3+verbose) || (multiple && argc < 2))
1377
   {
1378 1379
     fprintf(STDERR,
       "usage: %s [infile.png] [outfile.png]\n\t%s -m {infile.png}\n",
1380
        argv[0], argv[0]);
1381 1382 1383 1384
     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);
1385 1386 1387 1388 1389 1390
     exit(1);
   }

   if (multiple)
   {
      int i;
1391
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1392 1393
      int allocation_now = current_allocation;
#endif
1394
      for (i=2; i<argc; ++i)
1395
      {
1396 1397 1398 1399
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
         int k;
#endif
         int kerror;
1400 1401
         fprintf(STDERR, "Testing %s:",argv[i]);
         kerror = test_one_file(argv[i], outname);
1402
         if (kerror == 0)
1403
         {
1404
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1405 1406
            fprintf(STDERR, "\n PASS (%lu zero samples)\n",
               (unsigned long)zero_samples);
1407
#else
1408
            fprintf(STDERR, " PASS\n");
1409
#endif
1410 1411 1412 1413
#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",
1414
                     k,(unsigned long)filters_used[k]);
1415
#endif
1416 1417 1418 1419 1420 1421 1422 1423
#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
         {
1424 1425
            fprintf(STDERR, " FAIL\n");
            ierror += kerror;
1426
         }
1427
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1428 1429 1430
         if (allocation_now != current_allocation)
            fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
               current_allocation-allocation_now);
1431 1432
         if (current_allocation != 0)
         {
1433 1434 1435 1436
            memory_infop pinfo = pinformation;

            fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
               current_allocation);
1437 1438
            while (pinfo != NULL)
            {
1439
               fprintf(STDERR, " %lu bytes at %x\n", (unsigned long)pinfo->size,
1440
                 (unsigned int) pinfo->pointer);
1441
               pinfo = pinfo->next;
1442
            }
1443
         }
1444 1445
#endif
      }
1446
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1447
         fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1448
            current_allocation);
1449
         fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1450
            maximum_allocation);
1451 1452 1453 1454
         fprintf(STDERR, " Total   memory allocation: %10d bytes\n",
            total_allocation);
         fprintf(STDERR, "     Number of allocations: %10d\n",
            num_allocations);
1455
#endif
1456 1457 1458
   }
   else
   {
1459
      int i;
1460 1461
      for (i=0; i<3; ++i)
      {
1462
         int kerror;
1463
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1464 1465
         int allocation_now = current_allocation;
#endif
1466 1467
         if (i == 1) status_dots_requested = 1;
         else if(verbose == 0)status_dots_requested = 0;
1468 1469
         if (i == 0 || verbose == 1 || ierror != 0)
            fprintf(STDERR, "Testing %s:",inname);
1470
         kerror = test_one_file(inname, outname);
1471 1472
         if(kerror == 0)
         {
1473
            if(verbose == 1 || i == 2)
1474
            {
1475
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
1476
                int k;
1477
#endif
1478
#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1479 1480
                fprintf(STDERR, "\n PASS (%lu zero samples)\n",
                   (unsigned long)zero_samples);
1481 1482 1483
#else
                fprintf(STDERR, " PASS\n");
#endif
1484 1485 1486 1487
#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",
1488
                         k,(unsigned long)filters_used[k]);
1489
#endif
1490
#if defined(PNG_TIME_RFC1123_SUPPORTED)
1491 1492
             if(tIME_chunk_present != 0)
                fprintf(STDERR, " tIME = %s\n",tIME_string);
1493 1494
#endif /* PNG_TIME_RFC1123_SUPPORTED */
            }
1495 1496 1497 1498 1499
         }
         else
         {
            if(verbose == 0 && i != 2)
               fprintf(STDERR, "Testing %s:",inname);
1500 1501
            fprintf(STDERR, " FAIL\n");
            ierror += kerror;
1502
         }
1503
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1504 1505 1506
         if (allocation_now != current_allocation)
             fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
               current_allocation-allocation_now);
1507 1508
         if (current_allocation != 0)
         {
1509
             memory_infop pinfo = pinformation;
1510

1511 1512
             fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
                current_allocation);
1513 1514
             while (pinfo != NULL)
             {
1515
                fprintf(STDERR," %lu bytes at %x\n",
1516
                   (unsigned long)pinfo->size, (unsigned int)pinfo->pointer);
1517 1518 1519 1520
                pinfo = pinfo->next;
             }
          }
#endif
1521
       }
1522
#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1523
       fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1524
          current_allocation);
1525
       fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1526
          maximum_allocation);
1527 1528 1529 1530
       fprintf(STDERR, " Total   memory allocation: %10d bytes\n",
          total_allocation);
       fprintf(STDERR, "     Number of allocations: %10d\n",
            num_allocations);
1531
#endif
1532 1533
   }

1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
#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

1548 1549 1550 1551
   if (ierror == 0)
      fprintf(STDERR, "libpng passes test\n");
   else
      fprintf(STDERR, "libpng FAILS test\n");
1552
   return (int)(ierror != 0);
1553
}
1554

1555
/* Generate a compiler error if there is an old png.h in the search path. */
1556
typedef version_1_2_19beta17 your_png_h_is_not_version_1_2_19beta17;