beta-0.89.2
[luatex.git] / source / libs / libpng / libpng-src / contrib / libtests / pngstest.c
blob0febb63a115a6a0ebbb79d8cc7e7834c95c7f8ab
1 /*-
2 * pngstest.c
4 * Copyright (c) 2013-2015 John Cunningham Bowler
6 * Last changed in libpng 1.6.19 [November 12, 2015]
8 * This code is released under the libpng license.
9 * For conditions of distribution and use, see the disclaimer
10 * and license in png.h
12 * Test for the PNG 'simplified' APIs.
14 #define _ISOC90_SOURCE 1
15 #define MALLOC_CHECK_ 2/*glibc facility: turn on debugging*/
17 #include <stddef.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <stdio.h>
21 #include <errno.h>
22 #include <ctype.h>
23 #include <math.h>
25 #if defined(HAVE_CONFIG_H) && !defined(PNG_NO_CONFIG_H)
26 # include <config.h>
27 #endif
29 /* Define the following to use this test against your installed libpng, rather
30 * than the one being built here:
32 #ifdef PNG_FREESTANDING_TESTS
33 # include <png.h>
34 #else
35 # include "../../png.h"
36 #endif
38 #ifdef PNG_SIMPLIFIED_READ_SUPPORTED /* Else nothing can be done */
39 #include "../tools/sRGB.h"
41 /* KNOWN ISSUES
43 * These defines switch on alternate algorithms for format conversions to match
44 * the current libpng implementation; they are set to allow pngstest to pass
45 * even though libpng is producing answers that are not as correct as they
46 * should be.
48 #define ALLOW_UNUSED_GPC 0
49 /* If true include unused static GPC functions and declare an external array
50 * of them to hide the fact that they are unused. This is for development
51 * use while testing the correct function to use to take into account libpng
52 * misbehavior, such as using a simple power law to correct sRGB to linear.
55 /* The following is to support direct compilation of this file as C++ */
56 #ifdef __cplusplus
57 # define voidcast(type, value) static_cast<type>(value)
58 # define aligncastconst(type, value) \
59 static_cast<type>(static_cast<const void*>(value))
60 #else
61 # define voidcast(type, value) (value)
62 # define aligncastconst(type, value) ((const void*)(value))
63 #endif /* __cplusplus */
65 /* During parallel runs of pngstest each temporary file needs a unique name,
66 * this is used to permit uniqueness using a command line argument which can be
67 * up to 22 characters long.
69 static char tmpf[23] = "TMP";
71 /* Generate random bytes. This uses a boring repeatable algorithm and it
72 * is implemented here so that it gives the same set of numbers on every
73 * architecture. It's a linear congruential generator (Knuth or Sedgewick
74 * "Algorithms") but it comes from the 'feedback taps' table in Horowitz and
75 * Hill, "The Art of Electronics".
77 static void
78 make_random_bytes(png_uint_32* seed, void* pv, size_t size)
80 png_uint_32 u0 = seed[0], u1 = seed[1];
81 png_bytep bytes = voidcast(png_bytep, pv);
83 /* There are thirty three bits, the next bit in the sequence is bit-33 XOR
84 * bit-20. The top 1 bit is in u1, the bottom 32 are in u0.
86 size_t i;
87 for (i=0; i<size; ++i)
89 /* First generate 8 new bits then shift them in at the end. */
90 png_uint_32 u = ((u0 >> (20-8)) ^ ((u1 << 7) | (u0 >> (32-7)))) & 0xff;
91 u1 <<= 8;
92 u1 |= u0 >> 24;
93 u0 <<= 8;
94 u0 |= u;
95 *bytes++ = (png_byte)u;
98 seed[0] = u0;
99 seed[1] = u1;
102 static void
103 random_color(png_colorp color)
105 static png_uint_32 color_seed[2] = { 0x12345678, 0x9abcdef };
106 make_random_bytes(color_seed, color, sizeof *color);
109 /* Math support - neither Cygwin nor Visual Studio have C99 support and we need
110 * a predictable rounding function, so make one here:
112 static double
113 closestinteger(double x)
115 return floor(x + .5);
118 /* Cast support: remove GCC whines. */
119 static png_byte
120 u8d(double d)
122 d = closestinteger(d);
123 return (png_byte)d;
126 static png_uint_16
127 u16d(double d)
129 d = closestinteger(d);
130 return (png_uint_16)d;
133 /* sRGB support: use exact calculations rounded to the nearest int, see the
134 * fesetround() call in main(). sRGB_to_d optimizes the 8 to 16-bit conversion.
136 static double sRGB_to_d[256];
137 static double g22_to_d[256];
139 static void
140 init_sRGB_to_d(void)
142 int i;
144 sRGB_to_d[0] = 0;
145 for (i=1; i<255; ++i)
146 sRGB_to_d[i] = linear_from_sRGB(i/255.);
147 sRGB_to_d[255] = 1;
149 g22_to_d[0] = 0;
150 for (i=1; i<255; ++i)
151 g22_to_d[i] = pow(i/255., 1/.45455);
152 g22_to_d[255] = 1;
155 static png_byte
156 sRGB(double linear /*range 0.0 .. 1.0*/)
158 return u8d(255 * sRGB_from_linear(linear));
161 static png_byte
162 isRGB(int fixed_linear)
164 return sRGB(fixed_linear / 65535.);
167 #if 0 /* not used */
168 static png_byte
169 unpremultiply(int component, int alpha)
171 if (alpha <= component)
172 return 255; /* Arbitrary, but consistent with the libpng code */
174 else if (alpha >= 65535)
175 return isRGB(component);
177 else
178 return sRGB((double)component / alpha);
180 #endif
182 static png_uint_16
183 ilinear(int fixed_srgb)
185 return u16d(65535 * sRGB_to_d[fixed_srgb]);
188 static png_uint_16
189 ilineara(int fixed_srgb, int alpha)
191 return u16d((257 * alpha) * sRGB_to_d[fixed_srgb]);
194 static png_uint_16
195 ilinear_g22(int fixed_srgb)
197 return u16d(65535 * g22_to_d[fixed_srgb]);
200 #if ALLOW_UNUSED_GPC
201 static png_uint_16
202 ilineara_g22(int fixed_srgb, int alpha)
204 return u16d((257 * alpha) * g22_to_d[fixed_srgb]);
206 #endif
208 static double
209 YfromRGBint(int ir, int ig, int ib)
211 double r = ir;
212 double g = ig;
213 double b = ib;
214 return YfromRGB(r, g, b);
217 #if 0 /* unused */
218 /* The error that results from using a 2.2 power law in place of the correct
219 * sRGB transform, given an 8-bit value which might be either sRGB or power-law.
221 static int
222 power_law_error8(int value)
224 if (value > 0 && value < 255)
226 double vd = value / 255.;
227 double e = fabs(
228 pow(sRGB_to_d[value], 1/2.2) - sRGB_from_linear(pow(vd, 2.2)));
230 /* Always allow an extra 1 here for rounding errors */
231 e = 1+floor(255 * e);
232 return (int)e;
235 return 0;
238 static int error_in_sRGB_roundtrip = 56; /* by experiment */
239 static int
240 power_law_error16(int value)
242 if (value > 0 && value < 65535)
244 /* Round trip the value through an 8-bit representation but using
245 * non-matching to/from conversions.
247 double vd = value / 65535.;
248 double e = fabs(
249 pow(sRGB_from_linear(vd), 2.2) - linear_from_sRGB(pow(vd, 1/2.2)));
251 /* Always allow an extra 1 here for rounding errors */
252 e = error_in_sRGB_roundtrip+floor(65535 * e);
253 return (int)e;
256 return 0;
259 static int
260 compare_8bit(int v1, int v2, int error_limit, int multiple_algorithms)
262 int e = abs(v1-v2);
263 int ev1, ev2;
265 if (e <= error_limit)
266 return 1;
268 if (!multiple_algorithms)
269 return 0;
271 ev1 = power_law_error8(v1);
272 if (e <= ev1)
273 return 1;
275 ev2 = power_law_error8(v2);
276 if (e <= ev2)
277 return 1;
279 return 0;
282 static int
283 compare_16bit(int v1, int v2, int error_limit, int multiple_algorithms)
285 int e = abs(v1-v2);
286 int ev1, ev2;
288 if (e <= error_limit)
289 return 1;
291 /* "multiple_algorithms" in this case means that a color-map has been
292 * involved somewhere, so we can deduce that the values were forced to 8-bit
293 * (like the via_linear case for 8-bit.)
295 if (!multiple_algorithms)
296 return 0;
298 ev1 = power_law_error16(v1);
299 if (e <= ev1)
300 return 1;
302 ev2 = power_law_error16(v2);
303 if (e <= ev2)
304 return 1;
306 return 0;
308 #endif /* unused */
310 #define READ_FILE 1 /* else memory */
311 #define USE_STDIO 2 /* else use file name */
312 #define STRICT 4 /* fail on warnings too */
313 #define VERBOSE 8
314 #define KEEP_TMPFILES 16 /* else delete temporary files */
315 #define KEEP_GOING 32
316 #define ACCUMULATE 64
317 #define FAST_WRITE 128
318 #define sRGB_16BIT 256
320 static void
321 print_opts(png_uint_32 opts)
323 if (opts & READ_FILE)
324 printf(" --file");
325 if (opts & USE_STDIO)
326 printf(" --stdio");
327 if (opts & STRICT)
328 printf(" --strict");
329 if (opts & VERBOSE)
330 printf(" --verbose");
331 if (opts & KEEP_TMPFILES)
332 printf(" --preserve");
333 if (opts & KEEP_GOING)
334 printf(" --keep-going");
335 if (opts & ACCUMULATE)
336 printf(" --accumulate");
337 if (!(opts & FAST_WRITE)) /* --fast is currently the default */
338 printf(" --slow");
339 if (opts & sRGB_16BIT)
340 printf(" --sRGB-16bit");
343 #define FORMAT_NO_CHANGE 0x80000000 /* additional flag */
345 /* A name table for all the formats - defines the format of the '+' arguments to
346 * pngstest.
348 #define FORMAT_COUNT 64
349 #define FORMAT_MASK 0x3f
350 static PNG_CONST char * PNG_CONST format_names[FORMAT_COUNT] =
352 "sRGB-gray",
353 "sRGB-gray+alpha",
354 "sRGB-rgb",
355 "sRGB-rgb+alpha",
356 "linear-gray",
357 "linear-gray+alpha",
358 "linear-rgb",
359 "linear-rgb+alpha",
361 "color-mapped-sRGB-gray",
362 "color-mapped-sRGB-gray+alpha",
363 "color-mapped-sRGB-rgb",
364 "color-mapped-sRGB-rgb+alpha",
365 "color-mapped-linear-gray",
366 "color-mapped-linear-gray+alpha",
367 "color-mapped-linear-rgb",
368 "color-mapped-linear-rgb+alpha",
370 "sRGB-gray",
371 "sRGB-gray+alpha",
372 "sRGB-bgr",
373 "sRGB-bgr+alpha",
374 "linear-gray",
375 "linear-gray+alpha",
376 "linear-bgr",
377 "linear-bgr+alpha",
379 "color-mapped-sRGB-gray",
380 "color-mapped-sRGB-gray+alpha",
381 "color-mapped-sRGB-bgr",
382 "color-mapped-sRGB-bgr+alpha",
383 "color-mapped-linear-gray",
384 "color-mapped-linear-gray+alpha",
385 "color-mapped-linear-bgr",
386 "color-mapped-linear-bgr+alpha",
388 "sRGB-gray",
389 "alpha+sRGB-gray",
390 "sRGB-rgb",
391 "alpha+sRGB-rgb",
392 "linear-gray",
393 "alpha+linear-gray",
394 "linear-rgb",
395 "alpha+linear-rgb",
397 "color-mapped-sRGB-gray",
398 "color-mapped-alpha+sRGB-gray",
399 "color-mapped-sRGB-rgb",
400 "color-mapped-alpha+sRGB-rgb",
401 "color-mapped-linear-gray",
402 "color-mapped-alpha+linear-gray",
403 "color-mapped-linear-rgb",
404 "color-mapped-alpha+linear-rgb",
406 "sRGB-gray",
407 "alpha+sRGB-gray",
408 "sRGB-bgr",
409 "alpha+sRGB-bgr",
410 "linear-gray",
411 "alpha+linear-gray",
412 "linear-bgr",
413 "alpha+linear-bgr",
415 "color-mapped-sRGB-gray",
416 "color-mapped-alpha+sRGB-gray",
417 "color-mapped-sRGB-bgr",
418 "color-mapped-alpha+sRGB-bgr",
419 "color-mapped-linear-gray",
420 "color-mapped-alpha+linear-gray",
421 "color-mapped-linear-bgr",
422 "color-mapped-alpha+linear-bgr",
425 /* Decode an argument to a format number. */
426 static png_uint_32
427 formatof(const char *arg)
429 char *ep;
430 unsigned long format = strtoul(arg, &ep, 0);
432 if (ep > arg && *ep == 0 && format < FORMAT_COUNT)
433 return (png_uint_32)format;
435 else for (format=0; format < FORMAT_COUNT; ++format)
437 if (strcmp(format_names[format], arg) == 0)
438 return (png_uint_32)format;
441 fprintf(stderr, "pngstest: format name '%s' invalid\n", arg);
442 return FORMAT_COUNT;
445 /* Bitset/test functions for formats */
446 #define FORMAT_SET_COUNT (FORMAT_COUNT / 32)
447 typedef struct
449 png_uint_32 bits[FORMAT_SET_COUNT];
451 format_list;
453 static void format_init(format_list *pf)
455 int i;
456 for (i=0; i<FORMAT_SET_COUNT; ++i)
457 pf->bits[i] = 0; /* All off */
460 #if 0 /* currently unused */
461 static void format_clear(format_list *pf)
463 int i;
464 for (i=0; i<FORMAT_SET_COUNT; ++i)
465 pf->bits[i] = 0;
467 #endif
469 static int format_is_initial(format_list *pf)
471 int i;
472 for (i=0; i<FORMAT_SET_COUNT; ++i)
473 if (pf->bits[i] != 0)
474 return 0;
476 return 1;
479 static int format_set(format_list *pf, png_uint_32 format)
481 if (format < FORMAT_COUNT)
482 return pf->bits[format >> 5] |= ((png_uint_32)1) << (format & 31);
484 return 0;
487 #if 0 /* currently unused */
488 static int format_unset(format_list *pf, png_uint_32 format)
490 if (format < FORMAT_COUNT)
491 return pf->bits[format >> 5] &= ~((png_uint_32)1) << (format & 31);
493 return 0;
495 #endif
497 static int format_isset(format_list *pf, png_uint_32 format)
499 return format < FORMAT_COUNT &&
500 (pf->bits[format >> 5] & (((png_uint_32)1) << (format & 31))) != 0;
503 static void format_default(format_list *pf, int redundant)
505 if (redundant)
507 int i;
509 /* set everything, including flags that are pointless */
510 for (i=0; i<FORMAT_SET_COUNT; ++i)
511 pf->bits[i] = ~(png_uint_32)0;
514 else
516 png_uint_32 f;
518 for (f=0; f<FORMAT_COUNT; ++f)
520 /* Eliminate redundant and unsupported settings. */
521 # ifdef PNG_FORMAT_BGR_SUPPORTED
522 /* BGR is meaningless if no color: */
523 if ((f & PNG_FORMAT_FLAG_COLOR) == 0 &&
524 (f & PNG_FORMAT_FLAG_BGR) != 0)
525 # else
526 if ((f & 0x10U/*HACK: fixed value*/) != 0)
527 # endif
528 continue;
530 /* AFIRST is meaningless if no alpha: */
531 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
532 if ((f & PNG_FORMAT_FLAG_ALPHA) == 0 &&
533 (f & PNG_FORMAT_FLAG_AFIRST) != 0)
534 # else
535 if ((f & 0x20U/*HACK: fixed value*/) != 0)
536 # endif
537 continue;
539 format_set(pf, f);
544 /* THE Image STRUCTURE */
545 /* The super-class of a png_image, contains the decoded image plus the input
546 * data necessary to re-read the file with a different format.
548 typedef struct
550 png_image image;
551 png_uint_32 opts;
552 const char *file_name;
553 int stride_extra;
554 FILE *input_file;
555 png_voidp input_memory;
556 png_size_t input_memory_size;
557 png_bytep buffer;
558 ptrdiff_t stride;
559 png_size_t bufsize;
560 png_size_t allocsize;
561 char tmpfile_name[32];
562 png_uint_16 colormap[256*4];
564 Image;
566 /* Initializer: also sets the permitted error limit for 16-bit operations. */
567 static void
568 newimage(Image *image)
570 memset(image, 0, sizeof *image);
573 /* Reset the image to be read again - only needs to rewind the FILE* at present.
575 static void
576 resetimage(Image *image)
578 if (image->input_file != NULL)
579 rewind(image->input_file);
582 /* Free the image buffer; the buffer is re-used on a re-read, this is just for
583 * cleanup.
585 static void
586 freebuffer(Image *image)
588 if (image->buffer) free(image->buffer);
589 image->buffer = NULL;
590 image->bufsize = 0;
591 image->allocsize = 0;
594 /* Delete function; cleans out all the allocated data and the temporary file in
595 * the image.
597 static void
598 freeimage(Image *image)
600 freebuffer(image);
601 png_image_free(&image->image);
603 if (image->input_file != NULL)
605 fclose(image->input_file);
606 image->input_file = NULL;
609 if (image->input_memory != NULL)
611 free(image->input_memory);
612 image->input_memory = NULL;
613 image->input_memory_size = 0;
616 if (image->tmpfile_name[0] != 0 && (image->opts & KEEP_TMPFILES) == 0)
618 (void)remove(image->tmpfile_name);
619 image->tmpfile_name[0] = 0;
623 /* This is actually a re-initializer; allows an image structure to be re-used by
624 * freeing everything that relates to an old image.
626 static void initimage(Image *image, png_uint_32 opts, const char *file_name,
627 int stride_extra)
629 freeimage(image);
630 memset(&image->image, 0, sizeof image->image);
631 image->opts = opts;
632 image->file_name = file_name;
633 image->stride_extra = stride_extra;
636 /* Make sure the image buffer is big enough; allows re-use of the buffer if the
637 * image is re-read.
639 #define BUFFER_INIT8 73
640 static void
641 allocbuffer(Image *image)
643 png_size_t size = PNG_IMAGE_BUFFER_SIZE(image->image, image->stride);
645 if (size+32 > image->bufsize)
647 freebuffer(image);
648 image->buffer = voidcast(png_bytep, malloc(size+32));
649 if (image->buffer == NULL)
651 fflush(stdout);
652 fprintf(stderr,
653 "simpletest: out of memory allocating %lu(+32) byte buffer\n",
654 (unsigned long)size);
655 exit(1);
657 image->bufsize = size+32;
660 memset(image->buffer, 95, image->bufsize);
661 memset(image->buffer+16, BUFFER_INIT8, size);
662 image->allocsize = size;
665 /* Make sure 16 bytes match the given byte. */
666 static int
667 check16(png_const_bytep bp, int b)
669 int i = 16;
672 if (*bp != b) return 1;
673 while (--i);
675 return 0;
678 /* Check for overwrite in the image buffer. */
679 static void
680 checkbuffer(Image *image, const char *arg)
682 if (check16(image->buffer, 95))
684 fflush(stdout);
685 fprintf(stderr, "%s: overwrite at start of image buffer\n", arg);
686 exit(1);
689 if (check16(image->buffer+16+image->allocsize, 95))
691 fflush(stdout);
692 fprintf(stderr, "%s: overwrite at end of image buffer\n", arg);
693 exit(1);
697 /* ERROR HANDLING */
698 /* Log a terminal error, also frees the libpng part of the image if necessary.
700 static int
701 logerror(Image *image, const char *a1, const char *a2, const char *a3)
703 fflush(stdout);
704 if (image->image.warning_or_error)
705 fprintf(stderr, "%s%s%s: %s\n", a1, a2, a3, image->image.message);
707 else
708 fprintf(stderr, "%s%s%s\n", a1, a2, a3);
710 if (image->image.opaque != NULL)
712 fprintf(stderr, "%s: image opaque pointer non-NULL on error\n",
713 image->file_name);
714 png_image_free(&image->image);
717 return 0;
720 /* Log an error and close a file (just a utility to do both things in one
721 * function call.)
723 static int
724 logclose(Image *image, FILE *f, const char *name, const char *operation)
726 int e = errno;
728 fclose(f);
729 return logerror(image, name, operation, strerror(e));
732 /* Make sure the png_image has been freed - validates that libpng is doing what
733 * the spec says and freeing the image.
735 static int
736 checkopaque(Image *image)
738 if (image->image.opaque != NULL)
740 png_image_free(&image->image);
741 return logerror(image, image->file_name, ": opaque not NULL", "");
744 else if (image->image.warning_or_error != 0 && (image->opts & STRICT) != 0)
745 return logerror(image, image->file_name, " --strict", "");
747 else
748 return 1;
751 /* IMAGE COMPARISON/CHECKING */
752 /* Compare the pixels of two images, which should be the same but aren't. The
753 * images must have been checked for a size match.
755 typedef struct
757 /* The components, for grayscale images the gray value is in 'g' and if alpha
758 * is not present 'a' is set to 255 or 65535 according to format.
760 int r, g, b, a;
761 } Pixel;
763 typedef struct
765 /* The background as the original sRGB 8-bit value converted to the final
766 * integer format and as a double precision linear value in the range 0..1
767 * for with partially transparent pixels.
769 int ir, ig, ib;
770 double dr, dg, db; /* linear r,g,b scaled to 0..1 */
771 } Background;
773 /* Basic image formats; control the data but not the layout thereof. */
774 #define BASE_FORMATS\
775 (PNG_FORMAT_FLAG_ALPHA|PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_LINEAR)
777 /* Read a Pixel from a buffer. The code below stores the correct routine for
778 * the format in a function pointer, these are the routines:
780 static void
781 gp_g8(Pixel *p, png_const_voidp pb)
783 png_const_bytep pp = voidcast(png_const_bytep, pb);
785 p->r = p->g = p->b = pp[0];
786 p->a = 255;
789 static void
790 gp_ga8(Pixel *p, png_const_voidp pb)
792 png_const_bytep pp = voidcast(png_const_bytep, pb);
794 p->r = p->g = p->b = pp[0];
795 p->a = pp[1];
798 #ifdef PNG_FORMAT_AFIRST_SUPPORTED
799 static void
800 gp_ag8(Pixel *p, png_const_voidp pb)
802 png_const_bytep pp = voidcast(png_const_bytep, pb);
804 p->r = p->g = p->b = pp[1];
805 p->a = pp[0];
807 #endif
809 static void
810 gp_rgb8(Pixel *p, png_const_voidp pb)
812 png_const_bytep pp = voidcast(png_const_bytep, pb);
814 p->r = pp[0];
815 p->g = pp[1];
816 p->b = pp[2];
817 p->a = 255;
820 #ifdef PNG_FORMAT_BGR_SUPPORTED
821 static void
822 gp_bgr8(Pixel *p, png_const_voidp pb)
824 png_const_bytep pp = voidcast(png_const_bytep, pb);
826 p->r = pp[2];
827 p->g = pp[1];
828 p->b = pp[0];
829 p->a = 255;
831 #endif
833 static void
834 gp_rgba8(Pixel *p, png_const_voidp pb)
836 png_const_bytep pp = voidcast(png_const_bytep, pb);
838 p->r = pp[0];
839 p->g = pp[1];
840 p->b = pp[2];
841 p->a = pp[3];
844 #ifdef PNG_FORMAT_BGR_SUPPORTED
845 static void
846 gp_bgra8(Pixel *p, png_const_voidp pb)
848 png_const_bytep pp = voidcast(png_const_bytep, pb);
850 p->r = pp[2];
851 p->g = pp[1];
852 p->b = pp[0];
853 p->a = pp[3];
855 #endif
857 #ifdef PNG_FORMAT_AFIRST_SUPPORTED
858 static void
859 gp_argb8(Pixel *p, png_const_voidp pb)
861 png_const_bytep pp = voidcast(png_const_bytep, pb);
863 p->r = pp[1];
864 p->g = pp[2];
865 p->b = pp[3];
866 p->a = pp[0];
868 #endif
870 #if defined(PNG_FORMAT_AFIRST_SUPPORTED) && defined(PNG_FORMAT_BGR_SUPPORTED)
871 static void
872 gp_abgr8(Pixel *p, png_const_voidp pb)
874 png_const_bytep pp = voidcast(png_const_bytep, pb);
876 p->r = pp[3];
877 p->g = pp[2];
878 p->b = pp[1];
879 p->a = pp[0];
881 #endif
883 static void
884 gp_g16(Pixel *p, png_const_voidp pb)
886 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
888 p->r = p->g = p->b = pp[0];
889 p->a = 65535;
892 static void
893 gp_ga16(Pixel *p, png_const_voidp pb)
895 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
897 p->r = p->g = p->b = pp[0];
898 p->a = pp[1];
901 #ifdef PNG_FORMAT_AFIRST_SUPPORTED
902 static void
903 gp_ag16(Pixel *p, png_const_voidp pb)
905 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
907 p->r = p->g = p->b = pp[1];
908 p->a = pp[0];
910 #endif
912 static void
913 gp_rgb16(Pixel *p, png_const_voidp pb)
915 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
917 p->r = pp[0];
918 p->g = pp[1];
919 p->b = pp[2];
920 p->a = 65535;
923 #ifdef PNG_FORMAT_BGR_SUPPORTED
924 static void
925 gp_bgr16(Pixel *p, png_const_voidp pb)
927 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
929 p->r = pp[2];
930 p->g = pp[1];
931 p->b = pp[0];
932 p->a = 65535;
934 #endif
936 static void
937 gp_rgba16(Pixel *p, png_const_voidp pb)
939 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
941 p->r = pp[0];
942 p->g = pp[1];
943 p->b = pp[2];
944 p->a = pp[3];
947 #ifdef PNG_FORMAT_BGR_SUPPORTED
948 static void
949 gp_bgra16(Pixel *p, png_const_voidp pb)
951 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
953 p->r = pp[2];
954 p->g = pp[1];
955 p->b = pp[0];
956 p->a = pp[3];
958 #endif
960 #ifdef PNG_FORMAT_AFIRST_SUPPORTED
961 static void
962 gp_argb16(Pixel *p, png_const_voidp pb)
964 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
966 p->r = pp[1];
967 p->g = pp[2];
968 p->b = pp[3];
969 p->a = pp[0];
971 #endif
973 #if defined(PNG_FORMAT_AFIRST_SUPPORTED) && defined(PNG_FORMAT_BGR_SUPPORTED)
974 static void
975 gp_abgr16(Pixel *p, png_const_voidp pb)
977 png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
979 p->r = pp[3];
980 p->g = pp[2];
981 p->b = pp[1];
982 p->a = pp[0];
984 #endif
986 /* Given a format, return the correct one of the above functions. */
987 static void (*
988 get_pixel(png_uint_32 format))(Pixel *p, png_const_voidp pb)
990 /* The color-map flag is irrelevant here - the caller of the function
991 * returned must either pass the buffer or, for a color-mapped image, the
992 * correct entry in the color-map.
994 if (format & PNG_FORMAT_FLAG_LINEAR)
996 if (format & PNG_FORMAT_FLAG_COLOR)
998 # ifdef PNG_FORMAT_BGR_SUPPORTED
999 if (format & PNG_FORMAT_FLAG_BGR)
1001 if (format & PNG_FORMAT_FLAG_ALPHA)
1003 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
1004 if (format & PNG_FORMAT_FLAG_AFIRST)
1005 return gp_abgr16;
1007 else
1008 # endif
1009 return gp_bgra16;
1012 else
1013 return gp_bgr16;
1016 else
1017 # endif
1019 if (format & PNG_FORMAT_FLAG_ALPHA)
1021 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
1022 if (format & PNG_FORMAT_FLAG_AFIRST)
1023 return gp_argb16;
1025 else
1026 # endif
1027 return gp_rgba16;
1030 else
1031 return gp_rgb16;
1035 else
1037 if (format & PNG_FORMAT_FLAG_ALPHA)
1039 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
1040 if (format & PNG_FORMAT_FLAG_AFIRST)
1041 return gp_ag16;
1043 else
1044 # endif
1045 return gp_ga16;
1048 else
1049 return gp_g16;
1053 else
1055 if (format & PNG_FORMAT_FLAG_COLOR)
1057 # ifdef PNG_FORMAT_BGR_SUPPORTED
1058 if (format & PNG_FORMAT_FLAG_BGR)
1060 if (format & PNG_FORMAT_FLAG_ALPHA)
1062 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
1063 if (format & PNG_FORMAT_FLAG_AFIRST)
1064 return gp_abgr8;
1066 else
1067 # endif
1068 return gp_bgra8;
1071 else
1072 return gp_bgr8;
1075 else
1076 # endif
1078 if (format & PNG_FORMAT_FLAG_ALPHA)
1080 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
1081 if (format & PNG_FORMAT_FLAG_AFIRST)
1082 return gp_argb8;
1084 else
1085 # endif
1086 return gp_rgba8;
1089 else
1090 return gp_rgb8;
1094 else
1096 if (format & PNG_FORMAT_FLAG_ALPHA)
1098 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
1099 if (format & PNG_FORMAT_FLAG_AFIRST)
1100 return gp_ag8;
1102 else
1103 # endif
1104 return gp_ga8;
1107 else
1108 return gp_g8;
1113 /* Convertion between pixel formats. The code above effectively eliminates the
1114 * component ordering changes leaving three basic changes:
1116 * 1) Remove an alpha channel by pre-multiplication or compositing on a
1117 * background color. (Adding an alpha channel is a no-op.)
1119 * 2) Remove color by mapping to grayscale. (Grayscale to color is a no-op.)
1121 * 3) Convert between 8-bit and 16-bit components. (Both directtions are
1122 * relevant.)
1124 * This gives the following base format conversion matrix:
1126 * OUT: ----- 8-bit ----- ----- 16-bit -----
1127 * IN G GA RGB RGBA G GA RGB RGBA
1128 * 8 G . . . . lin lin lin lin
1129 * 8 GA bckg . bckc . pre' pre pre' pre
1130 * 8 RGB g8 g8 . . glin glin lin lin
1131 * 8 RGBA g8b g8 bckc . gpr' gpre pre' pre
1132 * 16 G sRGB sRGB sRGB sRGB . . . .
1133 * 16 GA b16g unpg b16c unpc A . A .
1134 * 16 RGB sG sG sRGB sRGB g16 g16 . .
1135 * 16 RGBA gb16 sGp cb16 sCp g16 g16' A .
1137 * 8-bit to 8-bit:
1138 * bckg: composite on gray background
1139 * bckc: composite on color background
1140 * g8: convert sRGB components to sRGB grayscale
1141 * g8b: convert sRGB components to grayscale and composite on gray background
1143 * 8-bit to 16-bit:
1144 * lin: make sRGB components linear, alpha := 65535
1145 * pre: make sRGB components linear and premultiply by alpha (scale alpha)
1146 * pre': as 'pre' but alpha := 65535
1147 * glin: make sRGB components linear, convert to grayscale, alpha := 65535
1148 * gpre: make sRGB components grayscale and linear and premultiply by alpha
1149 * gpr': as 'gpre' but alpha := 65535
1151 * 16-bit to 8-bit:
1152 * sRGB: convert linear components to sRGB, alpha := 255
1153 * unpg: unpremultiply gray component and convert to sRGB (scale alpha)
1154 * unpc: unpremultiply color components and convert to sRGB (scale alpha)
1155 * b16g: composite linear onto gray background and convert the result to sRGB
1156 * b16c: composite linear onto color background and convert the result to sRGB
1157 * sG: convert linear RGB to sRGB grayscale
1158 * sGp: unpremultiply RGB then convert to sRGB grayscale
1159 * sCp: unpremultiply RGB then convert to sRGB
1160 * gb16: composite linear onto background and convert to sRGB grayscale
1161 * (order doesn't matter, the composite and grayscale operations permute)
1162 * cb16: composite linear onto background and convert to sRGB
1164 * 16-bit to 16-bit:
1165 * A: set alpha to 65535
1166 * g16: convert linear RGB to linear grayscale (alpha := 65535)
1167 * g16': as 'g16' but alpha is unchanged
1169 /* Simple copy: */
1170 static void
1171 gpc_noop(Pixel *out, const Pixel *in, const Background *back)
1173 (void)back;
1174 out->r = in->r;
1175 out->g = in->g;
1176 out->b = in->b;
1177 out->a = in->a;
1180 #if ALLOW_UNUSED_GPC
1181 static void
1182 gpc_nop8(Pixel *out, const Pixel *in, const Background *back)
1184 (void)back;
1185 if (in->a == 0)
1186 out->r = out->g = out->b = 255;
1188 else
1190 out->r = in->r;
1191 out->g = in->g;
1192 out->b = in->b;
1195 out->a = in->a;
1197 #endif
1199 #if ALLOW_UNUSED_GPC
1200 static void
1201 gpc_nop6(Pixel *out, const Pixel *in, const Background *back)
1203 (void)back;
1204 if (in->a == 0)
1205 out->r = out->g = out->b = 65535;
1207 else
1209 out->r = in->r;
1210 out->g = in->g;
1211 out->b = in->b;
1214 out->a = in->a;
1216 #endif
1218 /* 8-bit to 8-bit conversions */
1219 /* bckg: composite on gray background */
1220 static void
1221 gpc_bckg(Pixel *out, const Pixel *in, const Background *back)
1223 if (in->a <= 0)
1224 out->r = out->g = out->b = back->ig;
1226 else if (in->a >= 255)
1227 out->r = out->g = out->b = in->g;
1229 else
1231 double a = in->a / 255.;
1233 out->r = out->g = out->b = sRGB(sRGB_to_d[in->g] * a + back->dg * (1-a));
1236 out->a = 255;
1239 /* bckc: composite on color background */
1240 static void
1241 gpc_bckc(Pixel *out, const Pixel *in, const Background *back)
1243 if (in->a <= 0)
1245 out->r = back->ir;
1246 out->g = back->ig;
1247 out->b = back->ib;
1250 else if (in->a >= 255)
1252 out->r = in->r;
1253 out->g = in->g;
1254 out->b = in->b;
1257 else
1259 double a = in->a / 255.;
1261 out->r = sRGB(sRGB_to_d[in->r] * a + back->dr * (1-a));
1262 out->g = sRGB(sRGB_to_d[in->g] * a + back->dg * (1-a));
1263 out->b = sRGB(sRGB_to_d[in->b] * a + back->db * (1-a));
1266 out->a = 255;
1269 /* g8: convert sRGB components to sRGB grayscale */
1270 static void
1271 gpc_g8(Pixel *out, const Pixel *in, const Background *back)
1273 (void)back;
1275 if (in->r == in->g && in->g == in->b)
1276 out->r = out->g = out->b = in->g;
1278 else
1279 out->r = out->g = out->b =
1280 sRGB(YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
1282 out->a = in->a;
1285 /* g8b: convert sRGB components to grayscale and composite on gray background */
1286 static void
1287 gpc_g8b(Pixel *out, const Pixel *in, const Background *back)
1289 if (in->a <= 0)
1290 out->r = out->g = out->b = back->ig;
1292 else if (in->a >= 255)
1294 if (in->r == in->g && in->g == in->b)
1295 out->r = out->g = out->b = in->g;
1297 else
1298 out->r = out->g = out->b = sRGB(YfromRGB(
1299 sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
1302 else
1304 double a = in->a/255.;
1306 out->r = out->g = out->b = sRGB(a * YfromRGB(sRGB_to_d[in->r],
1307 sRGB_to_d[in->g], sRGB_to_d[in->b]) + back->dg * (1-a));
1310 out->a = 255;
1313 /* 8-bit to 16-bit conversions */
1314 /* lin: make sRGB components linear, alpha := 65535 */
1315 static void
1316 gpc_lin(Pixel *out, const Pixel *in, const Background *back)
1318 (void)back;
1320 out->r = ilinear(in->r);
1322 if (in->g == in->r)
1324 out->g = out->r;
1326 if (in->b == in->r)
1327 out->b = out->r;
1329 else
1330 out->b = ilinear(in->b);
1333 else
1335 out->g = ilinear(in->g);
1337 if (in->b == in->r)
1338 out->b = out->r;
1340 else if (in->b == in->g)
1341 out->b = out->g;
1343 else
1344 out->b = ilinear(in->b);
1347 out->a = 65535;
1350 /* pre: make sRGB components linear and premultiply by alpha (scale alpha) */
1351 static void
1352 gpc_pre(Pixel *out, const Pixel *in, const Background *back)
1354 (void)back;
1356 out->r = ilineara(in->r, in->a);
1358 if (in->g == in->r)
1360 out->g = out->r;
1362 if (in->b == in->r)
1363 out->b = out->r;
1365 else
1366 out->b = ilineara(in->b, in->a);
1369 else
1371 out->g = ilineara(in->g, in->a);
1373 if (in->b == in->r)
1374 out->b = out->r;
1376 else if (in->b == in->g)
1377 out->b = out->g;
1379 else
1380 out->b = ilineara(in->b, in->a);
1383 out->a = in->a * 257;
1386 /* pre': as 'pre' but alpha := 65535 */
1387 static void
1388 gpc_preq(Pixel *out, const Pixel *in, const Background *back)
1390 (void)back;
1392 out->r = ilineara(in->r, in->a);
1394 if (in->g == in->r)
1396 out->g = out->r;
1398 if (in->b == in->r)
1399 out->b = out->r;
1401 else
1402 out->b = ilineara(in->b, in->a);
1405 else
1407 out->g = ilineara(in->g, in->a);
1409 if (in->b == in->r)
1410 out->b = out->r;
1412 else if (in->b == in->g)
1413 out->b = out->g;
1415 else
1416 out->b = ilineara(in->b, in->a);
1419 out->a = 65535;
1422 /* glin: make sRGB components linear, convert to grayscale, alpha := 65535 */
1423 static void
1424 gpc_glin(Pixel *out, const Pixel *in, const Background *back)
1426 (void)back;
1428 if (in->r == in->g && in->g == in->b)
1429 out->r = out->g = out->b = ilinear(in->g);
1431 else
1432 out->r = out->g = out->b = u16d(65535 *
1433 YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
1435 out->a = 65535;
1438 /* gpre: make sRGB components grayscale and linear and premultiply by alpha */
1439 static void
1440 gpc_gpre(Pixel *out, const Pixel *in, const Background *back)
1442 (void)back;
1444 if (in->r == in->g && in->g == in->b)
1445 out->r = out->g = out->b = ilineara(in->g, in->a);
1447 else
1448 out->r = out->g = out->b = u16d(in->a * 257 *
1449 YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
1451 out->a = 257 * in->a;
1454 /* gpr': as 'gpre' but alpha := 65535 */
1455 static void
1456 gpc_gprq(Pixel *out, const Pixel *in, const Background *back)
1458 (void)back;
1460 if (in->r == in->g && in->g == in->b)
1461 out->r = out->g = out->b = ilineara(in->g, in->a);
1463 else
1464 out->r = out->g = out->b = u16d(in->a * 257 *
1465 YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
1467 out->a = 65535;
1470 /* 8-bit to 16-bit conversions for gAMA 45455 encoded values */
1471 /* Lin: make gAMA 45455 components linear, alpha := 65535 */
1472 static void
1473 gpc_Lin(Pixel *out, const Pixel *in, const Background *back)
1475 (void)back;
1477 out->r = ilinear_g22(in->r);
1479 if (in->g == in->r)
1481 out->g = out->r;
1483 if (in->b == in->r)
1484 out->b = out->r;
1486 else
1487 out->b = ilinear_g22(in->b);
1490 else
1492 out->g = ilinear_g22(in->g);
1494 if (in->b == in->r)
1495 out->b = out->r;
1497 else if (in->b == in->g)
1498 out->b = out->g;
1500 else
1501 out->b = ilinear_g22(in->b);
1504 out->a = 65535;
1507 #if ALLOW_UNUSED_GPC
1508 /* Pre: make gAMA 45455 components linear and premultiply by alpha (scale alpha)
1510 static void
1511 gpc_Pre(Pixel *out, const Pixel *in, const Background *back)
1513 (void)back;
1515 out->r = ilineara_g22(in->r, in->a);
1517 if (in->g == in->r)
1519 out->g = out->r;
1521 if (in->b == in->r)
1522 out->b = out->r;
1524 else
1525 out->b = ilineara_g22(in->b, in->a);
1528 else
1530 out->g = ilineara_g22(in->g, in->a);
1532 if (in->b == in->r)
1533 out->b = out->r;
1535 else if (in->b == in->g)
1536 out->b = out->g;
1538 else
1539 out->b = ilineara_g22(in->b, in->a);
1542 out->a = in->a * 257;
1544 #endif
1546 #if ALLOW_UNUSED_GPC
1547 /* Pre': as 'Pre' but alpha := 65535 */
1548 static void
1549 gpc_Preq(Pixel *out, const Pixel *in, const Background *back)
1551 (void)back;
1553 out->r = ilineara_g22(in->r, in->a);
1555 if (in->g == in->r)
1557 out->g = out->r;
1559 if (in->b == in->r)
1560 out->b = out->r;
1562 else
1563 out->b = ilineara_g22(in->b, in->a);
1566 else
1568 out->g = ilineara_g22(in->g, in->a);
1570 if (in->b == in->r)
1571 out->b = out->r;
1573 else if (in->b == in->g)
1574 out->b = out->g;
1576 else
1577 out->b = ilineara_g22(in->b, in->a);
1580 out->a = 65535;
1582 #endif
1584 #if ALLOW_UNUSED_GPC
1585 /* Glin: make gAMA 45455 components linear, convert to grayscale, alpha := 65535
1587 static void
1588 gpc_Glin(Pixel *out, const Pixel *in, const Background *back)
1590 (void)back;
1592 if (in->r == in->g && in->g == in->b)
1593 out->r = out->g = out->b = ilinear_g22(in->g);
1595 else
1596 out->r = out->g = out->b = u16d(65535 *
1597 YfromRGB(g22_to_d[in->r], g22_to_d[in->g], g22_to_d[in->b]));
1599 out->a = 65535;
1601 #endif
1603 #if ALLOW_UNUSED_GPC
1604 /* Gpre: make gAMA 45455 components grayscale and linear and premultiply by
1605 * alpha.
1607 static void
1608 gpc_Gpre(Pixel *out, const Pixel *in, const Background *back)
1610 (void)back;
1612 if (in->r == in->g && in->g == in->b)
1613 out->r = out->g = out->b = ilineara_g22(in->g, in->a);
1615 else
1616 out->r = out->g = out->b = u16d(in->a * 257 *
1617 YfromRGB(g22_to_d[in->r], g22_to_d[in->g], g22_to_d[in->b]));
1619 out->a = 257 * in->a;
1621 #endif
1623 #if ALLOW_UNUSED_GPC
1624 /* Gpr': as 'Gpre' but alpha := 65535 */
1625 static void
1626 gpc_Gprq(Pixel *out, const Pixel *in, const Background *back)
1628 (void)back;
1630 if (in->r == in->g && in->g == in->b)
1631 out->r = out->g = out->b = ilineara_g22(in->g, in->a);
1633 else
1634 out->r = out->g = out->b = u16d(in->a * 257 *
1635 YfromRGB(g22_to_d[in->r], g22_to_d[in->g], g22_to_d[in->b]));
1637 out->a = 65535;
1639 #endif
1641 /* 16-bit to 8-bit conversions */
1642 /* sRGB: convert linear components to sRGB, alpha := 255 */
1643 static void
1644 gpc_sRGB(Pixel *out, const Pixel *in, const Background *back)
1646 (void)back;
1648 out->r = isRGB(in->r);
1650 if (in->g == in->r)
1652 out->g = out->r;
1654 if (in->b == in->r)
1655 out->b = out->r;
1657 else
1658 out->b = isRGB(in->b);
1661 else
1663 out->g = isRGB(in->g);
1665 if (in->b == in->r)
1666 out->b = out->r;
1668 else if (in->b == in->g)
1669 out->b = out->g;
1671 else
1672 out->b = isRGB(in->b);
1675 out->a = 255;
1678 /* unpg: unpremultiply gray component and convert to sRGB (scale alpha) */
1679 static void
1680 gpc_unpg(Pixel *out, const Pixel *in, const Background *back)
1682 (void)back;
1684 if (in->a <= 128)
1686 out->r = out->g = out->b = 255;
1687 out->a = 0;
1690 else
1692 out->r = out->g = out->b = sRGB((double)in->g / in->a);
1693 out->a = u8d(in->a / 257.);
1697 /* unpc: unpremultiply color components and convert to sRGB (scale alpha) */
1698 static void
1699 gpc_unpc(Pixel *out, const Pixel *in, const Background *back)
1701 (void)back;
1703 if (in->a <= 128)
1705 out->r = out->g = out->b = 255;
1706 out->a = 0;
1709 else
1711 out->r = sRGB((double)in->r / in->a);
1712 out->g = sRGB((double)in->g / in->a);
1713 out->b = sRGB((double)in->b / in->a);
1714 out->a = u8d(in->a / 257.);
1718 /* b16g: composite linear onto gray background and convert the result to sRGB */
1719 static void
1720 gpc_b16g(Pixel *out, const Pixel *in, const Background *back)
1722 if (in->a <= 0)
1723 out->r = out->g = out->b = back->ig;
1725 else
1727 double a = in->a/65535.;
1728 double a1 = 1-a;
1730 a /= 65535;
1731 out->r = out->g = out->b = sRGB(in->g * a + back->dg * a1);
1734 out->a = 255;
1737 /* b16c: composite linear onto color background and convert the result to sRGB*/
1738 static void
1739 gpc_b16c(Pixel *out, const Pixel *in, const Background *back)
1741 if (in->a <= 0)
1743 out->r = back->ir;
1744 out->g = back->ig;
1745 out->b = back->ib;
1748 else
1750 double a = in->a/65535.;
1751 double a1 = 1-a;
1753 a /= 65535;
1754 out->r = sRGB(in->r * a + back->dr * a1);
1755 out->g = sRGB(in->g * a + back->dg * a1);
1756 out->b = sRGB(in->b * a + back->db * a1);
1759 out->a = 255;
1762 /* sG: convert linear RGB to sRGB grayscale */
1763 static void
1764 gpc_sG(Pixel *out, const Pixel *in, const Background *back)
1766 (void)back;
1768 out->r = out->g = out->b = sRGB(YfromRGBint(in->r, in->g, in->b)/65535);
1769 out->a = 255;
1772 /* sGp: unpremultiply RGB then convert to sRGB grayscale */
1773 static void
1774 gpc_sGp(Pixel *out, const Pixel *in, const Background *back)
1776 (void)back;
1778 if (in->a <= 128)
1780 out->r = out->g = out->b = 255;
1781 out->a = 0;
1784 else
1786 out->r = out->g = out->b = sRGB(YfromRGBint(in->r, in->g, in->b)/in->a);
1787 out->a = u8d(in->a / 257.);
1791 /* sCp: unpremultiply RGB then convert to sRGB */
1792 static void
1793 gpc_sCp(Pixel *out, const Pixel *in, const Background *back)
1795 (void)back;
1797 if (in->a <= 128)
1799 out->r = out->g = out->b = 255;
1800 out->a = 0;
1803 else
1805 out->r = sRGB((double)in->r / in->a);
1806 out->g = sRGB((double)in->g / in->a);
1807 out->b = sRGB((double)in->b / in->a);
1808 out->a = u8d(in->a / 257.);
1812 /* gb16: composite linear onto background and convert to sRGB grayscale */
1813 /* (order doesn't matter, the composite and grayscale operations permute) */
1814 static void
1815 gpc_gb16(Pixel *out, const Pixel *in, const Background *back)
1817 if (in->a <= 0)
1818 out->r = out->g = out->b = back->ig;
1820 else if (in->a >= 65535)
1821 out->r = out->g = out->b = isRGB(in->g);
1823 else
1825 double a = in->a / 65535.;
1826 double a1 = 1-a;
1828 a /= 65535;
1829 out->r = out->g = out->b = sRGB(in->g * a + back->dg * a1);
1832 out->a = 255;
1835 /* cb16: composite linear onto background and convert to sRGB */
1836 static void
1837 gpc_cb16(Pixel *out, const Pixel *in, const Background *back)
1839 if (in->a <= 0)
1841 out->r = back->ir;
1842 out->g = back->ig;
1843 out->b = back->ib;
1846 else if (in->a >= 65535)
1848 out->r = isRGB(in->r);
1849 out->g = isRGB(in->g);
1850 out->b = isRGB(in->b);
1853 else
1855 double a = in->a / 65535.;
1856 double a1 = 1-a;
1858 a /= 65535;
1859 out->r = sRGB(in->r * a + back->dr * a1);
1860 out->g = sRGB(in->g * a + back->dg * a1);
1861 out->b = sRGB(in->b * a + back->db * a1);
1864 out->a = 255;
1867 /* 16-bit to 16-bit conversions */
1868 /* A: set alpha to 65535 */
1869 static void
1870 gpc_A(Pixel *out, const Pixel *in, const Background *back)
1872 (void)back;
1873 out->r = in->r;
1874 out->g = in->g;
1875 out->b = in->b;
1876 out->a = 65535;
1879 /* g16: convert linear RGB to linear grayscale (alpha := 65535) */
1880 static void
1881 gpc_g16(Pixel *out, const Pixel *in, const Background *back)
1883 (void)back;
1884 out->r = out->g = out->b = u16d(YfromRGBint(in->r, in->g, in->b));
1885 out->a = 65535;
1888 /* g16': as 'g16' but alpha is unchanged */
1889 static void
1890 gpc_g16q(Pixel *out, const Pixel *in, const Background *back)
1892 (void)back;
1893 out->r = out->g = out->b = u16d(YfromRGBint(in->r, in->g, in->b));
1894 out->a = in->a;
1897 #if ALLOW_UNUSED_GPC
1898 /* Unused functions (to hide them from GCC unused function warnings) */
1899 void (* const gpc_unused[])
1900 (Pixel *out, const Pixel *in, const Background *back) =
1902 gpc_Pre, gpc_Preq, gpc_Glin, gpc_Gpre, gpc_Gprq, gpc_nop8, gpc_nop6
1904 #endif
1906 /* OUT: ----- 8-bit ----- ----- 16-bit -----
1907 * IN G GA RGB RGBA G GA RGB RGBA
1908 * 8 G . . . . lin lin lin lin
1909 * 8 GA bckg . bckc . pre' pre pre' pre
1910 * 8 RGB g8 g8 . . glin glin lin lin
1911 * 8 RGBA g8b g8 bckc . gpr' gpre pre' pre
1912 * 16 G sRGB sRGB sRGB sRGB . . . .
1913 * 16 GA b16g unpg b16c unpc A . A .
1914 * 16 RGB sG sG sRGB sRGB g16 g16 . .
1915 * 16 RGBA gb16 sGp cb16 sCp g16 g16' A .
1917 * The matrix is held in an array indexed thus:
1919 * gpc_fn[out_format & BASE_FORMATS][in_format & BASE_FORMATS];
1921 /* This will produce a compile time error if the FORMAT_FLAG values don't
1922 * match the above matrix!
1924 #if PNG_FORMAT_FLAG_ALPHA == 1 && PNG_FORMAT_FLAG_COLOR == 2 &&\
1925 PNG_FORMAT_FLAG_LINEAR == 4
1926 static void (* const gpc_fn[8/*in*/][8/*out*/])
1927 (Pixel *out, const Pixel *in, const Background *back) =
1929 /*out: G-8 GA-8 RGB-8 RGBA-8 G-16 GA-16 RGB-16 RGBA-16 */
1930 {gpc_noop,gpc_noop,gpc_noop,gpc_noop, gpc_Lin, gpc_Lin, gpc_Lin, gpc_Lin },
1931 {gpc_bckg,gpc_noop,gpc_bckc,gpc_noop, gpc_preq,gpc_pre, gpc_preq,gpc_pre },
1932 {gpc_g8, gpc_g8, gpc_noop,gpc_noop, gpc_glin,gpc_glin,gpc_lin, gpc_lin },
1933 {gpc_g8b, gpc_g8, gpc_bckc,gpc_noop, gpc_gprq,gpc_gpre,gpc_preq,gpc_pre },
1934 {gpc_sRGB,gpc_sRGB,gpc_sRGB,gpc_sRGB, gpc_noop,gpc_noop,gpc_noop,gpc_noop},
1935 {gpc_b16g,gpc_unpg,gpc_b16c,gpc_unpc, gpc_A, gpc_noop,gpc_A, gpc_noop},
1936 {gpc_sG, gpc_sG, gpc_sRGB,gpc_sRGB, gpc_g16, gpc_g16, gpc_noop,gpc_noop},
1937 {gpc_gb16,gpc_sGp, gpc_cb16,gpc_sCp, gpc_g16, gpc_g16q,gpc_A, gpc_noop}
1940 /* The array is repeated for the cases where both the input and output are color
1941 * mapped because then different algorithms are used.
1943 static void (* const gpc_fn_colormapped[8/*in*/][8/*out*/])
1944 (Pixel *out, const Pixel *in, const Background *back) =
1946 /*out: G-8 GA-8 RGB-8 RGBA-8 G-16 GA-16 RGB-16 RGBA-16 */
1947 {gpc_noop,gpc_noop,gpc_noop,gpc_noop, gpc_lin, gpc_lin, gpc_lin, gpc_lin },
1948 {gpc_bckg,gpc_noop,gpc_bckc,gpc_noop, gpc_preq,gpc_pre, gpc_preq,gpc_pre },
1949 {gpc_g8, gpc_g8, gpc_noop,gpc_noop, gpc_glin,gpc_glin,gpc_lin, gpc_lin },
1950 {gpc_g8b, gpc_g8, gpc_bckc,gpc_noop, gpc_gprq,gpc_gpre,gpc_preq,gpc_pre },
1951 {gpc_sRGB,gpc_sRGB,gpc_sRGB,gpc_sRGB, gpc_noop,gpc_noop,gpc_noop,gpc_noop},
1952 {gpc_b16g,gpc_unpg,gpc_b16c,gpc_unpc, gpc_A, gpc_noop,gpc_A, gpc_noop},
1953 {gpc_sG, gpc_sG, gpc_sRGB,gpc_sRGB, gpc_g16, gpc_g16, gpc_noop,gpc_noop},
1954 {gpc_gb16,gpc_sGp, gpc_cb16,gpc_sCp, gpc_g16, gpc_g16q,gpc_A, gpc_noop}
1957 /* The error arrays record the error in the same matrix; 64 entries, however
1958 * the different algorithms used in libpng for colormap and direct conversions
1959 * mean that four separate matrices are used (for each combination of
1960 * colormapped and direct.)
1962 * In some cases the conversion between sRGB formats goes via a linear
1963 * intermediate; an sRGB to linear conversion (as above) is followed by a simple
1964 * linear to sRGB step with no other conversions. This is done by a separate
1965 * error array from an arbitrary 'in' format to one of the four basic outputs
1966 * (since final output is always sRGB not colormapped).
1968 * These arrays may be modified if the --accumulate flag is set during the run;
1969 * then instead of logging errors they are simply added in.
1971 * The three entries are currently for transparent, partially transparent and
1972 * opaque input pixel values. Notice that alpha should be exact in each case.
1974 * Errors in alpha should only occur when converting from a direct format
1975 * to a colormapped format, when alpha is effectively smashed (so large
1976 * errors can occur.) There should be no error in the '0' and 'opaque'
1977 * values. The fourth entry in the array is used for the alpha error (and it
1978 * should always be zero for the 'via linear' case since this is never color
1979 * mapped.)
1981 * Mapping to a colormap smashes the colors, it is necessary to have separate
1982 * values for these cases because they are much larger; it is very much
1983 * impossible to obtain a reasonable result, these are held in
1984 * gpc_error_to_colormap.
1986 #if PNG_FORMAT_FLAG_COLORMAP == 8 /* extra check also required */
1987 # include "pngstest-errors.h" /* machine generated */
1988 #endif /* COLORMAP flag check */
1989 #endif /* flag checks */
1991 typedef struct
1993 /* Basic pixel information: */
1994 Image* in_image; /* Input image */
1995 const Image* out_image; /* Output image */
1997 /* 'background' is the value passed to the gpc_ routines, it may be NULL if
1998 * it should not be used (*this* program has an error if it crashes as a
1999 * result!)
2001 Background background_color;
2002 const Background* background;
2004 /* Precalculated values: */
2005 int in_opaque; /* Value of input alpha that is opaque */
2006 int is_palette; /* Sample values come from the palette */
2007 int accumulate; /* Accumlate component errors (don't log) */
2008 int output_8bit; /* Output is 8-bit (else 16-bit) */
2010 void (*in_gp)(Pixel*, png_const_voidp);
2011 void (*out_gp)(Pixel*, png_const_voidp);
2013 void (*transform)(Pixel *out, const Pixel *in, const Background *back);
2014 /* A function to perform the required transform */
2016 void (*from_linear)(Pixel *out, const Pixel *in, const Background *back);
2017 /* For 'via_linear' transforms the final, from linear, step, else NULL */
2019 png_uint_16 error[4];
2020 /* Three error values for transparent, partially transparent and opaque
2021 * input pixels (in turn).
2024 png_uint_16 *error_ptr;
2025 /* Where these are stored in the static array (for 'accumulate') */
2027 Transform;
2029 /* Return a 'transform' as above for the given format conversion. */
2030 static void
2031 transform_from_formats(Transform *result, Image *in_image,
2032 const Image *out_image, png_const_colorp background, int via_linear)
2034 png_uint_32 in_format, out_format;
2035 png_uint_32 in_base, out_base;
2037 memset(result, 0, sizeof *result);
2039 /* Store the original images for error messages */
2040 result->in_image = in_image;
2041 result->out_image = out_image;
2043 in_format = in_image->image.format;
2044 out_format = out_image->image.format;
2046 if (in_format & PNG_FORMAT_FLAG_LINEAR)
2047 result->in_opaque = 65535;
2048 else
2049 result->in_opaque = 255;
2051 result->output_8bit = (out_format & PNG_FORMAT_FLAG_LINEAR) == 0;
2053 result->is_palette = 0; /* set by caller if required */
2054 result->accumulate = (in_image->opts & ACCUMULATE) != 0;
2056 /* The loaders (which need the ordering information) */
2057 result->in_gp = get_pixel(in_format);
2058 result->out_gp = get_pixel(out_format);
2060 /* Remove the ordering information: */
2061 in_format &= BASE_FORMATS | PNG_FORMAT_FLAG_COLORMAP;
2062 in_base = in_format & BASE_FORMATS;
2063 out_format &= BASE_FORMATS | PNG_FORMAT_FLAG_COLORMAP;
2064 out_base = out_format & BASE_FORMATS;
2066 if (via_linear)
2068 /* Check for an error in this program: */
2069 if (out_format & (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLORMAP))
2071 fprintf(stderr, "internal transform via linear error 0x%x->0x%x\n",
2072 in_format, out_format);
2073 exit(1);
2076 result->transform = gpc_fn[in_base][out_base | PNG_FORMAT_FLAG_LINEAR];
2077 result->from_linear = gpc_fn[out_base | PNG_FORMAT_FLAG_LINEAR][out_base];
2078 result->error_ptr = gpc_error_via_linear[in_format][out_format];
2081 else if (~in_format & out_format & PNG_FORMAT_FLAG_COLORMAP)
2083 /* The input is not colormapped but the output is, the errors will
2084 * typically be large (only the grayscale-no-alpha case permits preserving
2085 * even 8-bit values.)
2087 result->transform = gpc_fn[in_base][out_base];
2088 result->from_linear = NULL;
2089 result->error_ptr = gpc_error_to_colormap[in_base][out_base];
2092 else
2094 /* The caller handles the colormap->pixel value conversion, so the
2095 * transform function just gets a pixel value, however because libpng
2096 * currently contains a different implementation for mapping a colormap if
2097 * both input and output are colormapped we need different conversion
2098 * functions to deal with errors in the libpng implementation.
2100 if (in_format & out_format & PNG_FORMAT_FLAG_COLORMAP)
2101 result->transform = gpc_fn_colormapped[in_base][out_base];
2102 else
2103 result->transform = gpc_fn[in_base][out_base];
2104 result->from_linear = NULL;
2105 result->error_ptr = gpc_error[in_format][out_format];
2108 /* Follow the libpng simplified API rules to work out what to pass to the gpc
2109 * routines as a background value, if one is not required pass NULL so that
2110 * this program crashes in the even of a programming error.
2112 result->background = NULL; /* default: not required */
2114 /* Rule 1: background only need be supplied if alpha is to be removed */
2115 if (in_format & ~out_format & PNG_FORMAT_FLAG_ALPHA)
2117 /* The input value is 'NULL' to use the background and (otherwise) an sRGB
2118 * background color (to use a solid color). The code above uses a fixed
2119 * byte value, BUFFER_INIT8, for buffer even for 16-bit output. For
2120 * linear (16-bit) output the sRGB background color is ignored; the
2121 * composition is always on the background (so BUFFER_INIT8 * 257), except
2122 * that for the colormap (i.e. linear colormapped output) black is used.
2124 result->background = &result->background_color;
2126 if (out_format & PNG_FORMAT_FLAG_LINEAR || via_linear)
2128 if (out_format & PNG_FORMAT_FLAG_COLORMAP)
2130 result->background_color.ir =
2131 result->background_color.ig =
2132 result->background_color.ib = 0;
2133 result->background_color.dr =
2134 result->background_color.dg =
2135 result->background_color.db = 0;
2138 else
2140 result->background_color.ir =
2141 result->background_color.ig =
2142 result->background_color.ib = BUFFER_INIT8 * 257;
2143 result->background_color.dr =
2144 result->background_color.dg =
2145 result->background_color.db = 0;
2149 else /* sRGB output */
2151 if (background != NULL)
2153 if (out_format & PNG_FORMAT_FLAG_COLOR)
2155 result->background_color.ir = background->red;
2156 result->background_color.ig = background->green;
2157 result->background_color.ib = background->blue;
2158 /* TODO: sometimes libpng uses the power law conversion here, how
2159 * to handle this?
2161 result->background_color.dr = sRGB_to_d[background->red];
2162 result->background_color.dg = sRGB_to_d[background->green];
2163 result->background_color.db = sRGB_to_d[background->blue];
2166 else /* grayscale: libpng only looks at 'g' */
2168 result->background_color.ir =
2169 result->background_color.ig =
2170 result->background_color.ib = background->green;
2171 /* TODO: sometimes libpng uses the power law conversion here, how
2172 * to handle this?
2174 result->background_color.dr =
2175 result->background_color.dg =
2176 result->background_color.db = sRGB_to_d[background->green];
2180 else if ((out_format & PNG_FORMAT_FLAG_COLORMAP) == 0)
2182 result->background_color.ir =
2183 result->background_color.ig =
2184 result->background_color.ib = BUFFER_INIT8;
2185 /* TODO: sometimes libpng uses the power law conversion here, how
2186 * to handle this?
2188 result->background_color.dr =
2189 result->background_color.dg =
2190 result->background_color.db = sRGB_to_d[BUFFER_INIT8];
2193 /* Else the output is colormapped and a background color must be
2194 * provided; if pngstest crashes then that is a bug in this program
2195 * (though libpng should png_error as well.)
2197 else
2198 result->background = NULL;
2202 if (result->background == NULL)
2204 result->background_color.ir =
2205 result->background_color.ig =
2206 result->background_color.ib = -1; /* not used */
2207 result->background_color.dr =
2208 result->background_color.dg =
2209 result->background_color.db = 1E30; /* not used */
2213 /* Copy the error values into the Transform: */
2214 result->error[0] = result->error_ptr[0];
2215 result->error[1] = result->error_ptr[1];
2216 result->error[2] = result->error_ptr[2];
2217 result->error[3] = result->error_ptr[3];
2221 /* Compare two pixels.
2223 * OLD error values:
2224 static int error_to_linear = 811; * by experiment *
2225 static int error_to_linear_grayscale = 424; * by experiment *
2226 static int error_to_sRGB = 6; * by experiment *
2227 static int error_to_sRGB_grayscale = 17; * libpng error by calculation +
2228 2 by experiment *
2229 static int error_in_compose = 2; * by experiment *
2230 static int error_in_premultiply = 1;
2232 * The following is *just* the result of a round trip from 8-bit sRGB to linear
2233 * then back to 8-bit sRGB when it is done by libpng. There are two problems:
2235 * 1) libpng currently uses a 2.2 power law with no linear segment, this results
2236 * in instability in the low values and even with 16-bit precision sRGB(1) ends
2237 * up mapping to sRGB(0) as a result of rounding in the 16-bit representation.
2238 * This gives an error of 1 in the handling of value 1 only.
2240 * 2) libpng currently uses an intermediate 8-bit linear value in gamma
2241 * correction of 8-bit values. This results in many more errors, the worse of
2242 * which is mapping sRGB(14) to sRGB(0).
2244 * The general 'error_via_linear' is more complex because of pre-multiplication,
2245 * this compounds the 8-bit errors according to the alpha value of the pixel.
2246 * As a result 256 values are pre-calculated for error_via_linear.
2248 #if 0
2249 static int error_in_libpng_gamma;
2250 static int error_via_linear[256]; /* Indexed by 8-bit alpha */
2252 static void
2253 init_error_via_linear(void)
2255 int alpha;
2257 error_via_linear[0] = 255; /* transparent pixel */
2259 for (alpha=1; alpha<=255; ++alpha)
2261 /* 16-bit values less than 128.5 get rounded to 8-bit 0 and so the worst
2262 * case error arises with 16-bit 128.5, work out what sRGB
2263 * (non-associated) value generates 128.5; any value less than this is
2264 * going to map to 0, so the worst error is floor(value).
2266 * Note that errors are considerably higher (more than a factor of 2)
2267 * because libpng uses a simple power law for sRGB data at present.
2269 * Add .1 for arithmetic errors inside libpng.
2271 double v = floor(255*pow(.5/*(128.5 * 255 / 65535)*/ / alpha, 1/2.2)+.1);
2273 error_via_linear[alpha] = (int)v;
2276 /* This is actually 14.99, but, despite the closeness to 15, 14 seems to work
2277 * ok in this case.
2279 error_in_libpng_gamma = 14;
2281 #endif
2283 static void
2284 print_pixel(char string[64], const Pixel *pixel, png_uint_32 format)
2286 switch (format & (PNG_FORMAT_FLAG_ALPHA|PNG_FORMAT_FLAG_COLOR))
2288 case 0:
2289 sprintf(string, "%s(%d)", format_names[format], pixel->g);
2290 break;
2292 case PNG_FORMAT_FLAG_ALPHA:
2293 sprintf(string, "%s(%d,%d)", format_names[format], pixel->g,
2294 pixel->a);
2295 break;
2297 case PNG_FORMAT_FLAG_COLOR:
2298 sprintf(string, "%s(%d,%d,%d)", format_names[format],
2299 pixel->r, pixel->g, pixel->b);
2300 break;
2302 case PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_ALPHA:
2303 sprintf(string, "%s(%d,%d,%d,%d)", format_names[format],
2304 pixel->r, pixel->g, pixel->b, pixel->a);
2305 break;
2307 default:
2308 sprintf(string, "invalid-format");
2309 break;
2313 static int
2314 logpixel(const Transform *transform, png_uint_32 x, png_uint_32 y,
2315 const Pixel *in, const Pixel *calc, const Pixel *out, const char *reason)
2317 const png_uint_32 in_format = transform->in_image->image.format;
2318 const png_uint_32 out_format = transform->out_image->image.format;
2320 png_uint_32 back_format = out_format & ~PNG_FORMAT_FLAG_ALPHA;
2321 const char *via_linear = "";
2323 char pixel_in[64], pixel_calc[64], pixel_out[64], pixel_loc[64];
2324 char background_info[100];
2326 print_pixel(pixel_in, in, in_format);
2327 print_pixel(pixel_calc, calc, out_format);
2328 print_pixel(pixel_out, out, out_format);
2330 if (transform->is_palette)
2331 sprintf(pixel_loc, "palette: %lu", (unsigned long)y);
2332 else
2333 sprintf(pixel_loc, "%lu,%lu", (unsigned long)x, (unsigned long)y);
2335 if (transform->from_linear != NULL)
2337 via_linear = " (via linear)";
2338 /* And as a result the *read* format which did any background processing
2339 * was itself linear, so the background color information is also
2340 * linear.
2342 back_format |= PNG_FORMAT_FLAG_LINEAR;
2345 if (transform->background != NULL)
2347 Pixel back;
2348 char pixel_back[64];
2350 back.r = transform->background->ir;
2351 back.g = transform->background->ig;
2352 back.b = transform->background->ib;
2353 back.a = -1; /* not used */
2355 print_pixel(pixel_back, &back, back_format);
2356 sprintf(background_info, " on background %s", pixel_back);
2359 else
2360 background_info[0] = 0;
2362 if (transform->in_image->file_name != transform->out_image->file_name)
2364 char error_buffer[512];
2365 sprintf(error_buffer,
2366 "(%s) %s error%s:\n %s%s ->\n %s\n not: %s.\n"
2367 "Use --preserve and examine: ", pixel_loc, reason, via_linear,
2368 pixel_in, background_info, pixel_out, pixel_calc);
2369 return logerror(transform->in_image, transform->in_image->file_name,
2370 error_buffer, transform->out_image->file_name);
2373 else
2375 char error_buffer[512];
2376 sprintf(error_buffer,
2377 "(%s) %s error%s:\n %s%s ->\n %s\n not: %s.\n"
2378 " The error happened when reading the original file with this format.",
2379 pixel_loc, reason, via_linear, pixel_in, background_info, pixel_out,
2380 pixel_calc);
2381 return logerror(transform->in_image, transform->in_image->file_name,
2382 error_buffer, "");
2386 static int
2387 cmppixel(Transform *transform, png_const_voidp in, png_const_voidp out,
2388 png_uint_32 x, png_uint_32 y/*or palette index*/)
2390 int maxerr;
2391 png_const_charp errmsg;
2392 Pixel pixel_in, pixel_calc, pixel_out;
2394 transform->in_gp(&pixel_in, in);
2396 if (transform->from_linear == NULL)
2397 transform->transform(&pixel_calc, &pixel_in, transform->background);
2399 else
2401 transform->transform(&pixel_out, &pixel_in, transform->background);
2402 transform->from_linear(&pixel_calc, &pixel_out, NULL);
2405 transform->out_gp(&pixel_out, out);
2407 /* Eliminate the case where the input and output values match exactly. */
2408 if (pixel_calc.a == pixel_out.a && pixel_calc.r == pixel_out.r &&
2409 pixel_calc.g == pixel_out.g && pixel_calc.b == pixel_out.b)
2410 return 1;
2412 /* Eliminate the case where the output pixel is transparent and the output
2413 * is 8-bit - any component values are valid. Don't check the input alpha
2414 * here to also skip the 16-bit small alpha cases.
2416 if (transform->output_8bit && pixel_calc.a == 0 && pixel_out.a == 0)
2417 return 1;
2419 /* Check for alpha errors first; an alpha error can damage the components too
2420 * so avoid spurious checks on components if one is found.
2422 errmsg = NULL;
2424 int err_a = abs(pixel_calc.a-pixel_out.a);
2426 if (err_a > transform->error[3])
2428 /* If accumulating check the components too */
2429 if (transform->accumulate)
2430 transform->error[3] = (png_uint_16)err_a;
2432 else
2433 errmsg = "alpha";
2437 /* Now if *either* of the output alphas are 0 but alpha is within tolerance
2438 * eliminate the 8-bit component comparison.
2440 if (errmsg == NULL && transform->output_8bit &&
2441 (pixel_calc.a == 0 || pixel_out.a == 0))
2442 return 1;
2444 if (errmsg == NULL) /* else just signal an alpha error */
2446 int err_r = abs(pixel_calc.r - pixel_out.r);
2447 int err_g = abs(pixel_calc.g - pixel_out.g);
2448 int err_b = abs(pixel_calc.b - pixel_out.b);
2449 int limit;
2451 if ((err_r | err_g | err_b) == 0)
2452 return 1; /* exact match */
2454 /* Mismatch on a component, check the input alpha */
2455 if (pixel_in.a >= transform->in_opaque)
2457 errmsg = "opaque component";
2458 limit = 2; /* opaque */
2461 else if (pixel_in.a > 0)
2463 errmsg = "alpha component";
2464 limit = 1; /* partially transparent */
2467 else
2469 errmsg = "transparent component (background)";
2470 limit = 0; /* transparent */
2473 maxerr = err_r;
2474 if (maxerr < err_g) maxerr = err_g;
2475 if (maxerr < err_b) maxerr = err_b;
2477 if (maxerr <= transform->error[limit])
2478 return 1; /* within the error limits */
2480 /* Handle a component mis-match; log it, just return an error code, or
2481 * accumulate it.
2483 if (transform->accumulate)
2485 transform->error[limit] = (png_uint_16)maxerr;
2486 return 1; /* to cause the caller to keep going */
2490 /* Failure to match and not accumulating, so the error must be logged. */
2491 return logpixel(transform, x, y, &pixel_in, &pixel_calc, &pixel_out, errmsg);
2494 static png_byte
2495 component_loc(png_byte loc[4], png_uint_32 format)
2497 /* Given a format return the number of channels and the location of
2498 * each channel.
2500 * The mask 'loc' contains the component offset of the channels in the
2501 * following order. Note that if 'format' is grayscale the entries 1-3 must
2502 * all contain the location of the gray channel.
2504 * 0: alpha
2505 * 1: red or gray
2506 * 2: green or gray
2507 * 3: blue or gray
2509 png_byte channels;
2511 if (format & PNG_FORMAT_FLAG_COLOR)
2513 channels = 3;
2515 loc[2] = 1;
2517 # ifdef PNG_FORMAT_BGR_SUPPORTED
2518 if (format & PNG_FORMAT_FLAG_BGR)
2520 loc[1] = 2;
2521 loc[3] = 0;
2524 else
2525 # endif
2527 loc[1] = 0;
2528 loc[3] = 2;
2532 else
2534 channels = 1;
2535 loc[1] = loc[2] = loc[3] = 0;
2538 if (format & PNG_FORMAT_FLAG_ALPHA)
2540 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
2541 if (format & PNG_FORMAT_FLAG_AFIRST)
2543 loc[0] = 0;
2544 ++loc[1];
2545 ++loc[2];
2546 ++loc[3];
2549 else
2550 # endif
2551 loc[0] = channels;
2553 ++channels;
2556 else
2557 loc[0] = 4; /* not present */
2559 return channels;
2562 /* Compare two images, the original 'a', which was written out then read back in
2563 * to * give image 'b'. The formats may have been changed.
2565 static int
2566 compare_two_images(Image *a, Image *b, int via_linear,
2567 png_const_colorp background)
2569 ptrdiff_t stridea = a->stride;
2570 ptrdiff_t strideb = b->stride;
2571 png_const_bytep rowa = a->buffer+16;
2572 png_const_bytep rowb = b->buffer+16;
2573 const png_uint_32 width = a->image.width;
2574 const png_uint_32 height = a->image.height;
2575 const png_uint_32 formata = a->image.format;
2576 const png_uint_32 formatb = b->image.format;
2577 const unsigned int a_sample = PNG_IMAGE_SAMPLE_SIZE(formata);
2578 const unsigned int b_sample = PNG_IMAGE_SAMPLE_SIZE(formatb);
2579 int alpha_added, alpha_removed;
2580 int bchannels;
2581 int btoa[4];
2582 png_uint_32 y;
2583 Transform tr;
2585 /* This should never happen: */
2586 if (width != b->image.width || height != b->image.height)
2587 return logerror(a, a->file_name, ": width x height changed: ",
2588 b->file_name);
2590 /* Set up the background and the transform */
2591 transform_from_formats(&tr, a, b, background, via_linear);
2593 /* Find the first row and inter-row space. */
2594 if (!(formata & PNG_FORMAT_FLAG_COLORMAP) &&
2595 (formata & PNG_FORMAT_FLAG_LINEAR))
2596 stridea *= 2;
2598 if (!(formatb & PNG_FORMAT_FLAG_COLORMAP) &&
2599 (formatb & PNG_FORMAT_FLAG_LINEAR))
2600 strideb *= 2;
2602 if (stridea < 0) rowa += (height-1) * (-stridea);
2603 if (strideb < 0) rowb += (height-1) * (-strideb);
2605 /* First shortcut the two colormap case by comparing the image data; if it
2606 * matches then we expect the colormaps to match, although this is not
2607 * absolutely necessary for an image match. If the colormaps fail to match
2608 * then there is a problem in libpng.
2610 if (formata & formatb & PNG_FORMAT_FLAG_COLORMAP)
2612 /* Only check colormap entries that actually exist; */
2613 png_const_bytep ppa, ppb;
2614 int match;
2615 png_byte in_use[256], amax = 0, bmax = 0;
2617 memset(in_use, 0, sizeof in_use);
2619 ppa = rowa;
2620 ppb = rowb;
2622 /* Do this the slow way to accumulate the 'in_use' flags, don't break out
2623 * of the loop until the end; this validates the color-mapped data to
2624 * ensure all pixels are valid color-map indexes.
2626 for (y=0, match=1; y<height && match; ++y, ppa += stridea, ppb += strideb)
2628 png_uint_32 x;
2630 for (x=0; x<width; ++x)
2632 png_byte bval = ppb[x];
2633 png_byte aval = ppa[x];
2635 if (bval > bmax)
2636 bmax = bval;
2638 if (bval != aval)
2639 match = 0;
2641 in_use[aval] = 1;
2642 if (aval > amax)
2643 amax = aval;
2647 /* If the buffers match then the colormaps must too. */
2648 if (match)
2650 /* Do the color-maps match, entry by entry? Only check the 'in_use'
2651 * entries. An error here should be logged as a color-map error.
2653 png_const_bytep a_cmap = (png_const_bytep)a->colormap;
2654 png_const_bytep b_cmap = (png_const_bytep)b->colormap;
2655 int result = 1; /* match by default */
2657 /* This is used in logpixel to get the error message correct. */
2658 tr.is_palette = 1;
2660 for (y=0; y<256; ++y, a_cmap += a_sample, b_cmap += b_sample)
2661 if (in_use[y])
2663 /* The colormap entries should be valid, but because libpng doesn't
2664 * do any checking at present the original image may contain invalid
2665 * pixel values. These cause an error here (at present) unless
2666 * accumulating errors in which case the program just ignores them.
2668 if (y >= a->image.colormap_entries)
2670 if ((a->opts & ACCUMULATE) == 0)
2672 char pindex[9];
2673 sprintf(pindex, "%lu[%lu]", (unsigned long)y,
2674 (unsigned long)a->image.colormap_entries);
2675 logerror(a, a->file_name, ": bad pixel index: ", pindex);
2677 result = 0;
2680 else if (y >= b->image.colormap_entries)
2682 if ((b->opts & ACCUMULATE) == 0)
2684 char pindex[9];
2685 sprintf(pindex, "%lu[%lu]", (unsigned long)y,
2686 (unsigned long)b->image.colormap_entries);
2687 logerror(b, b->file_name, ": bad pixel index: ", pindex);
2689 result = 0;
2692 /* All the mismatches are logged here; there can only be 256! */
2693 else if (!cmppixel(&tr, a_cmap, b_cmap, 0, y))
2694 result = 0;
2697 /* If reqested copy the error values back from the Transform. */
2698 if (a->opts & ACCUMULATE)
2700 tr.error_ptr[0] = tr.error[0];
2701 tr.error_ptr[1] = tr.error[1];
2702 tr.error_ptr[2] = tr.error[2];
2703 tr.error_ptr[3] = tr.error[3];
2704 result = 1; /* force a continue */
2707 return result;
2710 /* else the image buffers don't match pixel-wise so compare sample values
2711 * instead, but first validate that the pixel indexes are in range (but
2712 * only if not accumulating, when the error is ignored.)
2714 else if ((a->opts & ACCUMULATE) == 0)
2716 /* Check the original image first,
2717 * TODO: deal with input images with bad pixel values?
2719 if (amax >= a->image.colormap_entries)
2721 char pindex[9];
2722 sprintf(pindex, "%d[%lu]", amax,
2723 (unsigned long)a->image.colormap_entries);
2724 return logerror(a, a->file_name, ": bad pixel index: ", pindex);
2727 else if (bmax >= b->image.colormap_entries)
2729 char pindex[9];
2730 sprintf(pindex, "%d[%lu]", bmax,
2731 (unsigned long)b->image.colormap_entries);
2732 return logerror(b, b->file_name, ": bad pixel index: ", pindex);
2737 /* We can directly compare pixel values without the need to use the read
2738 * or transform support (i.e. a memory compare) if:
2740 * 1) The bit depth has not changed.
2741 * 2) RGB to grayscale has not been done (the reverse is ok; we just compare
2742 * the three RGB values to the original grayscale.)
2743 * 3) An alpha channel has not been removed from an 8-bit format, or the
2744 * 8-bit alpha value of the pixel was 255 (opaque).
2746 * If an alpha channel has been *added* then it must have the relevant opaque
2747 * value (255 or 65535).
2749 * The fist two the tests (in the order given above) (using the boolean
2750 * equivalence !a && !b == !(a || b))
2752 if (!(((formata ^ formatb) & PNG_FORMAT_FLAG_LINEAR) |
2753 (formata & (formatb ^ PNG_FORMAT_FLAG_COLOR) & PNG_FORMAT_FLAG_COLOR)))
2755 /* Was an alpha channel changed? */
2756 const png_uint_32 alpha_changed = (formata ^ formatb) &
2757 PNG_FORMAT_FLAG_ALPHA;
2759 /* Was an alpha channel removed? (The third test.) If so the direct
2760 * comparison is only possible if the input alpha is opaque.
2762 alpha_removed = (formata & alpha_changed) != 0;
2764 /* Was an alpha channel added? */
2765 alpha_added = (formatb & alpha_changed) != 0;
2767 /* The channels may have been moved between input and output, this finds
2768 * out how, recording the result in the btoa array, which says where in
2769 * 'a' to find each channel of 'b'. If alpha was added then btoa[alpha]
2770 * ends up as 4 (and is not used.)
2773 int i;
2774 png_byte aloc[4];
2775 png_byte bloc[4];
2777 /* The following are used only if the formats match, except that
2778 * 'bchannels' is a flag for matching formats. btoa[x] says, for each
2779 * channel in b, where to find the corresponding value in a, for the
2780 * bchannels. achannels may be different for a gray to rgb transform
2781 * (a will be 1 or 2, b will be 3 or 4 channels.)
2783 (void)component_loc(aloc, formata);
2784 bchannels = component_loc(bloc, formatb);
2786 /* Hence the btoa array. */
2787 for (i=0; i<4; ++i) if (bloc[i] < 4)
2788 btoa[bloc[i]] = aloc[i]; /* may be '4' for alpha */
2790 if (alpha_added)
2791 alpha_added = bloc[0]; /* location of alpha channel in image b */
2793 else
2794 alpha_added = 4; /* Won't match an image b channel */
2796 if (alpha_removed)
2797 alpha_removed = aloc[0]; /* location of alpha channel in image a */
2799 else
2800 alpha_removed = 4;
2804 else
2806 /* Direct compare is not possible, cancel out all the corresponding local
2807 * variables.
2809 bchannels = 0;
2810 alpha_removed = alpha_added = 4;
2811 btoa[3] = btoa[2] = btoa[1] = btoa[0] = 4; /* 4 == not present */
2814 for (y=0; y<height; ++y, rowa += stridea, rowb += strideb)
2816 png_const_bytep ppa, ppb;
2817 png_uint_32 x;
2819 for (x=0, ppa=rowa, ppb=rowb; x<width; ++x)
2821 png_const_bytep psa, psb;
2823 if (formata & PNG_FORMAT_FLAG_COLORMAP)
2824 psa = (png_const_bytep)a->colormap + a_sample * *ppa++;
2825 else
2826 psa = ppa, ppa += a_sample;
2828 if (formatb & PNG_FORMAT_FLAG_COLORMAP)
2829 psb = (png_const_bytep)b->colormap + b_sample * *ppb++;
2830 else
2831 psb = ppb, ppb += b_sample;
2833 /* Do the fast test if possible. */
2834 if (bchannels)
2836 /* Check each 'b' channel against either the corresponding 'a'
2837 * channel or the opaque alpha value, as appropriate. If
2838 * alpha_removed value is set (not 4) then also do this only if the
2839 * 'a' alpha channel (alpha_removed) is opaque; only relevant for
2840 * the 8-bit case.
2842 if (formatb & PNG_FORMAT_FLAG_LINEAR) /* 16-bit checks */
2844 png_const_uint_16p pua = aligncastconst(png_const_uint_16p, psa);
2845 png_const_uint_16p pub = aligncastconst(png_const_uint_16p, psb);
2847 switch (bchannels)
2849 case 4:
2850 if (pua[btoa[3]] != pub[3]) break;
2851 case 3:
2852 if (pua[btoa[2]] != pub[2]) break;
2853 case 2:
2854 if (pua[btoa[1]] != pub[1]) break;
2855 case 1:
2856 if (pua[btoa[0]] != pub[0]) break;
2857 if (alpha_added != 4 && pub[alpha_added] != 65535) break;
2858 continue; /* x loop */
2859 default:
2860 break; /* impossible */
2864 else if (alpha_removed == 4 || psa[alpha_removed] == 255)
2866 switch (bchannels)
2868 case 4:
2869 if (psa[btoa[3]] != psb[3]) break;
2870 case 3:
2871 if (psa[btoa[2]] != psb[2]) break;
2872 case 2:
2873 if (psa[btoa[1]] != psb[1]) break;
2874 case 1:
2875 if (psa[btoa[0]] != psb[0]) break;
2876 if (alpha_added != 4 && psb[alpha_added] != 255) break;
2877 continue; /* x loop */
2878 default:
2879 break; /* impossible */
2884 /* If we get to here the fast match failed; do the slow match for this
2885 * pixel.
2887 if (!cmppixel(&tr, psa, psb, x, y) && (a->opts & KEEP_GOING) == 0)
2888 return 0; /* error case */
2892 /* If reqested copy the error values back from the Transform. */
2893 if (a->opts & ACCUMULATE)
2895 tr.error_ptr[0] = tr.error[0];
2896 tr.error_ptr[1] = tr.error[1];
2897 tr.error_ptr[2] = tr.error[2];
2898 tr.error_ptr[3] = tr.error[3];
2901 return 1;
2904 /* Read the file; how the read gets done depends on which of input_file and
2905 * input_memory have been set.
2907 static int
2908 read_file(Image *image, png_uint_32 format, png_const_colorp background)
2910 memset(&image->image, 0, sizeof image->image);
2911 image->image.version = PNG_IMAGE_VERSION;
2913 if (image->input_memory != NULL)
2915 if (!png_image_begin_read_from_memory(&image->image, image->input_memory,
2916 image->input_memory_size))
2917 return logerror(image, "memory init: ", image->file_name, "");
2920 # ifdef PNG_STDIO_SUPPORTED
2921 else if (image->input_file != NULL)
2923 if (!png_image_begin_read_from_stdio(&image->image, image->input_file))
2924 return logerror(image, "stdio init: ", image->file_name, "");
2927 else
2929 if (!png_image_begin_read_from_file(&image->image, image->file_name))
2930 return logerror(image, "file init: ", image->file_name, "");
2932 # else
2933 else
2935 return logerror(image, "unsupported file/stdio init: ",
2936 image->file_name, "");
2938 # endif
2940 /* This must be set after the begin_read call: */
2941 if (image->opts & sRGB_16BIT)
2942 image->image.flags |= PNG_IMAGE_FLAG_16BIT_sRGB;
2944 /* Have an initialized image with all the data we need plus, maybe, an
2945 * allocated file (myfile) or buffer (mybuffer) that need to be freed.
2948 int result;
2949 png_uint_32 image_format;
2951 /* Print both original and output formats. */
2952 image_format = image->image.format;
2954 if (image->opts & VERBOSE)
2956 printf("%s %lu x %lu %s -> %s", image->file_name,
2957 (unsigned long)image->image.width,
2958 (unsigned long)image->image.height,
2959 format_names[image_format & FORMAT_MASK],
2960 (format & FORMAT_NO_CHANGE) != 0 || image->image.format == format
2961 ? "no change" : format_names[format & FORMAT_MASK]);
2963 if (background != NULL)
2964 printf(" background(%d,%d,%d)\n", background->red,
2965 background->green, background->blue);
2966 else
2967 printf("\n");
2969 fflush(stdout);
2972 /* 'NO_CHANGE' combined with the color-map flag forces the base format
2973 * flags to be set on read to ensure that the original representation is
2974 * not lost in the pass through a colormap format.
2976 if ((format & FORMAT_NO_CHANGE) != 0)
2978 if ((format & PNG_FORMAT_FLAG_COLORMAP) != 0 &&
2979 (image_format & PNG_FORMAT_FLAG_COLORMAP) != 0)
2980 format = (image_format & ~BASE_FORMATS) | (format & BASE_FORMATS);
2982 else
2983 format = image_format;
2986 image->image.format = format;
2988 image->stride = PNG_IMAGE_ROW_STRIDE(image->image) + image->stride_extra;
2989 allocbuffer(image);
2991 result = png_image_finish_read(&image->image, background,
2992 image->buffer+16, (png_int_32)image->stride, image->colormap);
2994 checkbuffer(image, image->file_name);
2996 if (result)
2997 return checkopaque(image);
2999 else
3000 return logerror(image, image->file_name, ": image read failed", "");
3004 /* Reads from a filename, which must be in image->file_name, but uses
3005 * image->opts to choose the method. The file is always read in its native
3006 * format (the one the simplified API suggests).
3008 static int
3009 read_one_file(Image *image)
3011 if (!(image->opts & READ_FILE) || (image->opts & USE_STDIO))
3013 /* memory or stdio. */
3014 FILE *f = fopen(image->file_name, "rb");
3016 if (f != NULL)
3018 if (image->opts & READ_FILE)
3019 image->input_file = f;
3021 else /* memory */
3023 if (fseek(f, 0, SEEK_END) == 0)
3025 long int cb = ftell(f);
3027 if (cb > 0)
3029 #ifndef __COVERITY__
3030 if ((unsigned long int)cb <= (size_t)~(size_t)0)
3031 #endif
3033 png_bytep b = voidcast(png_bytep, malloc((size_t)cb));
3035 if (b != NULL)
3037 rewind(f);
3039 if (fread(b, (size_t)cb, 1, f) == 1)
3041 fclose(f);
3042 image->input_memory_size = cb;
3043 image->input_memory = b;
3046 else
3048 free(b);
3049 return logclose(image, f, image->file_name,
3050 ": read failed: ");
3054 else
3055 return logclose(image, f, image->file_name,
3056 ": out of memory: ");
3059 else
3060 return logclose(image, f, image->file_name,
3061 ": file too big for this architecture: ");
3062 /* cb is the length of the file as a (long) and
3063 * this is greater than the maximum amount of
3064 * memory that can be requested from malloc.
3068 else if (cb == 0)
3069 return logclose(image, f, image->file_name,
3070 ": zero length: ");
3072 else
3073 return logclose(image, f, image->file_name,
3074 ": tell failed: ");
3077 else
3078 return logclose(image, f, image->file_name, ": seek failed: ");
3082 else
3083 return logerror(image, image->file_name, ": open failed: ",
3084 strerror(errno));
3087 return read_file(image, FORMAT_NO_CHANGE, NULL);
3090 #ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED
3091 static int
3092 write_one_file(Image *output, Image *image, int convert_to_8bit)
3094 if (image->opts & FAST_WRITE)
3095 image->image.flags |= PNG_IMAGE_FLAG_FAST;
3097 if (image->opts & USE_STDIO)
3099 #ifndef PNG_USE_MKSTEMP
3100 FILE *f = tmpfile();
3101 #else
3102 /* Experimental. Coverity says tmpfile() is insecure because it
3103 * generates predictable names.
3105 * It is possible to satisfy Coverity by using mkstemp(); however,
3106 * any platform supporting mkstemp() undoubtedly has a secure tmpfile()
3107 * implementation as well, and doesn't need the fix. Note that
3108 * the fix won't work on platforms that don't support mkstemp().
3110 * https://www.securecoding.cert.org/confluence/display/c/
3111 * FIO21-C.+Do+not+create+temporary+files+in+shared+directories
3112 * says that most historic implementations of tmpfile() provide
3113 * only a limited number of possible temporary file names
3114 * (usually 26) before file names are recycled. That article also
3115 * provides a secure solution that unfortunately depends upon mkstemp().
3117 char tmpfile[] = "pngstest-XXXXXX";
3118 int filedes;
3119 FILE *f;
3120 umask(0177);
3121 filedes = mkstemp(tmpfile);
3122 if (filedes < 0)
3123 f = NULL;
3124 else
3126 f = fdopen(filedes,"w+");
3127 /* Hide the filename immediately and ensure that the file does
3128 * not exist after the program ends
3130 (void) unlink(tmpfile);
3132 #endif
3134 if (f != NULL)
3136 if (png_image_write_to_stdio(&image->image, f, convert_to_8bit,
3137 image->buffer+16, (png_int_32)image->stride, image->colormap))
3139 if (fflush(f) == 0)
3141 rewind(f);
3142 initimage(output, image->opts, "tmpfile", image->stride_extra);
3143 output->input_file = f;
3144 if (!checkopaque(image))
3145 return 0;
3148 else
3149 return logclose(image, f, "tmpfile", ": flush: ");
3152 else
3154 fclose(f);
3155 return logerror(image, "tmpfile", ": write failed", "");
3159 else
3160 return logerror(image, "tmpfile", ": open: ", strerror(errno));
3163 else
3165 static int counter = 0;
3166 char name[32];
3168 sprintf(name, "%s%d.png", tmpf, ++counter);
3170 if (png_image_write_to_file(&image->image, name, convert_to_8bit,
3171 image->buffer+16, (png_int_32)image->stride, image->colormap))
3173 initimage(output, image->opts, output->tmpfile_name,
3174 image->stride_extra);
3175 /* Afterwards, or freeimage will delete it! */
3176 strcpy(output->tmpfile_name, name);
3178 if (!checkopaque(image))
3179 return 0;
3182 else
3183 return logerror(image, name, ": write failed", "");
3186 /* 'output' has an initialized temporary image, read this back in and compare
3187 * this against the original: there should be no change since the original
3188 * format was written unmodified unless 'convert_to_8bit' was specified.
3189 * However, if the original image was color-mapped, a simple read will zap
3190 * the linear, color and maybe alpha flags, this will cause spurious failures
3191 * under some circumstances.
3193 if (read_file(output, image->image.format | FORMAT_NO_CHANGE, NULL))
3195 png_uint_32 original_format = image->image.format;
3197 if (convert_to_8bit)
3198 original_format &= ~PNG_FORMAT_FLAG_LINEAR;
3200 if ((output->image.format & BASE_FORMATS) !=
3201 (original_format & BASE_FORMATS))
3202 return logerror(image, image->file_name, ": format changed on read: ",
3203 output->file_name);
3205 return compare_two_images(image, output, 0/*via linear*/, NULL);
3208 else
3209 return logerror(output, output->tmpfile_name,
3210 ": read of new file failed", "");
3212 #endif
3214 static int
3215 testimage(Image *image, png_uint_32 opts, format_list *pf)
3217 int result;
3218 Image copy;
3220 /* Copy the original data, stealing it from 'image' */
3221 checkopaque(image);
3222 copy = *image;
3224 copy.opts = opts;
3225 copy.buffer = NULL;
3226 copy.bufsize = 0;
3227 copy.allocsize = 0;
3229 image->input_file = NULL;
3230 image->input_memory = NULL;
3231 image->input_memory_size = 0;
3232 image->tmpfile_name[0] = 0;
3235 png_uint_32 counter;
3236 Image output;
3238 newimage(&output);
3240 result = 1;
3242 /* Use the low bit of 'counter' to indicate whether or not to do alpha
3243 * removal with a background color or by composting onto the image; this
3244 * step gets skipped if it isn't relevant
3246 for (counter=0; counter<2*FORMAT_COUNT; ++counter)
3247 if (format_isset(pf, counter >> 1))
3249 png_uint_32 format = counter >> 1;
3251 png_color background_color;
3252 png_colorp background = NULL;
3254 /* If there is a format change that removes the alpha channel then
3255 * the background is relevant. If the output is 8-bit color-mapped
3256 * then a background color *must* be provided, otherwise there are
3257 * two tests to do - one with a color, the other with NULL. The
3258 * NULL test happens second.
3260 if ((counter & 1) == 0)
3262 if ((format & PNG_FORMAT_FLAG_ALPHA) == 0 &&
3263 (image->image.format & PNG_FORMAT_FLAG_ALPHA) != 0)
3265 /* Alpha/transparency will be removed, the background is
3266 * relevant: make it a color the first time
3268 random_color(&background_color);
3269 background = &background_color;
3271 /* BUT if the output is to a color-mapped 8-bit format then
3272 * the background must always be a color, so increment 'counter'
3273 * to skip the NULL test.
3275 if ((format & PNG_FORMAT_FLAG_COLORMAP) != 0 &&
3276 (format & PNG_FORMAT_FLAG_LINEAR) == 0)
3277 ++counter;
3280 /* Otherwise an alpha channel is not being eliminated, just leave
3281 * background NULL and skip the (counter & 1) NULL test.
3283 else
3284 ++counter;
3286 /* else just use NULL for background */
3288 resetimage(&copy);
3289 copy.opts = opts; /* in case read_file needs to change it */
3291 result = read_file(&copy, format, background);
3292 if (!result)
3293 break;
3295 /* Make sure the file just read matches the original file. */
3296 result = compare_two_images(image, &copy, 0/*via linear*/, background);
3297 if (!result)
3298 break;
3300 # ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED
3301 /* Write the *copy* just made to a new file to make sure the write
3302 * side works ok. Check the conversion to sRGB if the copy is
3303 * linear.
3305 output.opts = opts;
3306 result = write_one_file(&output, &copy, 0/*convert to 8bit*/);
3307 if (!result)
3308 break;
3310 /* Validate against the original too; the background is needed here
3311 * as well so that compare_two_images knows what color was used.
3313 result = compare_two_images(image, &output, 0, background);
3314 if (!result)
3315 break;
3317 if ((format & PNG_FORMAT_FLAG_LINEAR) != 0 &&
3318 (format & PNG_FORMAT_FLAG_COLORMAP) == 0)
3320 /* 'output' is linear, convert to the corresponding sRGB format.
3322 output.opts = opts;
3323 result = write_one_file(&output, &copy, 1/*convert to 8bit*/);
3324 if (!result)
3325 break;
3327 /* This may involve a conversion via linear; in the ideal world
3328 * this would round-trip correctly, but libpng 1.5.7 is not the
3329 * ideal world so allow a drift (error_via_linear).
3331 * 'image' has an alpha channel but 'output' does not then there
3332 * will a strip-alpha-channel operation (because 'output' is
3333 * linear), handle this by composing on black when doing the
3334 * comparison.
3336 result = compare_two_images(image, &output, 1/*via_linear*/,
3337 background);
3338 if (!result)
3339 break;
3341 # endif /* PNG_SIMPLIFIED_WRITE_SUPPORTED */
3344 freeimage(&output);
3347 freeimage(&copy);
3349 return result;
3352 static int
3353 test_one_file(const char *file_name, format_list *formats, png_uint_32 opts,
3354 int stride_extra, int log_pass)
3356 int result;
3357 Image image;
3359 newimage(&image);
3360 initimage(&image, opts, file_name, stride_extra);
3361 result = read_one_file(&image);
3362 if (result)
3363 result = testimage(&image, opts, formats);
3364 freeimage(&image);
3366 /* Ensure that stderr is flushed into any log file */
3367 fflush(stderr);
3369 if (log_pass)
3371 if (result)
3372 printf("PASS:");
3374 else
3375 printf("FAIL:");
3377 # ifndef PNG_SIMPLIFIED_WRITE_SUPPORTED
3378 printf(" (no write)");
3379 # endif
3381 print_opts(opts);
3382 printf(" %s\n", file_name);
3383 /* stdout may not be line-buffered if it is piped to a file, so: */
3384 fflush(stdout);
3387 else if (!result)
3388 exit(1);
3390 return result;
3394 main(int argc, char **argv)
3396 png_uint_32 opts = FAST_WRITE;
3397 format_list formats;
3398 const char *touch = NULL;
3399 int log_pass = 0;
3400 int redundant = 0;
3401 int stride_extra = 0;
3402 int retval = 0;
3403 int c;
3405 init_sRGB_to_d();
3406 #if 0
3407 init_error_via_linear();
3408 #endif
3409 format_init(&formats);
3411 for (c=1; c<argc; ++c)
3413 const char *arg = argv[c];
3415 if (strcmp(arg, "--log") == 0)
3416 log_pass = 1;
3417 else if (strcmp(arg, "--fresh") == 0)
3419 memset(gpc_error, 0, sizeof gpc_error);
3420 memset(gpc_error_via_linear, 0, sizeof gpc_error_via_linear);
3422 else if (strcmp(arg, "--file") == 0)
3423 # ifdef PNG_STDIO_SUPPORTED
3424 opts |= READ_FILE;
3425 # else
3426 return 77; /* skipped: no support */
3427 # endif
3428 else if (strcmp(arg, "--memory") == 0)
3429 opts &= ~READ_FILE;
3430 else if (strcmp(arg, "--stdio") == 0)
3431 # ifdef PNG_STDIO_SUPPORTED
3432 opts |= USE_STDIO;
3433 # else
3434 return 77; /* skipped: no support */
3435 # endif
3436 else if (strcmp(arg, "--name") == 0)
3437 opts &= ~USE_STDIO;
3438 else if (strcmp(arg, "--verbose") == 0)
3439 opts |= VERBOSE;
3440 else if (strcmp(arg, "--quiet") == 0)
3441 opts &= ~VERBOSE;
3442 else if (strcmp(arg, "--preserve") == 0)
3443 opts |= KEEP_TMPFILES;
3444 else if (strcmp(arg, "--nopreserve") == 0)
3445 opts &= ~KEEP_TMPFILES;
3446 else if (strcmp(arg, "--keep-going") == 0)
3447 opts |= KEEP_GOING;
3448 else if (strcmp(arg, "--fast") == 0)
3449 opts |= FAST_WRITE;
3450 else if (strcmp(arg, "--slow") == 0)
3451 opts &= ~FAST_WRITE;
3452 else if (strcmp(arg, "--accumulate") == 0)
3453 opts |= ACCUMULATE;
3454 else if (strcmp(arg, "--redundant") == 0)
3455 redundant = 1;
3456 else if (strcmp(arg, "--stop") == 0)
3457 opts &= ~KEEP_GOING;
3458 else if (strcmp(arg, "--strict") == 0)
3459 opts |= STRICT;
3460 else if (strcmp(arg, "--sRGB-16bit") == 0)
3461 opts |= sRGB_16BIT;
3462 else if (strcmp(arg, "--linear-16bit") == 0)
3463 opts &= ~sRGB_16BIT;
3464 else if (strcmp(arg, "--tmpfile") == 0)
3466 if (c+1 < argc)
3468 if (strlen(argv[++c]) >= sizeof tmpf)
3470 fflush(stdout);
3471 fprintf(stderr, "%s: %s is too long for a temp file prefix\n",
3472 argv[0], argv[c]);
3473 exit(99);
3476 /* Safe: checked above */
3477 strncpy(tmpf, argv[c], sizeof (tmpf)-1);
3480 else
3482 fflush(stdout);
3483 fprintf(stderr, "%s: %s requires a temporary file prefix\n",
3484 argv[0], arg);
3485 exit(99);
3488 else if (strcmp(arg, "--touch") == 0)
3490 if (c+1 < argc)
3491 touch = argv[++c];
3493 else
3495 fflush(stdout);
3496 fprintf(stderr, "%s: %s requires a file name argument\n",
3497 argv[0], arg);
3498 exit(99);
3501 else if (arg[0] == '+')
3503 png_uint_32 format = formatof(arg+1);
3505 if (format > FORMAT_COUNT)
3506 exit(99);
3508 format_set(&formats, format);
3510 else if (arg[0] == '-' && arg[1] != 0 && (arg[1] != '0' || arg[2] != 0))
3512 fflush(stdout);
3513 fprintf(stderr, "%s: unknown option: %s\n", argv[0], arg);
3514 exit(99);
3516 else
3518 if (format_is_initial(&formats))
3519 format_default(&formats, redundant);
3521 if (arg[0] == '-')
3523 const int term = (arg[1] == '0' ? 0 : '\n');
3524 unsigned int ich = 0;
3526 /* Loop reading files, use a static buffer to simplify this and just
3527 * stop if the name gets to long.
3529 static char buffer[4096];
3533 int ch = getchar();
3535 /* Don't allow '\0' in file names, and terminate with '\n' or,
3536 * for -0, just '\0' (use -print0 to find to make this work!)
3538 if (ch == EOF || ch == term || ch == 0)
3540 buffer[ich] = 0;
3542 if (ich > 0 && !test_one_file(buffer, &formats, opts,
3543 stride_extra, log_pass))
3544 retval = 1;
3546 if (ch == EOF)
3547 break;
3549 ich = 0;
3550 --ich; /* so that the increment below sets it to 0 again */
3553 else
3554 buffer[ich] = (char)ch;
3555 } while (++ich < sizeof buffer);
3557 if (ich)
3559 buffer[32] = 0;
3560 buffer[4095] = 0;
3561 fprintf(stderr, "%s...%s: file name too long\n", buffer,
3562 buffer+(4096-32));
3563 exit(99);
3567 else if (!test_one_file(arg, &formats, opts, stride_extra, log_pass))
3568 retval = 1;
3572 if (opts & ACCUMULATE)
3574 unsigned int in;
3576 printf("/* contrib/libtests/pngstest-errors.h\n");
3577 printf(" *\n");
3578 printf(" * BUILT USING:" PNG_HEADER_VERSION_STRING);
3579 printf(" *\n");
3580 printf(" * This code is released under the libpng license.\n");
3581 printf(" * For conditions of distribution and use, see the disclaimer\n");
3582 printf(" * and license in png.h\n");
3583 printf(" *\n");
3584 printf(" * THIS IS A MACHINE GENERATED FILE: do not edit it directly!\n");
3585 printf(" * Instead run:\n");
3586 printf(" *\n");
3587 printf(" * pngstest --accumulate\n");
3588 printf(" *\n");
3589 printf(" * on as many PNG files as possible; at least PNGSuite and\n");
3590 printf(" * contrib/libtests/testpngs.\n");
3591 printf(" */\n");
3593 printf("static png_uint_16 gpc_error[16/*in*/][16/*out*/][4/*a*/] =\n");
3594 printf("{\n");
3595 for (in=0; in<16; ++in)
3597 unsigned int out;
3598 printf(" { /* input: %s */\n ", format_names[in]);
3599 for (out=0; out<16; ++out)
3601 unsigned int alpha;
3602 printf(" {");
3603 for (alpha=0; alpha<4; ++alpha)
3605 printf(" %d", gpc_error[in][out][alpha]);
3606 if (alpha < 3) putchar(',');
3608 printf(" }");
3609 if (out < 15)
3611 putchar(',');
3612 if (out % 4 == 3) printf("\n ");
3615 printf("\n }");
3617 if (in < 15)
3618 putchar(',');
3619 else
3620 putchar('\n');
3622 printf("};\n");
3624 printf("static png_uint_16 gpc_error_via_linear[16][4/*out*/][4] =\n");
3625 printf("{\n");
3626 for (in=0; in<16; ++in)
3628 unsigned int out;
3629 printf(" { /* input: %s */\n ", format_names[in]);
3630 for (out=0; out<4; ++out)
3632 unsigned int alpha;
3633 printf(" {");
3634 for (alpha=0; alpha<4; ++alpha)
3636 printf(" %d", gpc_error_via_linear[in][out][alpha]);
3637 if (alpha < 3) putchar(',');
3639 printf(" }");
3640 if (out < 3)
3641 putchar(',');
3643 printf("\n }");
3645 if (in < 15)
3646 putchar(',');
3647 else
3648 putchar('\n');
3650 printf("};\n");
3652 printf("static png_uint_16 gpc_error_to_colormap[8/*i*/][8/*o*/][4] =\n");
3653 printf("{\n");
3654 for (in=0; in<8; ++in)
3656 unsigned int out;
3657 printf(" { /* input: %s */\n ", format_names[in]);
3658 for (out=0; out<8; ++out)
3660 unsigned int alpha;
3661 printf(" {");
3662 for (alpha=0; alpha<4; ++alpha)
3664 printf(" %d", gpc_error_to_colormap[in][out][alpha]);
3665 if (alpha < 3) putchar(',');
3667 printf(" }");
3668 if (out < 7)
3670 putchar(',');
3671 if (out % 4 == 3) printf("\n ");
3674 printf("\n }");
3676 if (in < 7)
3677 putchar(',');
3678 else
3679 putchar('\n');
3681 printf("};\n");
3682 printf("/* END MACHINE GENERATED */\n");
3685 if (retval == 0 && touch != NULL)
3687 FILE *fsuccess = fopen(touch, "wt");
3689 if (fsuccess != NULL)
3691 int error = 0;
3692 fprintf(fsuccess, "PNG simple API tests succeeded\n");
3693 fflush(fsuccess);
3694 error = ferror(fsuccess);
3696 if (fclose(fsuccess) || error)
3698 fflush(stdout);
3699 fprintf(stderr, "%s: write failed\n", touch);
3700 exit(99);
3704 else
3706 fflush(stdout);
3707 fprintf(stderr, "%s: open failed\n", touch);
3708 exit(99);
3712 return retval;
3715 #else /* !PNG_SIMPLIFIED_READ_SUPPORTED */
3716 int main(void)
3718 fprintf(stderr, "pngstest: no read support in libpng, test skipped\n");
3719 /* So the test is skipped: */
3720 return 77;
3722 #endif /* PNG_SIMPLIFIED_READ_SUPPORTED */