pngtest.c 45.6 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
         if (err != written)
            break;
         else
            check += err;
         data += written;
         remaining -= written;
      }
      while (remaining != 0);
   }
   if (check != length)
   {
      png_error(png_ptr, "Write Error");
   }
}
437
#endif /* USE_FAR_KEYWORD */
438 439
#endif /* PNG_NO_STDIO */
/* END of code to validate stdio-free compilation */
440 441 442 443 444 445 446

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

762 763 764 765 766 767 768 769 770 771 772 773
#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 已提交
774

775
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
776 777 778 779
#  ifndef PNG_HANDLE_CHUNK_ALWAYS
#    define PNG_HANDLE_CHUNK_ALWAYS       3
#  endif
   png_set_keep_unknown_chunks(read_ptr, PNG_HANDLE_CHUNK_ALWAYS,
780
      png_bytep_NULL, 0);
781 782
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
783 784 785 786
#  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,
787
      png_bytep_NULL, 0);
788 789
#endif

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

A
Andreas Dilger 已提交
793 794 795
   png_debug(0, "Transferring info struct\n");
   {
      int interlace_type, compression_type, filter_type;
G
Guy Schalnat 已提交
796

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

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

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

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

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

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

964 965
      if (png_get_sCAL(read_ptr, read_info_ptr, &unit, &scal_width,
         &scal_height))
G
Guy Schalnat 已提交
966
      {
967
         png_set_sCAL(write_ptr, write_info_ptr, unit, scal_width, scal_height);
968 969 970
      }
   }
#else
971
#ifdef PNG_FIXED_POINT_SUPPORTED
972
   {
973
      int unit;
974
      png_charp scal_width, scal_height;
975

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

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

1049
#ifdef PNG_WRITE_SUPPORTED
A
Andreas Dilger 已提交
1050
   png_debug(0, "\nWriting info struct\n");
1051 1052 1053 1054

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

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

1066 1067
#if defined(PNG_READ_INTERLACING_SUPPORTED) || \
  defined(PNG_WRITE_INTERLACING_SUPPORTED)
A
Andreas Dilger 已提交
1068
   num_pass = png_set_interlace_handling(read_ptr);
1069
#  ifdef PNG_WRITE_SUPPORTED
A
Andreas Dilger 已提交
1070
   png_set_interlace_handling(write_ptr);
1071
#  endif
1072 1073 1074
#else
   num_pass=1;
#endif
A
Andreas Dilger 已提交
1075

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

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

1116
#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
1117
   png_free_data(read_ptr, read_info_ptr, PNG_FREE_UNKN, -1);
1118 1119
#endif
#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
1120
   png_free_data(write_ptr, write_info_ptr, PNG_FREE_UNKN, -1);
1121 1122
#endif

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

A
Andreas Dilger 已提交
1125
   png_read_end(read_ptr, end_info_ptr);
1126
#if defined(PNG_TEXT_SUPPORTED)
1127 1128 1129 1130 1131 1132
   {
      png_textp text_ptr;
      int num_text;

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

1180 1181 1182 1183 1184 1185 1186
#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",
1187
         (unsigned long)iwidth, (unsigned long)iheight);
1188 1189
   }
#endif
G
Guy Schalnat 已提交
1190

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

1207 1208
   FCLOSE(fpin);
   FCLOSE(fpout);
G
Guy Schalnat 已提交
1209

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

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

1234
   for(;;)
G
Guy Schalnat 已提交
1235
   {
A
Andreas Dilger 已提交
1236
      png_size_t num_in, num_out;
G
Guy Schalnat 已提交
1237

1238 1239
      READFILE(fpin, inbuf, 1, num_in);
      READFILE(fpout, outbuf, 1, num_out);
G
Guy Schalnat 已提交
1240 1241 1242

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

      if (!num_in)
         break;

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

1286 1287
   FCLOSE(fpin);
   FCLOSE(fpout);
G
Guy Schalnat 已提交
1288

1289
   return (0);
G
Guy Schalnat 已提交
1290
}
G
Guy Schalnat 已提交
1291

1292 1293
/* input and output filenames */
#ifdef RISCOS
1294 1295
static PNG_CONST char *inname = "pngtest/png";
static PNG_CONST char *outname = "pngout/png";
1296
#else
1297 1298
static PNG_CONST char *inname = "pngtest.png";
static PNG_CONST char *outname = "pngout.png";
1299 1300 1301 1302 1303 1304 1305 1306 1307
#endif

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

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

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

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

1368 1369
   if (!multiple && argc == 3+verbose)
     outname = argv[2+verbose];
1370

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

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

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

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

1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
#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

1543 1544 1545 1546
   if (ierror == 0)
      fprintf(STDERR, "libpng passes test\n");
   else
      fprintf(STDERR, "libpng FAILS test\n");
1547
   return (int)(ierror != 0);
1548
}
1549

1550
/* Generate a compiler error if there is an old png.h in the search path. */
1551
typedef version_1_2_21beta1 your_png_h_is_not_version_1_2_21beta1;