1 | /*-
|
---|
2 | * pngstest.c
|
---|
3 | *
|
---|
4 | * Last changed in libpng 1.6.31 [July 27, 2017]
|
---|
5 | * Copyright (c) 2013-2017 John Cunningham Bowler
|
---|
6 | *
|
---|
7 | * This code is released under the libpng license.
|
---|
8 | * For conditions of distribution and use, see the disclaimer
|
---|
9 | * and license in png.h
|
---|
10 | *
|
---|
11 | * Test for the PNG 'simplified' APIs.
|
---|
12 | */
|
---|
13 | #define _ISOC90_SOURCE 1
|
---|
14 | #define MALLOC_CHECK_ 2/*glibc facility: turn on debugging*/
|
---|
15 |
|
---|
16 | #include <stddef.h>
|
---|
17 | #include <stdlib.h>
|
---|
18 | #include <string.h>
|
---|
19 | #include <stdio.h>
|
---|
20 | #include <errno.h>
|
---|
21 | #include <ctype.h>
|
---|
22 | #include <math.h>
|
---|
23 |
|
---|
24 | #if defined(HAVE_CONFIG_H) && !defined(PNG_NO_CONFIG_H)
|
---|
25 | # include <config.h>
|
---|
26 | #endif
|
---|
27 |
|
---|
28 | /* Define the following to use this test against your installed libpng, rather
|
---|
29 | * than the one being built here:
|
---|
30 | */
|
---|
31 | #ifdef PNG_FREESTANDING_TESTS
|
---|
32 | # include <png.h>
|
---|
33 | #else
|
---|
34 | # include "../../png.h"
|
---|
35 | #endif
|
---|
36 |
|
---|
37 | /* 1.6.1 added support for the configure test harness, which uses 77 to indicate
|
---|
38 | * a skipped test, in earlier versions we need to succeed on a skipped test, so:
|
---|
39 | */
|
---|
40 | #if PNG_LIBPNG_VER >= 10601 && defined(HAVE_CONFIG_H)
|
---|
41 | # define SKIP 77
|
---|
42 | #else
|
---|
43 | # define SKIP 0
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | #ifdef PNG_SIMPLIFIED_READ_SUPPORTED /* Else nothing can be done */
|
---|
47 | #include "../tools/sRGB.h"
|
---|
48 |
|
---|
49 | /* KNOWN ISSUES
|
---|
50 | *
|
---|
51 | * These defines switch on alternate algorithms for format conversions to match
|
---|
52 | * the current libpng implementation; they are set to allow pngstest to pass
|
---|
53 | * even though libpng is producing answers that are not as correct as they
|
---|
54 | * should be.
|
---|
55 | */
|
---|
56 | #define ALLOW_UNUSED_GPC 0
|
---|
57 | /* If true include unused static GPC functions and declare an external array
|
---|
58 | * of them to hide the fact that they are unused. This is for development
|
---|
59 | * use while testing the correct function to use to take into account libpng
|
---|
60 | * misbehavior, such as using a simple power law to correct sRGB to linear.
|
---|
61 | */
|
---|
62 |
|
---|
63 | /* The following is to support direct compilation of this file as C++ */
|
---|
64 | #ifdef __cplusplus
|
---|
65 | # define voidcast(type, value) static_cast<type>(value)
|
---|
66 | # define aligncastconst(type, value) \
|
---|
67 | static_cast<type>(static_cast<const void*>(value))
|
---|
68 | #else
|
---|
69 | # define voidcast(type, value) (value)
|
---|
70 | # define aligncastconst(type, value) ((const void*)(value))
|
---|
71 | #endif /* __cplusplus */
|
---|
72 |
|
---|
73 | /* During parallel runs of pngstest each temporary file needs a unique name,
|
---|
74 | * this is used to permit uniqueness using a command line argument which can be
|
---|
75 | * up to 22 characters long.
|
---|
76 | */
|
---|
77 | static char tmpf[23] = "TMP";
|
---|
78 |
|
---|
79 | /* Generate random bytes. This uses a boring repeatable algorithm and it
|
---|
80 | * is implemented here so that it gives the same set of numbers on every
|
---|
81 | * architecture. It's a linear congruential generator (Knuth or Sedgewick
|
---|
82 | * "Algorithms") but it comes from the 'feedback taps' table in Horowitz and
|
---|
83 | * Hill, "The Art of Electronics".
|
---|
84 | */
|
---|
85 | static void
|
---|
86 | make_random_bytes(png_uint_32* seed, void* pv, size_t size)
|
---|
87 | {
|
---|
88 | png_uint_32 u0 = seed[0], u1 = seed[1];
|
---|
89 | png_bytep bytes = voidcast(png_bytep, pv);
|
---|
90 |
|
---|
91 | /* There are thirty three bits, the next bit in the sequence is bit-33 XOR
|
---|
92 | * bit-20. The top 1 bit is in u1, the bottom 32 are in u0.
|
---|
93 | */
|
---|
94 | size_t i;
|
---|
95 | for (i=0; i<size; ++i)
|
---|
96 | {
|
---|
97 | /* First generate 8 new bits then shift them in at the end. */
|
---|
98 | png_uint_32 u = ((u0 >> (20-8)) ^ ((u1 << 7) | (u0 >> (32-7)))) & 0xff;
|
---|
99 | u1 <<= 8;
|
---|
100 | u1 |= u0 >> 24;
|
---|
101 | u0 <<= 8;
|
---|
102 | u0 |= u;
|
---|
103 | *bytes++ = (png_byte)u;
|
---|
104 | }
|
---|
105 |
|
---|
106 | seed[0] = u0;
|
---|
107 | seed[1] = u1;
|
---|
108 | }
|
---|
109 |
|
---|
110 | static png_uint_32 color_seed[2];
|
---|
111 |
|
---|
112 | static void
|
---|
113 | reseed(void)
|
---|
114 | {
|
---|
115 | color_seed[0] = 0x12345678U;
|
---|
116 | color_seed[1] = 0x9abcdefU;
|
---|
117 | }
|
---|
118 |
|
---|
119 | static void
|
---|
120 | random_color(png_colorp color)
|
---|
121 | {
|
---|
122 | make_random_bytes(color_seed, color, sizeof *color);
|
---|
123 | }
|
---|
124 |
|
---|
125 | /* Math support - neither Cygwin nor Visual Studio have C99 support and we need
|
---|
126 | * a predictable rounding function, so make one here:
|
---|
127 | */
|
---|
128 | static double
|
---|
129 | closestinteger(double x)
|
---|
130 | {
|
---|
131 | return floor(x + .5);
|
---|
132 | }
|
---|
133 |
|
---|
134 | /* Cast support: remove GCC whines. */
|
---|
135 | static png_byte
|
---|
136 | u8d(double d)
|
---|
137 | {
|
---|
138 | d = closestinteger(d);
|
---|
139 | return (png_byte)d;
|
---|
140 | }
|
---|
141 |
|
---|
142 | static png_uint_16
|
---|
143 | u16d(double d)
|
---|
144 | {
|
---|
145 | d = closestinteger(d);
|
---|
146 | return (png_uint_16)d;
|
---|
147 | }
|
---|
148 |
|
---|
149 | /* sRGB support: use exact calculations rounded to the nearest int, see the
|
---|
150 | * fesetround() call in main(). sRGB_to_d optimizes the 8 to 16-bit conversion.
|
---|
151 | */
|
---|
152 | static double sRGB_to_d[256];
|
---|
153 | static double g22_to_d[256];
|
---|
154 |
|
---|
155 | static void
|
---|
156 | init_sRGB_to_d(void)
|
---|
157 | {
|
---|
158 | int i;
|
---|
159 |
|
---|
160 | sRGB_to_d[0] = 0;
|
---|
161 | for (i=1; i<255; ++i)
|
---|
162 | sRGB_to_d[i] = linear_from_sRGB(i/255.);
|
---|
163 | sRGB_to_d[255] = 1;
|
---|
164 |
|
---|
165 | g22_to_d[0] = 0;
|
---|
166 | for (i=1; i<255; ++i)
|
---|
167 | g22_to_d[i] = pow(i/255., 1/.45455);
|
---|
168 | g22_to_d[255] = 1;
|
---|
169 | }
|
---|
170 |
|
---|
171 | static png_byte
|
---|
172 | sRGB(double linear /*range 0.0 .. 1.0*/)
|
---|
173 | {
|
---|
174 | return u8d(255 * sRGB_from_linear(linear));
|
---|
175 | }
|
---|
176 |
|
---|
177 | static png_byte
|
---|
178 | isRGB(int fixed_linear)
|
---|
179 | {
|
---|
180 | return sRGB(fixed_linear / 65535.);
|
---|
181 | }
|
---|
182 |
|
---|
183 | #if 0 /* not used */
|
---|
184 | static png_byte
|
---|
185 | unpremultiply(int component, int alpha)
|
---|
186 | {
|
---|
187 | if (alpha <= component)
|
---|
188 | return 255; /* Arbitrary, but consistent with the libpng code */
|
---|
189 |
|
---|
190 | else if (alpha >= 65535)
|
---|
191 | return isRGB(component);
|
---|
192 |
|
---|
193 | else
|
---|
194 | return sRGB((double)component / alpha);
|
---|
195 | }
|
---|
196 | #endif
|
---|
197 |
|
---|
198 | static png_uint_16
|
---|
199 | ilinear(int fixed_srgb)
|
---|
200 | {
|
---|
201 | return u16d(65535 * sRGB_to_d[fixed_srgb]);
|
---|
202 | }
|
---|
203 |
|
---|
204 | static png_uint_16
|
---|
205 | ilineara(int fixed_srgb, int alpha)
|
---|
206 | {
|
---|
207 | return u16d((257 * alpha) * sRGB_to_d[fixed_srgb]);
|
---|
208 | }
|
---|
209 |
|
---|
210 | static png_uint_16
|
---|
211 | ilinear_g22(int fixed_srgb)
|
---|
212 | {
|
---|
213 | return u16d(65535 * g22_to_d[fixed_srgb]);
|
---|
214 | }
|
---|
215 |
|
---|
216 | #if ALLOW_UNUSED_GPC
|
---|
217 | static png_uint_16
|
---|
218 | ilineara_g22(int fixed_srgb, int alpha)
|
---|
219 | {
|
---|
220 | return u16d((257 * alpha) * g22_to_d[fixed_srgb]);
|
---|
221 | }
|
---|
222 | #endif
|
---|
223 |
|
---|
224 | static double
|
---|
225 | YfromRGBint(int ir, int ig, int ib)
|
---|
226 | {
|
---|
227 | double r = ir;
|
---|
228 | double g = ig;
|
---|
229 | double b = ib;
|
---|
230 | return YfromRGB(r, g, b);
|
---|
231 | }
|
---|
232 |
|
---|
233 | #if 0 /* unused */
|
---|
234 | /* The error that results from using a 2.2 power law in place of the correct
|
---|
235 | * sRGB transform, given an 8-bit value which might be either sRGB or power-law.
|
---|
236 | */
|
---|
237 | static int
|
---|
238 | power_law_error8(int value)
|
---|
239 | {
|
---|
240 | if (value > 0 && value < 255)
|
---|
241 | {
|
---|
242 | double vd = value / 255.;
|
---|
243 | double e = fabs(
|
---|
244 | pow(sRGB_to_d[value], 1/2.2) - sRGB_from_linear(pow(vd, 2.2)));
|
---|
245 |
|
---|
246 | /* Always allow an extra 1 here for rounding errors */
|
---|
247 | e = 1+floor(255 * e);
|
---|
248 | return (int)e;
|
---|
249 | }
|
---|
250 |
|
---|
251 | return 0;
|
---|
252 | }
|
---|
253 |
|
---|
254 | static int error_in_sRGB_roundtrip = 56; /* by experiment */
|
---|
255 | static int
|
---|
256 | power_law_error16(int value)
|
---|
257 | {
|
---|
258 | if (value > 0 && value < 65535)
|
---|
259 | {
|
---|
260 | /* Round trip the value through an 8-bit representation but using
|
---|
261 | * non-matching to/from conversions.
|
---|
262 | */
|
---|
263 | double vd = value / 65535.;
|
---|
264 | double e = fabs(
|
---|
265 | pow(sRGB_from_linear(vd), 2.2) - linear_from_sRGB(pow(vd, 1/2.2)));
|
---|
266 |
|
---|
267 | /* Always allow an extra 1 here for rounding errors */
|
---|
268 | e = error_in_sRGB_roundtrip+floor(65535 * e);
|
---|
269 | return (int)e;
|
---|
270 | }
|
---|
271 |
|
---|
272 | return 0;
|
---|
273 | }
|
---|
274 |
|
---|
275 | static int
|
---|
276 | compare_8bit(int v1, int v2, int error_limit, int multiple_algorithms)
|
---|
277 | {
|
---|
278 | int e = abs(v1-v2);
|
---|
279 | int ev1, ev2;
|
---|
280 |
|
---|
281 | if (e <= error_limit)
|
---|
282 | return 1;
|
---|
283 |
|
---|
284 | if (!multiple_algorithms)
|
---|
285 | return 0;
|
---|
286 |
|
---|
287 | ev1 = power_law_error8(v1);
|
---|
288 | if (e <= ev1)
|
---|
289 | return 1;
|
---|
290 |
|
---|
291 | ev2 = power_law_error8(v2);
|
---|
292 | if (e <= ev2)
|
---|
293 | return 1;
|
---|
294 |
|
---|
295 | return 0;
|
---|
296 | }
|
---|
297 |
|
---|
298 | static int
|
---|
299 | compare_16bit(int v1, int v2, int error_limit, int multiple_algorithms)
|
---|
300 | {
|
---|
301 | int e = abs(v1-v2);
|
---|
302 | int ev1, ev2;
|
---|
303 |
|
---|
304 | if (e <= error_limit)
|
---|
305 | return 1;
|
---|
306 |
|
---|
307 | /* "multiple_algorithms" in this case means that a color-map has been
|
---|
308 | * involved somewhere, so we can deduce that the values were forced to 8-bit
|
---|
309 | * (like the via_linear case for 8-bit.)
|
---|
310 | */
|
---|
311 | if (!multiple_algorithms)
|
---|
312 | return 0;
|
---|
313 |
|
---|
314 | ev1 = power_law_error16(v1);
|
---|
315 | if (e <= ev1)
|
---|
316 | return 1;
|
---|
317 |
|
---|
318 | ev2 = power_law_error16(v2);
|
---|
319 | if (e <= ev2)
|
---|
320 | return 1;
|
---|
321 |
|
---|
322 | return 0;
|
---|
323 | }
|
---|
324 | #endif /* unused */
|
---|
325 |
|
---|
326 | #define USE_FILE 1 /* else memory */
|
---|
327 | #define USE_STDIO 2 /* else use file name */
|
---|
328 | #define STRICT 4 /* fail on warnings too */
|
---|
329 | #define VERBOSE 8
|
---|
330 | #define KEEP_TMPFILES 16 /* else delete temporary files */
|
---|
331 | #define KEEP_GOING 32
|
---|
332 | #define ACCUMULATE 64
|
---|
333 | #define FAST_WRITE 128
|
---|
334 | #define sRGB_16BIT 256
|
---|
335 | #define NO_RESEED 512 /* do not reseed on each new file */
|
---|
336 | #define GBG_ERROR 1024 /* do not ignore the gamma+background_rgb_to_gray
|
---|
337 | * libpng warning. */
|
---|
338 |
|
---|
339 | static void
|
---|
340 | print_opts(png_uint_32 opts)
|
---|
341 | {
|
---|
342 | if (opts & USE_FILE)
|
---|
343 | printf(" --file");
|
---|
344 | if (opts & USE_STDIO)
|
---|
345 | printf(" --stdio");
|
---|
346 | if (!(opts & STRICT))
|
---|
347 | printf(" --nostrict");
|
---|
348 | if (opts & VERBOSE)
|
---|
349 | printf(" --verbose");
|
---|
350 | if (opts & KEEP_TMPFILES)
|
---|
351 | printf(" --preserve");
|
---|
352 | if (opts & KEEP_GOING)
|
---|
353 | printf(" --keep-going");
|
---|
354 | if (opts & ACCUMULATE)
|
---|
355 | printf(" --accumulate");
|
---|
356 | if (!(opts & FAST_WRITE)) /* --fast is currently the default */
|
---|
357 | printf(" --slow");
|
---|
358 | if (opts & sRGB_16BIT)
|
---|
359 | printf(" --sRGB-16bit");
|
---|
360 | if (opts & NO_RESEED)
|
---|
361 | printf(" --noreseed");
|
---|
362 | #if PNG_LIBPNG_VER < 10700 /* else on by default */
|
---|
363 | if (opts & GBG_ERROR)
|
---|
364 | printf(" --fault-gbg-warning");
|
---|
365 | #endif
|
---|
366 | }
|
---|
367 |
|
---|
368 | #define FORMAT_NO_CHANGE 0x80000000 /* additional flag */
|
---|
369 |
|
---|
370 | /* A name table for all the formats - defines the format of the '+' arguments to
|
---|
371 | * pngstest.
|
---|
372 | */
|
---|
373 | #define FORMAT_COUNT 64
|
---|
374 | #define FORMAT_MASK 0x3f
|
---|
375 | static const char * const format_names[FORMAT_COUNT] =
|
---|
376 | {
|
---|
377 | "sRGB-gray",
|
---|
378 | "sRGB-gray+alpha",
|
---|
379 | "sRGB-rgb",
|
---|
380 | "sRGB-rgb+alpha",
|
---|
381 | "linear-gray",
|
---|
382 | "linear-gray+alpha",
|
---|
383 | "linear-rgb",
|
---|
384 | "linear-rgb+alpha",
|
---|
385 |
|
---|
386 | "color-mapped-sRGB-gray",
|
---|
387 | "color-mapped-sRGB-gray+alpha",
|
---|
388 | "color-mapped-sRGB-rgb",
|
---|
389 | "color-mapped-sRGB-rgb+alpha",
|
---|
390 | "color-mapped-linear-gray",
|
---|
391 | "color-mapped-linear-gray+alpha",
|
---|
392 | "color-mapped-linear-rgb",
|
---|
393 | "color-mapped-linear-rgb+alpha",
|
---|
394 |
|
---|
395 | "sRGB-gray",
|
---|
396 | "sRGB-gray+alpha",
|
---|
397 | "sRGB-bgr",
|
---|
398 | "sRGB-bgr+alpha",
|
---|
399 | "linear-gray",
|
---|
400 | "linear-gray+alpha",
|
---|
401 | "linear-bgr",
|
---|
402 | "linear-bgr+alpha",
|
---|
403 |
|
---|
404 | "color-mapped-sRGB-gray",
|
---|
405 | "color-mapped-sRGB-gray+alpha",
|
---|
406 | "color-mapped-sRGB-bgr",
|
---|
407 | "color-mapped-sRGB-bgr+alpha",
|
---|
408 | "color-mapped-linear-gray",
|
---|
409 | "color-mapped-linear-gray+alpha",
|
---|
410 | "color-mapped-linear-bgr",
|
---|
411 | "color-mapped-linear-bgr+alpha",
|
---|
412 |
|
---|
413 | "sRGB-gray",
|
---|
414 | "alpha+sRGB-gray",
|
---|
415 | "sRGB-rgb",
|
---|
416 | "alpha+sRGB-rgb",
|
---|
417 | "linear-gray",
|
---|
418 | "alpha+linear-gray",
|
---|
419 | "linear-rgb",
|
---|
420 | "alpha+linear-rgb",
|
---|
421 |
|
---|
422 | "color-mapped-sRGB-gray",
|
---|
423 | "color-mapped-alpha+sRGB-gray",
|
---|
424 | "color-mapped-sRGB-rgb",
|
---|
425 | "color-mapped-alpha+sRGB-rgb",
|
---|
426 | "color-mapped-linear-gray",
|
---|
427 | "color-mapped-alpha+linear-gray",
|
---|
428 | "color-mapped-linear-rgb",
|
---|
429 | "color-mapped-alpha+linear-rgb",
|
---|
430 |
|
---|
431 | "sRGB-gray",
|
---|
432 | "alpha+sRGB-gray",
|
---|
433 | "sRGB-bgr",
|
---|
434 | "alpha+sRGB-bgr",
|
---|
435 | "linear-gray",
|
---|
436 | "alpha+linear-gray",
|
---|
437 | "linear-bgr",
|
---|
438 | "alpha+linear-bgr",
|
---|
439 |
|
---|
440 | "color-mapped-sRGB-gray",
|
---|
441 | "color-mapped-alpha+sRGB-gray",
|
---|
442 | "color-mapped-sRGB-bgr",
|
---|
443 | "color-mapped-alpha+sRGB-bgr",
|
---|
444 | "color-mapped-linear-gray",
|
---|
445 | "color-mapped-alpha+linear-gray",
|
---|
446 | "color-mapped-linear-bgr",
|
---|
447 | "color-mapped-alpha+linear-bgr",
|
---|
448 | };
|
---|
449 |
|
---|
450 | /* Decode an argument to a format number. */
|
---|
451 | static png_uint_32
|
---|
452 | formatof(const char *arg)
|
---|
453 | {
|
---|
454 | char *ep;
|
---|
455 | unsigned long format = strtoul(arg, &ep, 0);
|
---|
456 |
|
---|
457 | if (ep > arg && *ep == 0 && format < FORMAT_COUNT)
|
---|
458 | return (png_uint_32)format;
|
---|
459 |
|
---|
460 | else for (format=0; format < FORMAT_COUNT; ++format)
|
---|
461 | {
|
---|
462 | if (strcmp(format_names[format], arg) == 0)
|
---|
463 | return (png_uint_32)format;
|
---|
464 | }
|
---|
465 |
|
---|
466 | fprintf(stderr, "pngstest: format name '%s' invalid\n", arg);
|
---|
467 | return FORMAT_COUNT;
|
---|
468 | }
|
---|
469 |
|
---|
470 | /* Bitset/test functions for formats */
|
---|
471 | #define FORMAT_SET_COUNT (FORMAT_COUNT / 32)
|
---|
472 | typedef struct
|
---|
473 | {
|
---|
474 | png_uint_32 bits[FORMAT_SET_COUNT];
|
---|
475 | }
|
---|
476 | format_list;
|
---|
477 |
|
---|
478 | static void format_init(format_list *pf)
|
---|
479 | {
|
---|
480 | int i;
|
---|
481 | for (i=0; i<FORMAT_SET_COUNT; ++i)
|
---|
482 | pf->bits[i] = 0; /* All off */
|
---|
483 | }
|
---|
484 |
|
---|
485 | #if 0 /* currently unused */
|
---|
486 | static void format_clear(format_list *pf)
|
---|
487 | {
|
---|
488 | int i;
|
---|
489 | for (i=0; i<FORMAT_SET_COUNT; ++i)
|
---|
490 | pf->bits[i] = 0;
|
---|
491 | }
|
---|
492 | #endif
|
---|
493 |
|
---|
494 | static int format_is_initial(format_list *pf)
|
---|
495 | {
|
---|
496 | int i;
|
---|
497 | for (i=0; i<FORMAT_SET_COUNT; ++i)
|
---|
498 | if (pf->bits[i] != 0)
|
---|
499 | return 0;
|
---|
500 |
|
---|
501 | return 1;
|
---|
502 | }
|
---|
503 |
|
---|
504 | static int format_set(format_list *pf, png_uint_32 format)
|
---|
505 | {
|
---|
506 | if (format < FORMAT_COUNT)
|
---|
507 | return pf->bits[format >> 5] |= ((png_uint_32)1) << (format & 31);
|
---|
508 |
|
---|
509 | return 0;
|
---|
510 | }
|
---|
511 |
|
---|
512 | #if 0 /* currently unused */
|
---|
513 | static int format_unset(format_list *pf, png_uint_32 format)
|
---|
514 | {
|
---|
515 | if (format < FORMAT_COUNT)
|
---|
516 | return pf->bits[format >> 5] &= ~((png_uint_32)1) << (format & 31);
|
---|
517 |
|
---|
518 | return 0;
|
---|
519 | }
|
---|
520 | #endif
|
---|
521 |
|
---|
522 | static int format_isset(format_list *pf, png_uint_32 format)
|
---|
523 | {
|
---|
524 | return format < FORMAT_COUNT &&
|
---|
525 | (pf->bits[format >> 5] & (((png_uint_32)1) << (format & 31))) != 0;
|
---|
526 | }
|
---|
527 |
|
---|
528 | static void format_default(format_list *pf, int redundant)
|
---|
529 | {
|
---|
530 | if (redundant)
|
---|
531 | {
|
---|
532 | int i;
|
---|
533 |
|
---|
534 | /* set everything, including flags that are pointless */
|
---|
535 | for (i=0; i<FORMAT_SET_COUNT; ++i)
|
---|
536 | pf->bits[i] = ~(png_uint_32)0;
|
---|
537 | }
|
---|
538 |
|
---|
539 | else
|
---|
540 | {
|
---|
541 | png_uint_32 f;
|
---|
542 |
|
---|
543 | for (f=0; f<FORMAT_COUNT; ++f)
|
---|
544 | {
|
---|
545 | /* Eliminate redundant and unsupported settings. */
|
---|
546 | # ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
547 | /* BGR is meaningless if no color: */
|
---|
548 | if ((f & PNG_FORMAT_FLAG_COLOR) == 0 &&
|
---|
549 | (f & PNG_FORMAT_FLAG_BGR) != 0)
|
---|
550 | # else
|
---|
551 | if ((f & 0x10U/*HACK: fixed value*/) != 0)
|
---|
552 | # endif
|
---|
553 | continue;
|
---|
554 |
|
---|
555 | /* AFIRST is meaningless if no alpha: */
|
---|
556 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
557 | if ((f & PNG_FORMAT_FLAG_ALPHA) == 0 &&
|
---|
558 | (f & PNG_FORMAT_FLAG_AFIRST) != 0)
|
---|
559 | # else
|
---|
560 | if ((f & 0x20U/*HACK: fixed value*/) != 0)
|
---|
561 | # endif
|
---|
562 | continue;
|
---|
563 |
|
---|
564 | format_set(pf, f);
|
---|
565 | }
|
---|
566 | }
|
---|
567 | }
|
---|
568 |
|
---|
569 | /* THE Image STRUCTURE */
|
---|
570 | /* The super-class of a png_image, contains the decoded image plus the input
|
---|
571 | * data necessary to re-read the file with a different format.
|
---|
572 | */
|
---|
573 | typedef struct
|
---|
574 | {
|
---|
575 | png_image image;
|
---|
576 | png_uint_32 opts;
|
---|
577 | const char *file_name;
|
---|
578 | int stride_extra;
|
---|
579 | FILE *input_file;
|
---|
580 | png_voidp input_memory;
|
---|
581 | size_t input_memory_size;
|
---|
582 | png_bytep buffer;
|
---|
583 | ptrdiff_t stride;
|
---|
584 | size_t bufsize;
|
---|
585 | size_t allocsize;
|
---|
586 | char tmpfile_name[32];
|
---|
587 | png_uint_16 colormap[256*4];
|
---|
588 | }
|
---|
589 | Image;
|
---|
590 |
|
---|
591 | /* Initializer: also sets the permitted error limit for 16-bit operations. */
|
---|
592 | static void
|
---|
593 | newimage(Image *image)
|
---|
594 | {
|
---|
595 | memset(image, 0, sizeof *image);
|
---|
596 | }
|
---|
597 |
|
---|
598 | /* Reset the image to be read again - only needs to rewind the FILE* at present.
|
---|
599 | */
|
---|
600 | static void
|
---|
601 | resetimage(Image *image)
|
---|
602 | {
|
---|
603 | if (image->input_file != NULL)
|
---|
604 | rewind(image->input_file);
|
---|
605 | }
|
---|
606 |
|
---|
607 | /* Free the image buffer; the buffer is re-used on a re-read, this is just for
|
---|
608 | * cleanup.
|
---|
609 | */
|
---|
610 | static void
|
---|
611 | freebuffer(Image *image)
|
---|
612 | {
|
---|
613 | if (image->buffer) free(image->buffer);
|
---|
614 | image->buffer = NULL;
|
---|
615 | image->bufsize = 0;
|
---|
616 | image->allocsize = 0;
|
---|
617 | }
|
---|
618 |
|
---|
619 | /* Delete function; cleans out all the allocated data and the temporary file in
|
---|
620 | * the image.
|
---|
621 | */
|
---|
622 | static void
|
---|
623 | freeimage(Image *image)
|
---|
624 | {
|
---|
625 | freebuffer(image);
|
---|
626 | png_image_free(&image->image);
|
---|
627 |
|
---|
628 | if (image->input_file != NULL)
|
---|
629 | {
|
---|
630 | fclose(image->input_file);
|
---|
631 | image->input_file = NULL;
|
---|
632 | }
|
---|
633 |
|
---|
634 | if (image->input_memory != NULL)
|
---|
635 | {
|
---|
636 | free(image->input_memory);
|
---|
637 | image->input_memory = NULL;
|
---|
638 | image->input_memory_size = 0;
|
---|
639 | }
|
---|
640 |
|
---|
641 | if (image->tmpfile_name[0] != 0 && (image->opts & KEEP_TMPFILES) == 0)
|
---|
642 | {
|
---|
643 | (void)remove(image->tmpfile_name);
|
---|
644 | image->tmpfile_name[0] = 0;
|
---|
645 | }
|
---|
646 | }
|
---|
647 |
|
---|
648 | /* This is actually a re-initializer; allows an image structure to be re-used by
|
---|
649 | * freeing everything that relates to an old image.
|
---|
650 | */
|
---|
651 | static void initimage(Image *image, png_uint_32 opts, const char *file_name,
|
---|
652 | int stride_extra)
|
---|
653 | {
|
---|
654 | freeimage(image);
|
---|
655 | memset(&image->image, 0, sizeof image->image);
|
---|
656 | image->opts = opts;
|
---|
657 | image->file_name = file_name;
|
---|
658 | image->stride_extra = stride_extra;
|
---|
659 | }
|
---|
660 |
|
---|
661 | /* Make sure the image buffer is big enough; allows re-use of the buffer if the
|
---|
662 | * image is re-read.
|
---|
663 | */
|
---|
664 | #define BUFFER_INIT8 73
|
---|
665 | static void
|
---|
666 | allocbuffer(Image *image)
|
---|
667 | {
|
---|
668 | size_t size = PNG_IMAGE_BUFFER_SIZE(image->image, image->stride);
|
---|
669 |
|
---|
670 | if (size+32 > image->bufsize)
|
---|
671 | {
|
---|
672 | freebuffer(image);
|
---|
673 | image->buffer = voidcast(png_bytep, malloc(size+32));
|
---|
674 | if (image->buffer == NULL)
|
---|
675 | {
|
---|
676 | fflush(stdout);
|
---|
677 | fprintf(stderr,
|
---|
678 | "simpletest: out of memory allocating %lu(+32) byte buffer\n",
|
---|
679 | (unsigned long)size);
|
---|
680 | exit(1);
|
---|
681 | }
|
---|
682 | image->bufsize = size+32;
|
---|
683 | }
|
---|
684 |
|
---|
685 | memset(image->buffer, 95, image->bufsize);
|
---|
686 | memset(image->buffer+16, BUFFER_INIT8, size);
|
---|
687 | image->allocsize = size;
|
---|
688 | }
|
---|
689 |
|
---|
690 | /* Make sure 16 bytes match the given byte. */
|
---|
691 | static int
|
---|
692 | check16(png_const_bytep bp, int b)
|
---|
693 | {
|
---|
694 | int i = 16;
|
---|
695 |
|
---|
696 | do
|
---|
697 | if (*bp != b) return 1;
|
---|
698 | while (--i);
|
---|
699 |
|
---|
700 | return 0;
|
---|
701 | }
|
---|
702 |
|
---|
703 | /* Check for overwrite in the image buffer. */
|
---|
704 | static void
|
---|
705 | checkbuffer(Image *image, const char *arg)
|
---|
706 | {
|
---|
707 | if (check16(image->buffer, 95))
|
---|
708 | {
|
---|
709 | fflush(stdout);
|
---|
710 | fprintf(stderr, "%s: overwrite at start of image buffer\n", arg);
|
---|
711 | exit(1);
|
---|
712 | }
|
---|
713 |
|
---|
714 | if (check16(image->buffer+16+image->allocsize, 95))
|
---|
715 | {
|
---|
716 | fflush(stdout);
|
---|
717 | fprintf(stderr, "%s: overwrite at end of image buffer\n", arg);
|
---|
718 | exit(1);
|
---|
719 | }
|
---|
720 | }
|
---|
721 |
|
---|
722 | /* ERROR HANDLING */
|
---|
723 | /* Log a terminal error, also frees the libpng part of the image if necessary.
|
---|
724 | */
|
---|
725 | static int
|
---|
726 | logerror(Image *image, const char *a1, const char *a2, const char *a3)
|
---|
727 | {
|
---|
728 | fflush(stdout);
|
---|
729 | if (image->image.warning_or_error)
|
---|
730 | fprintf(stderr, "%s%s%s: %s\n", a1, a2, a3, image->image.message);
|
---|
731 |
|
---|
732 | else
|
---|
733 | fprintf(stderr, "%s%s%s\n", a1, a2, a3);
|
---|
734 |
|
---|
735 | if (image->image.opaque != NULL)
|
---|
736 | {
|
---|
737 | fprintf(stderr, "%s: image opaque pointer non-NULL on error\n",
|
---|
738 | image->file_name);
|
---|
739 | png_image_free(&image->image);
|
---|
740 | }
|
---|
741 |
|
---|
742 | return 0;
|
---|
743 | }
|
---|
744 |
|
---|
745 | /* Log an error and close a file (just a utility to do both things in one
|
---|
746 | * function call.)
|
---|
747 | */
|
---|
748 | static int
|
---|
749 | logclose(Image *image, FILE *f, const char *name, const char *operation)
|
---|
750 | {
|
---|
751 | int e = errno;
|
---|
752 |
|
---|
753 | fclose(f);
|
---|
754 | return logerror(image, name, operation, strerror(e));
|
---|
755 | }
|
---|
756 |
|
---|
757 | /* Make sure the png_image has been freed - validates that libpng is doing what
|
---|
758 | * the spec says and freeing the image.
|
---|
759 | */
|
---|
760 | static int
|
---|
761 | checkopaque(Image *image)
|
---|
762 | {
|
---|
763 | if (image->image.opaque != NULL)
|
---|
764 | {
|
---|
765 | png_image_free(&image->image);
|
---|
766 | return logerror(image, image->file_name, ": opaque not NULL", "");
|
---|
767 | }
|
---|
768 |
|
---|
769 | /* Separate out the gamma+background_rgb_to_gray warning because it may
|
---|
770 | * produce opaque component errors:
|
---|
771 | */
|
---|
772 | else if (image->image.warning_or_error != 0 &&
|
---|
773 | (strcmp(image->image.message,
|
---|
774 | "libpng does not support gamma+background+rgb_to_gray") == 0 ?
|
---|
775 | (image->opts & GBG_ERROR) != 0 : (image->opts & STRICT) != 0))
|
---|
776 | return logerror(image, image->file_name, (image->opts & GBG_ERROR) != 0 ?
|
---|
777 | " --fault-gbg-warning" : " --strict", "");
|
---|
778 |
|
---|
779 | else
|
---|
780 | return 1;
|
---|
781 | }
|
---|
782 |
|
---|
783 | /* IMAGE COMPARISON/CHECKING */
|
---|
784 | /* Compare the pixels of two images, which should be the same but aren't. The
|
---|
785 | * images must have been checked for a size match.
|
---|
786 | */
|
---|
787 | typedef struct
|
---|
788 | {
|
---|
789 | /* The components, for grayscale images the gray value is in 'g' and if alpha
|
---|
790 | * is not present 'a' is set to 255 or 65535 according to format.
|
---|
791 | */
|
---|
792 | int r, g, b, a;
|
---|
793 | } Pixel;
|
---|
794 |
|
---|
795 | typedef struct
|
---|
796 | {
|
---|
797 | /* The background as the original sRGB 8-bit value converted to the final
|
---|
798 | * integer format and as a double precision linear value in the range 0..1
|
---|
799 | * for with partially transparent pixels.
|
---|
800 | */
|
---|
801 | int ir, ig, ib;
|
---|
802 | double dr, dg, db; /* linear r,g,b scaled to 0..1 */
|
---|
803 | } Background;
|
---|
804 |
|
---|
805 | /* Basic image formats; control the data but not the layout thereof. */
|
---|
806 | #define BASE_FORMATS\
|
---|
807 | (PNG_FORMAT_FLAG_ALPHA|PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_LINEAR)
|
---|
808 |
|
---|
809 | /* Read a Pixel from a buffer. The code below stores the correct routine for
|
---|
810 | * the format in a function pointer, these are the routines:
|
---|
811 | */
|
---|
812 | static void
|
---|
813 | gp_g8(Pixel *p, png_const_voidp pb)
|
---|
814 | {
|
---|
815 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
816 |
|
---|
817 | p->r = p->g = p->b = pp[0];
|
---|
818 | p->a = 255;
|
---|
819 | }
|
---|
820 |
|
---|
821 | static void
|
---|
822 | gp_ga8(Pixel *p, png_const_voidp pb)
|
---|
823 | {
|
---|
824 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
825 |
|
---|
826 | p->r = p->g = p->b = pp[0];
|
---|
827 | p->a = pp[1];
|
---|
828 | }
|
---|
829 |
|
---|
830 | #ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
831 | static void
|
---|
832 | gp_ag8(Pixel *p, png_const_voidp pb)
|
---|
833 | {
|
---|
834 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
835 |
|
---|
836 | p->r = p->g = p->b = pp[1];
|
---|
837 | p->a = pp[0];
|
---|
838 | }
|
---|
839 | #endif
|
---|
840 |
|
---|
841 | static void
|
---|
842 | gp_rgb8(Pixel *p, png_const_voidp pb)
|
---|
843 | {
|
---|
844 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
845 |
|
---|
846 | p->r = pp[0];
|
---|
847 | p->g = pp[1];
|
---|
848 | p->b = pp[2];
|
---|
849 | p->a = 255;
|
---|
850 | }
|
---|
851 |
|
---|
852 | #ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
853 | static void
|
---|
854 | gp_bgr8(Pixel *p, png_const_voidp pb)
|
---|
855 | {
|
---|
856 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
857 |
|
---|
858 | p->r = pp[2];
|
---|
859 | p->g = pp[1];
|
---|
860 | p->b = pp[0];
|
---|
861 | p->a = 255;
|
---|
862 | }
|
---|
863 | #endif
|
---|
864 |
|
---|
865 | static void
|
---|
866 | gp_rgba8(Pixel *p, png_const_voidp pb)
|
---|
867 | {
|
---|
868 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
869 |
|
---|
870 | p->r = pp[0];
|
---|
871 | p->g = pp[1];
|
---|
872 | p->b = pp[2];
|
---|
873 | p->a = pp[3];
|
---|
874 | }
|
---|
875 |
|
---|
876 | #ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
877 | static void
|
---|
878 | gp_bgra8(Pixel *p, png_const_voidp pb)
|
---|
879 | {
|
---|
880 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
881 |
|
---|
882 | p->r = pp[2];
|
---|
883 | p->g = pp[1];
|
---|
884 | p->b = pp[0];
|
---|
885 | p->a = pp[3];
|
---|
886 | }
|
---|
887 | #endif
|
---|
888 |
|
---|
889 | #ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
890 | static void
|
---|
891 | gp_argb8(Pixel *p, png_const_voidp pb)
|
---|
892 | {
|
---|
893 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
894 |
|
---|
895 | p->r = pp[1];
|
---|
896 | p->g = pp[2];
|
---|
897 | p->b = pp[3];
|
---|
898 | p->a = pp[0];
|
---|
899 | }
|
---|
900 | #endif
|
---|
901 |
|
---|
902 | #if defined(PNG_FORMAT_AFIRST_SUPPORTED) && defined(PNG_FORMAT_BGR_SUPPORTED)
|
---|
903 | static void
|
---|
904 | gp_abgr8(Pixel *p, png_const_voidp pb)
|
---|
905 | {
|
---|
906 | png_const_bytep pp = voidcast(png_const_bytep, pb);
|
---|
907 |
|
---|
908 | p->r = pp[3];
|
---|
909 | p->g = pp[2];
|
---|
910 | p->b = pp[1];
|
---|
911 | p->a = pp[0];
|
---|
912 | }
|
---|
913 | #endif
|
---|
914 |
|
---|
915 | static void
|
---|
916 | gp_g16(Pixel *p, png_const_voidp pb)
|
---|
917 | {
|
---|
918 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
919 |
|
---|
920 | p->r = p->g = p->b = pp[0];
|
---|
921 | p->a = 65535;
|
---|
922 | }
|
---|
923 |
|
---|
924 | static void
|
---|
925 | gp_ga16(Pixel *p, png_const_voidp pb)
|
---|
926 | {
|
---|
927 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
928 |
|
---|
929 | p->r = p->g = p->b = pp[0];
|
---|
930 | p->a = pp[1];
|
---|
931 | }
|
---|
932 |
|
---|
933 | #ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
934 | static void
|
---|
935 | gp_ag16(Pixel *p, png_const_voidp pb)
|
---|
936 | {
|
---|
937 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
938 |
|
---|
939 | p->r = p->g = p->b = pp[1];
|
---|
940 | p->a = pp[0];
|
---|
941 | }
|
---|
942 | #endif
|
---|
943 |
|
---|
944 | static void
|
---|
945 | gp_rgb16(Pixel *p, png_const_voidp pb)
|
---|
946 | {
|
---|
947 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
948 |
|
---|
949 | p->r = pp[0];
|
---|
950 | p->g = pp[1];
|
---|
951 | p->b = pp[2];
|
---|
952 | p->a = 65535;
|
---|
953 | }
|
---|
954 |
|
---|
955 | #ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
956 | static void
|
---|
957 | gp_bgr16(Pixel *p, png_const_voidp pb)
|
---|
958 | {
|
---|
959 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
960 |
|
---|
961 | p->r = pp[2];
|
---|
962 | p->g = pp[1];
|
---|
963 | p->b = pp[0];
|
---|
964 | p->a = 65535;
|
---|
965 | }
|
---|
966 | #endif
|
---|
967 |
|
---|
968 | static void
|
---|
969 | gp_rgba16(Pixel *p, png_const_voidp pb)
|
---|
970 | {
|
---|
971 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
972 |
|
---|
973 | p->r = pp[0];
|
---|
974 | p->g = pp[1];
|
---|
975 | p->b = pp[2];
|
---|
976 | p->a = pp[3];
|
---|
977 | }
|
---|
978 |
|
---|
979 | #ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
980 | static void
|
---|
981 | gp_bgra16(Pixel *p, png_const_voidp pb)
|
---|
982 | {
|
---|
983 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
984 |
|
---|
985 | p->r = pp[2];
|
---|
986 | p->g = pp[1];
|
---|
987 | p->b = pp[0];
|
---|
988 | p->a = pp[3];
|
---|
989 | }
|
---|
990 | #endif
|
---|
991 |
|
---|
992 | #ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
993 | static void
|
---|
994 | gp_argb16(Pixel *p, png_const_voidp pb)
|
---|
995 | {
|
---|
996 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
997 |
|
---|
998 | p->r = pp[1];
|
---|
999 | p->g = pp[2];
|
---|
1000 | p->b = pp[3];
|
---|
1001 | p->a = pp[0];
|
---|
1002 | }
|
---|
1003 | #endif
|
---|
1004 |
|
---|
1005 | #if defined(PNG_FORMAT_AFIRST_SUPPORTED) && defined(PNG_FORMAT_BGR_SUPPORTED)
|
---|
1006 | static void
|
---|
1007 | gp_abgr16(Pixel *p, png_const_voidp pb)
|
---|
1008 | {
|
---|
1009 | png_const_uint_16p pp = voidcast(png_const_uint_16p, pb);
|
---|
1010 |
|
---|
1011 | p->r = pp[3];
|
---|
1012 | p->g = pp[2];
|
---|
1013 | p->b = pp[1];
|
---|
1014 | p->a = pp[0];
|
---|
1015 | }
|
---|
1016 | #endif
|
---|
1017 |
|
---|
1018 | /* Given a format, return the correct one of the above functions. */
|
---|
1019 | static void (*
|
---|
1020 | get_pixel(png_uint_32 format))(Pixel *p, png_const_voidp pb)
|
---|
1021 | {
|
---|
1022 | /* The color-map flag is irrelevant here - the caller of the function
|
---|
1023 | * returned must either pass the buffer or, for a color-mapped image, the
|
---|
1024 | * correct entry in the color-map.
|
---|
1025 | */
|
---|
1026 | if (format & PNG_FORMAT_FLAG_LINEAR)
|
---|
1027 | {
|
---|
1028 | if (format & PNG_FORMAT_FLAG_COLOR)
|
---|
1029 | {
|
---|
1030 | # ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
1031 | if (format & PNG_FORMAT_FLAG_BGR)
|
---|
1032 | {
|
---|
1033 | if (format & PNG_FORMAT_FLAG_ALPHA)
|
---|
1034 | {
|
---|
1035 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
1036 | if (format & PNG_FORMAT_FLAG_AFIRST)
|
---|
1037 | return gp_abgr16;
|
---|
1038 |
|
---|
1039 | else
|
---|
1040 | # endif
|
---|
1041 | return gp_bgra16;
|
---|
1042 | }
|
---|
1043 |
|
---|
1044 | else
|
---|
1045 | return gp_bgr16;
|
---|
1046 | }
|
---|
1047 |
|
---|
1048 | else
|
---|
1049 | # endif
|
---|
1050 | {
|
---|
1051 | if (format & PNG_FORMAT_FLAG_ALPHA)
|
---|
1052 | {
|
---|
1053 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
1054 | if (format & PNG_FORMAT_FLAG_AFIRST)
|
---|
1055 | return gp_argb16;
|
---|
1056 |
|
---|
1057 | else
|
---|
1058 | # endif
|
---|
1059 | return gp_rgba16;
|
---|
1060 | }
|
---|
1061 |
|
---|
1062 | else
|
---|
1063 | return gp_rgb16;
|
---|
1064 | }
|
---|
1065 | }
|
---|
1066 |
|
---|
1067 | else
|
---|
1068 | {
|
---|
1069 | if (format & PNG_FORMAT_FLAG_ALPHA)
|
---|
1070 | {
|
---|
1071 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
1072 | if (format & PNG_FORMAT_FLAG_AFIRST)
|
---|
1073 | return gp_ag16;
|
---|
1074 |
|
---|
1075 | else
|
---|
1076 | # endif
|
---|
1077 | return gp_ga16;
|
---|
1078 | }
|
---|
1079 |
|
---|
1080 | else
|
---|
1081 | return gp_g16;
|
---|
1082 | }
|
---|
1083 | }
|
---|
1084 |
|
---|
1085 | else
|
---|
1086 | {
|
---|
1087 | if (format & PNG_FORMAT_FLAG_COLOR)
|
---|
1088 | {
|
---|
1089 | # ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
1090 | if (format & PNG_FORMAT_FLAG_BGR)
|
---|
1091 | {
|
---|
1092 | if (format & PNG_FORMAT_FLAG_ALPHA)
|
---|
1093 | {
|
---|
1094 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
1095 | if (format & PNG_FORMAT_FLAG_AFIRST)
|
---|
1096 | return gp_abgr8;
|
---|
1097 |
|
---|
1098 | else
|
---|
1099 | # endif
|
---|
1100 | return gp_bgra8;
|
---|
1101 | }
|
---|
1102 |
|
---|
1103 | else
|
---|
1104 | return gp_bgr8;
|
---|
1105 | }
|
---|
1106 |
|
---|
1107 | else
|
---|
1108 | # endif
|
---|
1109 | {
|
---|
1110 | if (format & PNG_FORMAT_FLAG_ALPHA)
|
---|
1111 | {
|
---|
1112 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
1113 | if (format & PNG_FORMAT_FLAG_AFIRST)
|
---|
1114 | return gp_argb8;
|
---|
1115 |
|
---|
1116 | else
|
---|
1117 | # endif
|
---|
1118 | return gp_rgba8;
|
---|
1119 | }
|
---|
1120 |
|
---|
1121 | else
|
---|
1122 | return gp_rgb8;
|
---|
1123 | }
|
---|
1124 | }
|
---|
1125 |
|
---|
1126 | else
|
---|
1127 | {
|
---|
1128 | if (format & PNG_FORMAT_FLAG_ALPHA)
|
---|
1129 | {
|
---|
1130 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
1131 | if (format & PNG_FORMAT_FLAG_AFIRST)
|
---|
1132 | return gp_ag8;
|
---|
1133 |
|
---|
1134 | else
|
---|
1135 | # endif
|
---|
1136 | return gp_ga8;
|
---|
1137 | }
|
---|
1138 |
|
---|
1139 | else
|
---|
1140 | return gp_g8;
|
---|
1141 | }
|
---|
1142 | }
|
---|
1143 | }
|
---|
1144 |
|
---|
1145 | /* Conversion between pixel formats. The code above effectively eliminates the
|
---|
1146 | * component ordering changes leaving three basic changes:
|
---|
1147 | *
|
---|
1148 | * 1) Remove an alpha channel by pre-multiplication or compositing on a
|
---|
1149 | * background color. (Adding an alpha channel is a no-op.)
|
---|
1150 | *
|
---|
1151 | * 2) Remove color by mapping to grayscale. (Grayscale to color is a no-op.)
|
---|
1152 | *
|
---|
1153 | * 3) Convert between 8-bit and 16-bit components. (Both directtions are
|
---|
1154 | * relevant.)
|
---|
1155 | *
|
---|
1156 | * This gives the following base format conversion matrix:
|
---|
1157 | *
|
---|
1158 | * OUT: ----- 8-bit ----- ----- 16-bit -----
|
---|
1159 | * IN G GA RGB RGBA G GA RGB RGBA
|
---|
1160 | * 8 G . . . . lin lin lin lin
|
---|
1161 | * 8 GA bckg . bckc . pre' pre pre' pre
|
---|
1162 | * 8 RGB g8 g8 . . glin glin lin lin
|
---|
1163 | * 8 RGBA g8b g8 bckc . gpr' gpre pre' pre
|
---|
1164 | * 16 G sRGB sRGB sRGB sRGB . . . .
|
---|
1165 | * 16 GA b16g unpg b16c unpc A . A .
|
---|
1166 | * 16 RGB sG sG sRGB sRGB g16 g16 . .
|
---|
1167 | * 16 RGBA gb16 sGp cb16 sCp g16 g16' A .
|
---|
1168 | *
|
---|
1169 | * 8-bit to 8-bit:
|
---|
1170 | * bckg: composite on gray background
|
---|
1171 | * bckc: composite on color background
|
---|
1172 | * g8: convert sRGB components to sRGB grayscale
|
---|
1173 | * g8b: convert sRGB components to grayscale and composite on gray background
|
---|
1174 | *
|
---|
1175 | * 8-bit to 16-bit:
|
---|
1176 | * lin: make sRGB components linear, alpha := 65535
|
---|
1177 | * pre: make sRGB components linear and premultiply by alpha (scale alpha)
|
---|
1178 | * pre': as 'pre' but alpha := 65535
|
---|
1179 | * glin: make sRGB components linear, convert to grayscale, alpha := 65535
|
---|
1180 | * gpre: make sRGB components grayscale and linear and premultiply by alpha
|
---|
1181 | * gpr': as 'gpre' but alpha := 65535
|
---|
1182 | *
|
---|
1183 | * 16-bit to 8-bit:
|
---|
1184 | * sRGB: convert linear components to sRGB, alpha := 255
|
---|
1185 | * unpg: unpremultiply gray component and convert to sRGB (scale alpha)
|
---|
1186 | * unpc: unpremultiply color components and convert to sRGB (scale alpha)
|
---|
1187 | * b16g: composite linear onto gray background and convert the result to sRGB
|
---|
1188 | * b16c: composite linear onto color background and convert the result to sRGB
|
---|
1189 | * sG: convert linear RGB to sRGB grayscale
|
---|
1190 | * sGp: unpremultiply RGB then convert to sRGB grayscale
|
---|
1191 | * sCp: unpremultiply RGB then convert to sRGB
|
---|
1192 | * gb16: composite linear onto background and convert to sRGB grayscale
|
---|
1193 | * (order doesn't matter, the composite and grayscale operations permute)
|
---|
1194 | * cb16: composite linear onto background and convert to sRGB
|
---|
1195 | *
|
---|
1196 | * 16-bit to 16-bit:
|
---|
1197 | * A: set alpha to 65535
|
---|
1198 | * g16: convert linear RGB to linear grayscale (alpha := 65535)
|
---|
1199 | * g16': as 'g16' but alpha is unchanged
|
---|
1200 | */
|
---|
1201 | /* Simple copy: */
|
---|
1202 | static void
|
---|
1203 | gpc_noop(Pixel *out, const Pixel *in, const Background *back)
|
---|
1204 | {
|
---|
1205 | (void)back;
|
---|
1206 | out->r = in->r;
|
---|
1207 | out->g = in->g;
|
---|
1208 | out->b = in->b;
|
---|
1209 | out->a = in->a;
|
---|
1210 | }
|
---|
1211 |
|
---|
1212 | #if ALLOW_UNUSED_GPC
|
---|
1213 | static void
|
---|
1214 | gpc_nop8(Pixel *out, const Pixel *in, const Background *back)
|
---|
1215 | {
|
---|
1216 | (void)back;
|
---|
1217 | if (in->a == 0)
|
---|
1218 | out->r = out->g = out->b = 255;
|
---|
1219 |
|
---|
1220 | else
|
---|
1221 | {
|
---|
1222 | out->r = in->r;
|
---|
1223 | out->g = in->g;
|
---|
1224 | out->b = in->b;
|
---|
1225 | }
|
---|
1226 |
|
---|
1227 | out->a = in->a;
|
---|
1228 | }
|
---|
1229 | #endif
|
---|
1230 |
|
---|
1231 | #if ALLOW_UNUSED_GPC
|
---|
1232 | static void
|
---|
1233 | gpc_nop6(Pixel *out, const Pixel *in, const Background *back)
|
---|
1234 | {
|
---|
1235 | (void)back;
|
---|
1236 | if (in->a == 0)
|
---|
1237 | out->r = out->g = out->b = 65535;
|
---|
1238 |
|
---|
1239 | else
|
---|
1240 | {
|
---|
1241 | out->r = in->r;
|
---|
1242 | out->g = in->g;
|
---|
1243 | out->b = in->b;
|
---|
1244 | }
|
---|
1245 |
|
---|
1246 | out->a = in->a;
|
---|
1247 | }
|
---|
1248 | #endif
|
---|
1249 |
|
---|
1250 | /* 8-bit to 8-bit conversions */
|
---|
1251 | /* bckg: composite on gray background */
|
---|
1252 | static void
|
---|
1253 | gpc_bckg(Pixel *out, const Pixel *in, const Background *back)
|
---|
1254 | {
|
---|
1255 | if (in->a <= 0)
|
---|
1256 | out->r = out->g = out->b = back->ig;
|
---|
1257 |
|
---|
1258 | else if (in->a >= 255)
|
---|
1259 | out->r = out->g = out->b = in->g;
|
---|
1260 |
|
---|
1261 | else
|
---|
1262 | {
|
---|
1263 | double a = in->a / 255.;
|
---|
1264 |
|
---|
1265 | out->r = out->g = out->b = sRGB(sRGB_to_d[in->g] * a + back->dg * (1-a));
|
---|
1266 | }
|
---|
1267 |
|
---|
1268 | out->a = 255;
|
---|
1269 | }
|
---|
1270 |
|
---|
1271 | /* bckc: composite on color background */
|
---|
1272 | static void
|
---|
1273 | gpc_bckc(Pixel *out, const Pixel *in, const Background *back)
|
---|
1274 | {
|
---|
1275 | if (in->a <= 0)
|
---|
1276 | {
|
---|
1277 | out->r = back->ir;
|
---|
1278 | out->g = back->ig;
|
---|
1279 | out->b = back->ib;
|
---|
1280 | }
|
---|
1281 |
|
---|
1282 | else if (in->a >= 255)
|
---|
1283 | {
|
---|
1284 | out->r = in->r;
|
---|
1285 | out->g = in->g;
|
---|
1286 | out->b = in->b;
|
---|
1287 | }
|
---|
1288 |
|
---|
1289 | else
|
---|
1290 | {
|
---|
1291 | double a = in->a / 255.;
|
---|
1292 |
|
---|
1293 | out->r = sRGB(sRGB_to_d[in->r] * a + back->dr * (1-a));
|
---|
1294 | out->g = sRGB(sRGB_to_d[in->g] * a + back->dg * (1-a));
|
---|
1295 | out->b = sRGB(sRGB_to_d[in->b] * a + back->db * (1-a));
|
---|
1296 | }
|
---|
1297 |
|
---|
1298 | out->a = 255;
|
---|
1299 | }
|
---|
1300 |
|
---|
1301 | /* g8: convert sRGB components to sRGB grayscale */
|
---|
1302 | static void
|
---|
1303 | gpc_g8(Pixel *out, const Pixel *in, const Background *back)
|
---|
1304 | {
|
---|
1305 | (void)back;
|
---|
1306 |
|
---|
1307 | if (in->r == in->g && in->g == in->b)
|
---|
1308 | out->r = out->g = out->b = in->g;
|
---|
1309 |
|
---|
1310 | else
|
---|
1311 | out->r = out->g = out->b =
|
---|
1312 | sRGB(YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
|
---|
1313 |
|
---|
1314 | out->a = in->a;
|
---|
1315 | }
|
---|
1316 |
|
---|
1317 | /* g8b: convert sRGB components to grayscale and composite on gray background */
|
---|
1318 | static void
|
---|
1319 | gpc_g8b(Pixel *out, const Pixel *in, const Background *back)
|
---|
1320 | {
|
---|
1321 | if (in->a <= 0)
|
---|
1322 | out->r = out->g = out->b = back->ig;
|
---|
1323 |
|
---|
1324 | else if (in->a >= 255)
|
---|
1325 | {
|
---|
1326 | if (in->r == in->g && in->g == in->b)
|
---|
1327 | out->r = out->g = out->b = in->g;
|
---|
1328 |
|
---|
1329 | else
|
---|
1330 | out->r = out->g = out->b = sRGB(YfromRGB(
|
---|
1331 | sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
|
---|
1332 | }
|
---|
1333 |
|
---|
1334 | else
|
---|
1335 | {
|
---|
1336 | double a = in->a/255.;
|
---|
1337 |
|
---|
1338 | out->r = out->g = out->b = sRGB(a * YfromRGB(sRGB_to_d[in->r],
|
---|
1339 | sRGB_to_d[in->g], sRGB_to_d[in->b]) + back->dg * (1-a));
|
---|
1340 | }
|
---|
1341 |
|
---|
1342 | out->a = 255;
|
---|
1343 | }
|
---|
1344 |
|
---|
1345 | /* 8-bit to 16-bit conversions */
|
---|
1346 | /* lin: make sRGB components linear, alpha := 65535 */
|
---|
1347 | static void
|
---|
1348 | gpc_lin(Pixel *out, const Pixel *in, const Background *back)
|
---|
1349 | {
|
---|
1350 | (void)back;
|
---|
1351 |
|
---|
1352 | out->r = ilinear(in->r);
|
---|
1353 |
|
---|
1354 | if (in->g == in->r)
|
---|
1355 | {
|
---|
1356 | out->g = out->r;
|
---|
1357 |
|
---|
1358 | if (in->b == in->r)
|
---|
1359 | out->b = out->r;
|
---|
1360 |
|
---|
1361 | else
|
---|
1362 | out->b = ilinear(in->b);
|
---|
1363 | }
|
---|
1364 |
|
---|
1365 | else
|
---|
1366 | {
|
---|
1367 | out->g = ilinear(in->g);
|
---|
1368 |
|
---|
1369 | if (in->b == in->r)
|
---|
1370 | out->b = out->r;
|
---|
1371 |
|
---|
1372 | else if (in->b == in->g)
|
---|
1373 | out->b = out->g;
|
---|
1374 |
|
---|
1375 | else
|
---|
1376 | out->b = ilinear(in->b);
|
---|
1377 | }
|
---|
1378 |
|
---|
1379 | out->a = 65535;
|
---|
1380 | }
|
---|
1381 |
|
---|
1382 | /* pre: make sRGB components linear and premultiply by alpha (scale alpha) */
|
---|
1383 | static void
|
---|
1384 | gpc_pre(Pixel *out, const Pixel *in, const Background *back)
|
---|
1385 | {
|
---|
1386 | (void)back;
|
---|
1387 |
|
---|
1388 | out->r = ilineara(in->r, in->a);
|
---|
1389 |
|
---|
1390 | if (in->g == in->r)
|
---|
1391 | {
|
---|
1392 | out->g = out->r;
|
---|
1393 |
|
---|
1394 | if (in->b == in->r)
|
---|
1395 | out->b = out->r;
|
---|
1396 |
|
---|
1397 | else
|
---|
1398 | out->b = ilineara(in->b, in->a);
|
---|
1399 | }
|
---|
1400 |
|
---|
1401 | else
|
---|
1402 | {
|
---|
1403 | out->g = ilineara(in->g, in->a);
|
---|
1404 |
|
---|
1405 | if (in->b == in->r)
|
---|
1406 | out->b = out->r;
|
---|
1407 |
|
---|
1408 | else if (in->b == in->g)
|
---|
1409 | out->b = out->g;
|
---|
1410 |
|
---|
1411 | else
|
---|
1412 | out->b = ilineara(in->b, in->a);
|
---|
1413 | }
|
---|
1414 |
|
---|
1415 | out->a = in->a * 257;
|
---|
1416 | }
|
---|
1417 |
|
---|
1418 | /* pre': as 'pre' but alpha := 65535 */
|
---|
1419 | static void
|
---|
1420 | gpc_preq(Pixel *out, const Pixel *in, const Background *back)
|
---|
1421 | {
|
---|
1422 | (void)back;
|
---|
1423 |
|
---|
1424 | out->r = ilineara(in->r, in->a);
|
---|
1425 |
|
---|
1426 | if (in->g == in->r)
|
---|
1427 | {
|
---|
1428 | out->g = out->r;
|
---|
1429 |
|
---|
1430 | if (in->b == in->r)
|
---|
1431 | out->b = out->r;
|
---|
1432 |
|
---|
1433 | else
|
---|
1434 | out->b = ilineara(in->b, in->a);
|
---|
1435 | }
|
---|
1436 |
|
---|
1437 | else
|
---|
1438 | {
|
---|
1439 | out->g = ilineara(in->g, in->a);
|
---|
1440 |
|
---|
1441 | if (in->b == in->r)
|
---|
1442 | out->b = out->r;
|
---|
1443 |
|
---|
1444 | else if (in->b == in->g)
|
---|
1445 | out->b = out->g;
|
---|
1446 |
|
---|
1447 | else
|
---|
1448 | out->b = ilineara(in->b, in->a);
|
---|
1449 | }
|
---|
1450 |
|
---|
1451 | out->a = 65535;
|
---|
1452 | }
|
---|
1453 |
|
---|
1454 | /* glin: make sRGB components linear, convert to grayscale, alpha := 65535 */
|
---|
1455 | static void
|
---|
1456 | gpc_glin(Pixel *out, const Pixel *in, const Background *back)
|
---|
1457 | {
|
---|
1458 | (void)back;
|
---|
1459 |
|
---|
1460 | if (in->r == in->g && in->g == in->b)
|
---|
1461 | out->r = out->g = out->b = ilinear(in->g);
|
---|
1462 |
|
---|
1463 | else
|
---|
1464 | out->r = out->g = out->b = u16d(65535 *
|
---|
1465 | YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
|
---|
1466 |
|
---|
1467 | out->a = 65535;
|
---|
1468 | }
|
---|
1469 |
|
---|
1470 | /* gpre: make sRGB components grayscale and linear and premultiply by alpha */
|
---|
1471 | static void
|
---|
1472 | gpc_gpre(Pixel *out, const Pixel *in, const Background *back)
|
---|
1473 | {
|
---|
1474 | (void)back;
|
---|
1475 |
|
---|
1476 | if (in->r == in->g && in->g == in->b)
|
---|
1477 | out->r = out->g = out->b = ilineara(in->g, in->a);
|
---|
1478 |
|
---|
1479 | else
|
---|
1480 | out->r = out->g = out->b = u16d(in->a * 257 *
|
---|
1481 | YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
|
---|
1482 |
|
---|
1483 | out->a = 257 * in->a;
|
---|
1484 | }
|
---|
1485 |
|
---|
1486 | /* gpr': as 'gpre' but alpha := 65535 */
|
---|
1487 | static void
|
---|
1488 | gpc_gprq(Pixel *out, const Pixel *in, const Background *back)
|
---|
1489 | {
|
---|
1490 | (void)back;
|
---|
1491 |
|
---|
1492 | if (in->r == in->g && in->g == in->b)
|
---|
1493 | out->r = out->g = out->b = ilineara(in->g, in->a);
|
---|
1494 |
|
---|
1495 | else
|
---|
1496 | out->r = out->g = out->b = u16d(in->a * 257 *
|
---|
1497 | YfromRGB(sRGB_to_d[in->r], sRGB_to_d[in->g], sRGB_to_d[in->b]));
|
---|
1498 |
|
---|
1499 | out->a = 65535;
|
---|
1500 | }
|
---|
1501 |
|
---|
1502 | /* 8-bit to 16-bit conversions for gAMA 45455 encoded values */
|
---|
1503 | /* Lin: make gAMA 45455 components linear, alpha := 65535 */
|
---|
1504 | static void
|
---|
1505 | gpc_Lin(Pixel *out, const Pixel *in, const Background *back)
|
---|
1506 | {
|
---|
1507 | (void)back;
|
---|
1508 |
|
---|
1509 | out->r = ilinear_g22(in->r);
|
---|
1510 |
|
---|
1511 | if (in->g == in->r)
|
---|
1512 | {
|
---|
1513 | out->g = out->r;
|
---|
1514 |
|
---|
1515 | if (in->b == in->r)
|
---|
1516 | out->b = out->r;
|
---|
1517 |
|
---|
1518 | else
|
---|
1519 | out->b = ilinear_g22(in->b);
|
---|
1520 | }
|
---|
1521 |
|
---|
1522 | else
|
---|
1523 | {
|
---|
1524 | out->g = ilinear_g22(in->g);
|
---|
1525 |
|
---|
1526 | if (in->b == in->r)
|
---|
1527 | out->b = out->r;
|
---|
1528 |
|
---|
1529 | else if (in->b == in->g)
|
---|
1530 | out->b = out->g;
|
---|
1531 |
|
---|
1532 | else
|
---|
1533 | out->b = ilinear_g22(in->b);
|
---|
1534 | }
|
---|
1535 |
|
---|
1536 | out->a = 65535;
|
---|
1537 | }
|
---|
1538 |
|
---|
1539 | #if ALLOW_UNUSED_GPC
|
---|
1540 | /* Pre: make gAMA 45455 components linear and premultiply by alpha (scale alpha)
|
---|
1541 | */
|
---|
1542 | static void
|
---|
1543 | gpc_Pre(Pixel *out, const Pixel *in, const Background *back)
|
---|
1544 | {
|
---|
1545 | (void)back;
|
---|
1546 |
|
---|
1547 | out->r = ilineara_g22(in->r, in->a);
|
---|
1548 |
|
---|
1549 | if (in->g == in->r)
|
---|
1550 | {
|
---|
1551 | out->g = out->r;
|
---|
1552 |
|
---|
1553 | if (in->b == in->r)
|
---|
1554 | out->b = out->r;
|
---|
1555 |
|
---|
1556 | else
|
---|
1557 | out->b = ilineara_g22(in->b, in->a);
|
---|
1558 | }
|
---|
1559 |
|
---|
1560 | else
|
---|
1561 | {
|
---|
1562 | out->g = ilineara_g22(in->g, in->a);
|
---|
1563 |
|
---|
1564 | if (in->b == in->r)
|
---|
1565 | out->b = out->r;
|
---|
1566 |
|
---|
1567 | else if (in->b == in->g)
|
---|
1568 | out->b = out->g;
|
---|
1569 |
|
---|
1570 | else
|
---|
1571 | out->b = ilineara_g22(in->b, in->a);
|
---|
1572 | }
|
---|
1573 |
|
---|
1574 | out->a = in->a * 257;
|
---|
1575 | }
|
---|
1576 | #endif
|
---|
1577 |
|
---|
1578 | #if ALLOW_UNUSED_GPC
|
---|
1579 | /* Pre': as 'Pre' but alpha := 65535 */
|
---|
1580 | static void
|
---|
1581 | gpc_Preq(Pixel *out, const Pixel *in, const Background *back)
|
---|
1582 | {
|
---|
1583 | (void)back;
|
---|
1584 |
|
---|
1585 | out->r = ilineara_g22(in->r, in->a);
|
---|
1586 |
|
---|
1587 | if (in->g == in->r)
|
---|
1588 | {
|
---|
1589 | out->g = out->r;
|
---|
1590 |
|
---|
1591 | if (in->b == in->r)
|
---|
1592 | out->b = out->r;
|
---|
1593 |
|
---|
1594 | else
|
---|
1595 | out->b = ilineara_g22(in->b, in->a);
|
---|
1596 | }
|
---|
1597 |
|
---|
1598 | else
|
---|
1599 | {
|
---|
1600 | out->g = ilineara_g22(in->g, in->a);
|
---|
1601 |
|
---|
1602 | if (in->b == in->r)
|
---|
1603 | out->b = out->r;
|
---|
1604 |
|
---|
1605 | else if (in->b == in->g)
|
---|
1606 | out->b = out->g;
|
---|
1607 |
|
---|
1608 | else
|
---|
1609 | out->b = ilineara_g22(in->b, in->a);
|
---|
1610 | }
|
---|
1611 |
|
---|
1612 | out->a = 65535;
|
---|
1613 | }
|
---|
1614 | #endif
|
---|
1615 |
|
---|
1616 | #if ALLOW_UNUSED_GPC
|
---|
1617 | /* Glin: make gAMA 45455 components linear, convert to grayscale, alpha := 65535
|
---|
1618 | */
|
---|
1619 | static void
|
---|
1620 | gpc_Glin(Pixel *out, const Pixel *in, const Background *back)
|
---|
1621 | {
|
---|
1622 | (void)back;
|
---|
1623 |
|
---|
1624 | if (in->r == in->g && in->g == in->b)
|
---|
1625 | out->r = out->g = out->b = ilinear_g22(in->g);
|
---|
1626 |
|
---|
1627 | else
|
---|
1628 | out->r = out->g = out->b = u16d(65535 *
|
---|
1629 | YfromRGB(g22_to_d[in->r], g22_to_d[in->g], g22_to_d[in->b]));
|
---|
1630 |
|
---|
1631 | out->a = 65535;
|
---|
1632 | }
|
---|
1633 | #endif
|
---|
1634 |
|
---|
1635 | #if ALLOW_UNUSED_GPC
|
---|
1636 | /* Gpre: make gAMA 45455 components grayscale and linear and premultiply by
|
---|
1637 | * alpha.
|
---|
1638 | */
|
---|
1639 | static void
|
---|
1640 | gpc_Gpre(Pixel *out, const Pixel *in, const Background *back)
|
---|
1641 | {
|
---|
1642 | (void)back;
|
---|
1643 |
|
---|
1644 | if (in->r == in->g && in->g == in->b)
|
---|
1645 | out->r = out->g = out->b = ilineara_g22(in->g, in->a);
|
---|
1646 |
|
---|
1647 | else
|
---|
1648 | out->r = out->g = out->b = u16d(in->a * 257 *
|
---|
1649 | YfromRGB(g22_to_d[in->r], g22_to_d[in->g], g22_to_d[in->b]));
|
---|
1650 |
|
---|
1651 | out->a = 257 * in->a;
|
---|
1652 | }
|
---|
1653 | #endif
|
---|
1654 |
|
---|
1655 | #if ALLOW_UNUSED_GPC
|
---|
1656 | /* Gpr': as 'Gpre' but alpha := 65535 */
|
---|
1657 | static void
|
---|
1658 | gpc_Gprq(Pixel *out, const Pixel *in, const Background *back)
|
---|
1659 | {
|
---|
1660 | (void)back;
|
---|
1661 |
|
---|
1662 | if (in->r == in->g && in->g == in->b)
|
---|
1663 | out->r = out->g = out->b = ilineara_g22(in->g, in->a);
|
---|
1664 |
|
---|
1665 | else
|
---|
1666 | out->r = out->g = out->b = u16d(in->a * 257 *
|
---|
1667 | YfromRGB(g22_to_d[in->r], g22_to_d[in->g], g22_to_d[in->b]));
|
---|
1668 |
|
---|
1669 | out->a = 65535;
|
---|
1670 | }
|
---|
1671 | #endif
|
---|
1672 |
|
---|
1673 | /* 16-bit to 8-bit conversions */
|
---|
1674 | /* sRGB: convert linear components to sRGB, alpha := 255 */
|
---|
1675 | static void
|
---|
1676 | gpc_sRGB(Pixel *out, const Pixel *in, const Background *back)
|
---|
1677 | {
|
---|
1678 | (void)back;
|
---|
1679 |
|
---|
1680 | out->r = isRGB(in->r);
|
---|
1681 |
|
---|
1682 | if (in->g == in->r)
|
---|
1683 | {
|
---|
1684 | out->g = out->r;
|
---|
1685 |
|
---|
1686 | if (in->b == in->r)
|
---|
1687 | out->b = out->r;
|
---|
1688 |
|
---|
1689 | else
|
---|
1690 | out->b = isRGB(in->b);
|
---|
1691 | }
|
---|
1692 |
|
---|
1693 | else
|
---|
1694 | {
|
---|
1695 | out->g = isRGB(in->g);
|
---|
1696 |
|
---|
1697 | if (in->b == in->r)
|
---|
1698 | out->b = out->r;
|
---|
1699 |
|
---|
1700 | else if (in->b == in->g)
|
---|
1701 | out->b = out->g;
|
---|
1702 |
|
---|
1703 | else
|
---|
1704 | out->b = isRGB(in->b);
|
---|
1705 | }
|
---|
1706 |
|
---|
1707 | out->a = 255;
|
---|
1708 | }
|
---|
1709 |
|
---|
1710 | /* unpg: unpremultiply gray component and convert to sRGB (scale alpha) */
|
---|
1711 | static void
|
---|
1712 | gpc_unpg(Pixel *out, const Pixel *in, const Background *back)
|
---|
1713 | {
|
---|
1714 | (void)back;
|
---|
1715 |
|
---|
1716 | if (in->a <= 128)
|
---|
1717 | {
|
---|
1718 | out->r = out->g = out->b = 255;
|
---|
1719 | out->a = 0;
|
---|
1720 | }
|
---|
1721 |
|
---|
1722 | else
|
---|
1723 | {
|
---|
1724 | out->r = out->g = out->b = sRGB((double)in->g / in->a);
|
---|
1725 | out->a = u8d(in->a / 257.);
|
---|
1726 | }
|
---|
1727 | }
|
---|
1728 |
|
---|
1729 | /* unpc: unpremultiply color components and convert to sRGB (scale alpha) */
|
---|
1730 | static void
|
---|
1731 | gpc_unpc(Pixel *out, const Pixel *in, const Background *back)
|
---|
1732 | {
|
---|
1733 | (void)back;
|
---|
1734 |
|
---|
1735 | if (in->a <= 128)
|
---|
1736 | {
|
---|
1737 | out->r = out->g = out->b = 255;
|
---|
1738 | out->a = 0;
|
---|
1739 | }
|
---|
1740 |
|
---|
1741 | else
|
---|
1742 | {
|
---|
1743 | out->r = sRGB((double)in->r / in->a);
|
---|
1744 | out->g = sRGB((double)in->g / in->a);
|
---|
1745 | out->b = sRGB((double)in->b / in->a);
|
---|
1746 | out->a = u8d(in->a / 257.);
|
---|
1747 | }
|
---|
1748 | }
|
---|
1749 |
|
---|
1750 | /* b16g: composite linear onto gray background and convert the result to sRGB */
|
---|
1751 | static void
|
---|
1752 | gpc_b16g(Pixel *out, const Pixel *in, const Background *back)
|
---|
1753 | {
|
---|
1754 | if (in->a <= 0)
|
---|
1755 | out->r = out->g = out->b = back->ig;
|
---|
1756 |
|
---|
1757 | else
|
---|
1758 | {
|
---|
1759 | double a = in->a/65535.;
|
---|
1760 | double a1 = 1-a;
|
---|
1761 |
|
---|
1762 | a /= 65535;
|
---|
1763 | out->r = out->g = out->b = sRGB(in->g * a + back->dg * a1);
|
---|
1764 | }
|
---|
1765 |
|
---|
1766 | out->a = 255;
|
---|
1767 | }
|
---|
1768 |
|
---|
1769 | /* b16c: composite linear onto color background and convert the result to sRGB*/
|
---|
1770 | static void
|
---|
1771 | gpc_b16c(Pixel *out, const Pixel *in, const Background *back)
|
---|
1772 | {
|
---|
1773 | if (in->a <= 0)
|
---|
1774 | {
|
---|
1775 | out->r = back->ir;
|
---|
1776 | out->g = back->ig;
|
---|
1777 | out->b = back->ib;
|
---|
1778 | }
|
---|
1779 |
|
---|
1780 | else
|
---|
1781 | {
|
---|
1782 | double a = in->a/65535.;
|
---|
1783 | double a1 = 1-a;
|
---|
1784 |
|
---|
1785 | a /= 65535;
|
---|
1786 | out->r = sRGB(in->r * a + back->dr * a1);
|
---|
1787 | out->g = sRGB(in->g * a + back->dg * a1);
|
---|
1788 | out->b = sRGB(in->b * a + back->db * a1);
|
---|
1789 | }
|
---|
1790 |
|
---|
1791 | out->a = 255;
|
---|
1792 | }
|
---|
1793 |
|
---|
1794 | /* sG: convert linear RGB to sRGB grayscale */
|
---|
1795 | static void
|
---|
1796 | gpc_sG(Pixel *out, const Pixel *in, const Background *back)
|
---|
1797 | {
|
---|
1798 | (void)back;
|
---|
1799 |
|
---|
1800 | out->r = out->g = out->b = sRGB(YfromRGBint(in->r, in->g, in->b)/65535);
|
---|
1801 | out->a = 255;
|
---|
1802 | }
|
---|
1803 |
|
---|
1804 | /* sGp: unpremultiply RGB then convert to sRGB grayscale */
|
---|
1805 | static void
|
---|
1806 | gpc_sGp(Pixel *out, const Pixel *in, const Background *back)
|
---|
1807 | {
|
---|
1808 | (void)back;
|
---|
1809 |
|
---|
1810 | if (in->a <= 128)
|
---|
1811 | {
|
---|
1812 | out->r = out->g = out->b = 255;
|
---|
1813 | out->a = 0;
|
---|
1814 | }
|
---|
1815 |
|
---|
1816 | else
|
---|
1817 | {
|
---|
1818 | out->r = out->g = out->b = sRGB(YfromRGBint(in->r, in->g, in->b)/in->a);
|
---|
1819 | out->a = u8d(in->a / 257.);
|
---|
1820 | }
|
---|
1821 | }
|
---|
1822 |
|
---|
1823 | /* sCp: unpremultiply RGB then convert to sRGB */
|
---|
1824 | static void
|
---|
1825 | gpc_sCp(Pixel *out, const Pixel *in, const Background *back)
|
---|
1826 | {
|
---|
1827 | (void)back;
|
---|
1828 |
|
---|
1829 | if (in->a <= 128)
|
---|
1830 | {
|
---|
1831 | out->r = out->g = out->b = 255;
|
---|
1832 | out->a = 0;
|
---|
1833 | }
|
---|
1834 |
|
---|
1835 | else
|
---|
1836 | {
|
---|
1837 | out->r = sRGB((double)in->r / in->a);
|
---|
1838 | out->g = sRGB((double)in->g / in->a);
|
---|
1839 | out->b = sRGB((double)in->b / in->a);
|
---|
1840 | out->a = u8d(in->a / 257.);
|
---|
1841 | }
|
---|
1842 | }
|
---|
1843 |
|
---|
1844 | /* gb16: composite linear onto background and convert to sRGB grayscale */
|
---|
1845 | /* (order doesn't matter, the composite and grayscale operations permute) */
|
---|
1846 | static void
|
---|
1847 | gpc_gb16(Pixel *out, const Pixel *in, const Background *back)
|
---|
1848 | {
|
---|
1849 | if (in->a <= 0)
|
---|
1850 | out->r = out->g = out->b = back->ig;
|
---|
1851 |
|
---|
1852 | else if (in->a >= 65535)
|
---|
1853 | out->r = out->g = out->b = isRGB(in->g);
|
---|
1854 |
|
---|
1855 | else
|
---|
1856 | {
|
---|
1857 | double a = in->a / 65535.;
|
---|
1858 | double a1 = 1-a;
|
---|
1859 |
|
---|
1860 | a /= 65535;
|
---|
1861 | out->r = out->g = out->b = sRGB(in->g * a + back->dg * a1);
|
---|
1862 | }
|
---|
1863 |
|
---|
1864 | out->a = 255;
|
---|
1865 | }
|
---|
1866 |
|
---|
1867 | /* cb16: composite linear onto background and convert to sRGB */
|
---|
1868 | static void
|
---|
1869 | gpc_cb16(Pixel *out, const Pixel *in, const Background *back)
|
---|
1870 | {
|
---|
1871 | if (in->a <= 0)
|
---|
1872 | {
|
---|
1873 | out->r = back->ir;
|
---|
1874 | out->g = back->ig;
|
---|
1875 | out->b = back->ib;
|
---|
1876 | }
|
---|
1877 |
|
---|
1878 | else if (in->a >= 65535)
|
---|
1879 | {
|
---|
1880 | out->r = isRGB(in->r);
|
---|
1881 | out->g = isRGB(in->g);
|
---|
1882 | out->b = isRGB(in->b);
|
---|
1883 | }
|
---|
1884 |
|
---|
1885 | else
|
---|
1886 | {
|
---|
1887 | double a = in->a / 65535.;
|
---|
1888 | double a1 = 1-a;
|
---|
1889 |
|
---|
1890 | a /= 65535;
|
---|
1891 | out->r = sRGB(in->r * a + back->dr * a1);
|
---|
1892 | out->g = sRGB(in->g * a + back->dg * a1);
|
---|
1893 | out->b = sRGB(in->b * a + back->db * a1);
|
---|
1894 | }
|
---|
1895 |
|
---|
1896 | out->a = 255;
|
---|
1897 | }
|
---|
1898 |
|
---|
1899 | /* 16-bit to 16-bit conversions */
|
---|
1900 | /* A: set alpha to 65535 */
|
---|
1901 | static void
|
---|
1902 | gpc_A(Pixel *out, const Pixel *in, const Background *back)
|
---|
1903 | {
|
---|
1904 | (void)back;
|
---|
1905 | out->r = in->r;
|
---|
1906 | out->g = in->g;
|
---|
1907 | out->b = in->b;
|
---|
1908 | out->a = 65535;
|
---|
1909 | }
|
---|
1910 |
|
---|
1911 | /* g16: convert linear RGB to linear grayscale (alpha := 65535) */
|
---|
1912 | static void
|
---|
1913 | gpc_g16(Pixel *out, const Pixel *in, const Background *back)
|
---|
1914 | {
|
---|
1915 | (void)back;
|
---|
1916 | out->r = out->g = out->b = u16d(YfromRGBint(in->r, in->g, in->b));
|
---|
1917 | out->a = 65535;
|
---|
1918 | }
|
---|
1919 |
|
---|
1920 | /* g16': as 'g16' but alpha is unchanged */
|
---|
1921 | static void
|
---|
1922 | gpc_g16q(Pixel *out, const Pixel *in, const Background *back)
|
---|
1923 | {
|
---|
1924 | (void)back;
|
---|
1925 | out->r = out->g = out->b = u16d(YfromRGBint(in->r, in->g, in->b));
|
---|
1926 | out->a = in->a;
|
---|
1927 | }
|
---|
1928 |
|
---|
1929 | #if ALLOW_UNUSED_GPC
|
---|
1930 | /* Unused functions (to hide them from GCC unused function warnings) */
|
---|
1931 | void (* const gpc_unused[])
|
---|
1932 | (Pixel *out, const Pixel *in, const Background *back) =
|
---|
1933 | {
|
---|
1934 | gpc_Pre, gpc_Preq, gpc_Glin, gpc_Gpre, gpc_Gprq, gpc_nop8, gpc_nop6
|
---|
1935 | };
|
---|
1936 | #endif
|
---|
1937 |
|
---|
1938 | /* OUT: ----- 8-bit ----- ----- 16-bit -----
|
---|
1939 | * IN G GA RGB RGBA G GA RGB RGBA
|
---|
1940 | * 8 G . . . . lin lin lin lin
|
---|
1941 | * 8 GA bckg . bckc . pre' pre pre' pre
|
---|
1942 | * 8 RGB g8 g8 . . glin glin lin lin
|
---|
1943 | * 8 RGBA g8b g8 bckc . gpr' gpre pre' pre
|
---|
1944 | * 16 G sRGB sRGB sRGB sRGB . . . .
|
---|
1945 | * 16 GA b16g unpg b16c unpc A . A .
|
---|
1946 | * 16 RGB sG sG sRGB sRGB g16 g16 . .
|
---|
1947 | * 16 RGBA gb16 sGp cb16 sCp g16 g16' A .
|
---|
1948 | *
|
---|
1949 | * The matrix is held in an array indexed thus:
|
---|
1950 | *
|
---|
1951 | * gpc_fn[out_format & BASE_FORMATS][in_format & BASE_FORMATS];
|
---|
1952 | */
|
---|
1953 | /* This will produce a compile time error if the FORMAT_FLAG values don't
|
---|
1954 | * match the above matrix!
|
---|
1955 | */
|
---|
1956 | #if PNG_FORMAT_FLAG_ALPHA == 1 && PNG_FORMAT_FLAG_COLOR == 2 &&\
|
---|
1957 | PNG_FORMAT_FLAG_LINEAR == 4
|
---|
1958 | static void (* const gpc_fn[8/*in*/][8/*out*/])
|
---|
1959 | (Pixel *out, const Pixel *in, const Background *back) =
|
---|
1960 | {
|
---|
1961 | /*out: G-8 GA-8 RGB-8 RGBA-8 G-16 GA-16 RGB-16 RGBA-16 */
|
---|
1962 | {gpc_noop,gpc_noop,gpc_noop,gpc_noop, gpc_Lin, gpc_Lin, gpc_Lin, gpc_Lin },
|
---|
1963 | {gpc_bckg,gpc_noop,gpc_bckc,gpc_noop, gpc_preq,gpc_pre, gpc_preq,gpc_pre },
|
---|
1964 | {gpc_g8, gpc_g8, gpc_noop,gpc_noop, gpc_glin,gpc_glin,gpc_lin, gpc_lin },
|
---|
1965 | {gpc_g8b, gpc_g8, gpc_bckc,gpc_noop, gpc_gprq,gpc_gpre,gpc_preq,gpc_pre },
|
---|
1966 | {gpc_sRGB,gpc_sRGB,gpc_sRGB,gpc_sRGB, gpc_noop,gpc_noop,gpc_noop,gpc_noop},
|
---|
1967 | {gpc_b16g,gpc_unpg,gpc_b16c,gpc_unpc, gpc_A, gpc_noop,gpc_A, gpc_noop},
|
---|
1968 | {gpc_sG, gpc_sG, gpc_sRGB,gpc_sRGB, gpc_g16, gpc_g16, gpc_noop,gpc_noop},
|
---|
1969 | {gpc_gb16,gpc_sGp, gpc_cb16,gpc_sCp, gpc_g16, gpc_g16q,gpc_A, gpc_noop}
|
---|
1970 | };
|
---|
1971 |
|
---|
1972 | /* The array is repeated for the cases where both the input and output are color
|
---|
1973 | * mapped because then different algorithms are used.
|
---|
1974 | */
|
---|
1975 | static void (* const gpc_fn_colormapped[8/*in*/][8/*out*/])
|
---|
1976 | (Pixel *out, const Pixel *in, const Background *back) =
|
---|
1977 | {
|
---|
1978 | /*out: G-8 GA-8 RGB-8 RGBA-8 G-16 GA-16 RGB-16 RGBA-16 */
|
---|
1979 | {gpc_noop,gpc_noop,gpc_noop,gpc_noop, gpc_lin, gpc_lin, gpc_lin, gpc_lin },
|
---|
1980 | {gpc_bckg,gpc_noop,gpc_bckc,gpc_noop, gpc_preq,gpc_pre, gpc_preq,gpc_pre },
|
---|
1981 | {gpc_g8, gpc_g8, gpc_noop,gpc_noop, gpc_glin,gpc_glin,gpc_lin, gpc_lin },
|
---|
1982 | {gpc_g8b, gpc_g8, gpc_bckc,gpc_noop, gpc_gprq,gpc_gpre,gpc_preq,gpc_pre },
|
---|
1983 | {gpc_sRGB,gpc_sRGB,gpc_sRGB,gpc_sRGB, gpc_noop,gpc_noop,gpc_noop,gpc_noop},
|
---|
1984 | {gpc_b16g,gpc_unpg,gpc_b16c,gpc_unpc, gpc_A, gpc_noop,gpc_A, gpc_noop},
|
---|
1985 | {gpc_sG, gpc_sG, gpc_sRGB,gpc_sRGB, gpc_g16, gpc_g16, gpc_noop,gpc_noop},
|
---|
1986 | {gpc_gb16,gpc_sGp, gpc_cb16,gpc_sCp, gpc_g16, gpc_g16q,gpc_A, gpc_noop}
|
---|
1987 | };
|
---|
1988 |
|
---|
1989 | /* The error arrays record the error in the same matrix; 64 entries, however
|
---|
1990 | * the different algorithms used in libpng for colormap and direct conversions
|
---|
1991 | * mean that four separate matrices are used (for each combination of
|
---|
1992 | * colormapped and direct.)
|
---|
1993 | *
|
---|
1994 | * In some cases the conversion between sRGB formats goes via a linear
|
---|
1995 | * intermediate; an sRGB to linear conversion (as above) is followed by a simple
|
---|
1996 | * linear to sRGB step with no other conversions. This is done by a separate
|
---|
1997 | * error array from an arbitrary 'in' format to one of the four basic outputs
|
---|
1998 | * (since final output is always sRGB not colormapped).
|
---|
1999 | *
|
---|
2000 | * These arrays may be modified if the --accumulate flag is set during the run;
|
---|
2001 | * then instead of logging errors they are simply added in.
|
---|
2002 | *
|
---|
2003 | * The three entries are currently for transparent, partially transparent and
|
---|
2004 | * opaque input pixel values. Notice that alpha should be exact in each case.
|
---|
2005 | *
|
---|
2006 | * Errors in alpha should only occur when converting from a direct format
|
---|
2007 | * to a colormapped format, when alpha is effectively smashed (so large
|
---|
2008 | * errors can occur.) There should be no error in the '0' and 'opaque'
|
---|
2009 | * values. The fourth entry in the array is used for the alpha error (and it
|
---|
2010 | * should always be zero for the 'via linear' case since this is never color
|
---|
2011 | * mapped.)
|
---|
2012 | *
|
---|
2013 | * Mapping to a colormap smashes the colors, it is necessary to have separate
|
---|
2014 | * values for these cases because they are much larger; it is very much
|
---|
2015 | * impossible to obtain a reasonable result, these are held in
|
---|
2016 | * gpc_error_to_colormap.
|
---|
2017 | */
|
---|
2018 | #if PNG_FORMAT_FLAG_COLORMAP == 8 /* extra check also required */
|
---|
2019 | # include "pngstest-errors.h" /* machine generated */
|
---|
2020 | #endif /* COLORMAP flag check */
|
---|
2021 | #endif /* flag checks */
|
---|
2022 |
|
---|
2023 | typedef struct
|
---|
2024 | {
|
---|
2025 | /* Basic pixel information: */
|
---|
2026 | Image* in_image; /* Input image */
|
---|
2027 | const Image* out_image; /* Output image */
|
---|
2028 |
|
---|
2029 | /* 'background' is the value passed to the gpc_ routines, it may be NULL if
|
---|
2030 | * it should not be used (*this* program has an error if it crashes as a
|
---|
2031 | * result!)
|
---|
2032 | */
|
---|
2033 | Background background_color;
|
---|
2034 | const Background* background;
|
---|
2035 |
|
---|
2036 | /* Precalculated values: */
|
---|
2037 | int in_opaque; /* Value of input alpha that is opaque */
|
---|
2038 | int is_palette; /* Sample values come from the palette */
|
---|
2039 | int accumulate; /* Accumulate component errors (don't log) */
|
---|
2040 | int output_8bit; /* Output is 8-bit (else 16-bit) */
|
---|
2041 |
|
---|
2042 | void (*in_gp)(Pixel*, png_const_voidp);
|
---|
2043 | void (*out_gp)(Pixel*, png_const_voidp);
|
---|
2044 |
|
---|
2045 | void (*transform)(Pixel *out, const Pixel *in, const Background *back);
|
---|
2046 | /* A function to perform the required transform */
|
---|
2047 |
|
---|
2048 | void (*from_linear)(Pixel *out, const Pixel *in, const Background *back);
|
---|
2049 | /* For 'via_linear' transforms the final, from linear, step, else NULL */
|
---|
2050 |
|
---|
2051 | png_uint_16 error[4];
|
---|
2052 | /* Three error values for transparent, partially transparent and opaque
|
---|
2053 | * input pixels (in turn).
|
---|
2054 | */
|
---|
2055 |
|
---|
2056 | png_uint_16 *error_ptr;
|
---|
2057 | /* Where these are stored in the static array (for 'accumulate') */
|
---|
2058 | }
|
---|
2059 | Transform;
|
---|
2060 |
|
---|
2061 | /* Return a 'transform' as above for the given format conversion. */
|
---|
2062 | static void
|
---|
2063 | transform_from_formats(Transform *result, Image *in_image,
|
---|
2064 | const Image *out_image, png_const_colorp background, int via_linear)
|
---|
2065 | {
|
---|
2066 | png_uint_32 in_format, out_format;
|
---|
2067 | png_uint_32 in_base, out_base;
|
---|
2068 |
|
---|
2069 | memset(result, 0, sizeof *result);
|
---|
2070 |
|
---|
2071 | /* Store the original images for error messages */
|
---|
2072 | result->in_image = in_image;
|
---|
2073 | result->out_image = out_image;
|
---|
2074 |
|
---|
2075 | in_format = in_image->image.format;
|
---|
2076 | out_format = out_image->image.format;
|
---|
2077 |
|
---|
2078 | if (in_format & PNG_FORMAT_FLAG_LINEAR)
|
---|
2079 | result->in_opaque = 65535;
|
---|
2080 | else
|
---|
2081 | result->in_opaque = 255;
|
---|
2082 |
|
---|
2083 | result->output_8bit = (out_format & PNG_FORMAT_FLAG_LINEAR) == 0;
|
---|
2084 |
|
---|
2085 | result->is_palette = 0; /* set by caller if required */
|
---|
2086 | result->accumulate = (in_image->opts & ACCUMULATE) != 0;
|
---|
2087 |
|
---|
2088 | /* The loaders (which need the ordering information) */
|
---|
2089 | result->in_gp = get_pixel(in_format);
|
---|
2090 | result->out_gp = get_pixel(out_format);
|
---|
2091 |
|
---|
2092 | /* Remove the ordering information: */
|
---|
2093 | in_format &= BASE_FORMATS | PNG_FORMAT_FLAG_COLORMAP;
|
---|
2094 | in_base = in_format & BASE_FORMATS;
|
---|
2095 | out_format &= BASE_FORMATS | PNG_FORMAT_FLAG_COLORMAP;
|
---|
2096 | out_base = out_format & BASE_FORMATS;
|
---|
2097 |
|
---|
2098 | if (via_linear)
|
---|
2099 | {
|
---|
2100 | /* Check for an error in this program: */
|
---|
2101 | if (out_format & (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLORMAP))
|
---|
2102 | {
|
---|
2103 | fprintf(stderr, "internal transform via linear error 0x%x->0x%x\n",
|
---|
2104 | in_format, out_format);
|
---|
2105 | exit(1);
|
---|
2106 | }
|
---|
2107 |
|
---|
2108 | result->transform = gpc_fn[in_base][out_base | PNG_FORMAT_FLAG_LINEAR];
|
---|
2109 | result->from_linear = gpc_fn[out_base | PNG_FORMAT_FLAG_LINEAR][out_base];
|
---|
2110 | result->error_ptr = gpc_error_via_linear[in_format][out_format];
|
---|
2111 | }
|
---|
2112 |
|
---|
2113 | else if (~in_format & out_format & PNG_FORMAT_FLAG_COLORMAP)
|
---|
2114 | {
|
---|
2115 | /* The input is not colormapped but the output is, the errors will
|
---|
2116 | * typically be large (only the grayscale-no-alpha case permits preserving
|
---|
2117 | * even 8-bit values.)
|
---|
2118 | */
|
---|
2119 | result->transform = gpc_fn[in_base][out_base];
|
---|
2120 | result->from_linear = NULL;
|
---|
2121 | result->error_ptr = gpc_error_to_colormap[in_base][out_base];
|
---|
2122 | }
|
---|
2123 |
|
---|
2124 | else
|
---|
2125 | {
|
---|
2126 | /* The caller handles the colormap->pixel value conversion, so the
|
---|
2127 | * transform function just gets a pixel value, however because libpng
|
---|
2128 | * currently contains a different implementation for mapping a colormap if
|
---|
2129 | * both input and output are colormapped we need different conversion
|
---|
2130 | * functions to deal with errors in the libpng implementation.
|
---|
2131 | */
|
---|
2132 | if (in_format & out_format & PNG_FORMAT_FLAG_COLORMAP)
|
---|
2133 | result->transform = gpc_fn_colormapped[in_base][out_base];
|
---|
2134 | else
|
---|
2135 | result->transform = gpc_fn[in_base][out_base];
|
---|
2136 | result->from_linear = NULL;
|
---|
2137 | result->error_ptr = gpc_error[in_format][out_format];
|
---|
2138 | }
|
---|
2139 |
|
---|
2140 | /* Follow the libpng simplified API rules to work out what to pass to the gpc
|
---|
2141 | * routines as a background value, if one is not required pass NULL so that
|
---|
2142 | * this program crashes in the even of a programming error.
|
---|
2143 | */
|
---|
2144 | result->background = NULL; /* default: not required */
|
---|
2145 |
|
---|
2146 | /* Rule 1: background only need be supplied if alpha is to be removed */
|
---|
2147 | if (in_format & ~out_format & PNG_FORMAT_FLAG_ALPHA)
|
---|
2148 | {
|
---|
2149 | /* The input value is 'NULL' to use the background and (otherwise) an sRGB
|
---|
2150 | * background color (to use a solid color). The code above uses a fixed
|
---|
2151 | * byte value, BUFFER_INIT8, for buffer even for 16-bit output. For
|
---|
2152 | * linear (16-bit) output the sRGB background color is ignored; the
|
---|
2153 | * composition is always on the background (so BUFFER_INIT8 * 257), except
|
---|
2154 | * that for the colormap (i.e. linear colormapped output) black is used.
|
---|
2155 | */
|
---|
2156 | result->background = &result->background_color;
|
---|
2157 |
|
---|
2158 | if (out_format & PNG_FORMAT_FLAG_LINEAR || via_linear)
|
---|
2159 | {
|
---|
2160 | if (out_format & PNG_FORMAT_FLAG_COLORMAP)
|
---|
2161 | {
|
---|
2162 | result->background_color.ir =
|
---|
2163 | result->background_color.ig =
|
---|
2164 | result->background_color.ib = 0;
|
---|
2165 | result->background_color.dr =
|
---|
2166 | result->background_color.dg =
|
---|
2167 | result->background_color.db = 0;
|
---|
2168 | }
|
---|
2169 |
|
---|
2170 | else
|
---|
2171 | {
|
---|
2172 | result->background_color.ir =
|
---|
2173 | result->background_color.ig =
|
---|
2174 | result->background_color.ib = BUFFER_INIT8 * 257;
|
---|
2175 | result->background_color.dr =
|
---|
2176 | result->background_color.dg =
|
---|
2177 | result->background_color.db = 0;
|
---|
2178 | }
|
---|
2179 | }
|
---|
2180 |
|
---|
2181 | else /* sRGB output */
|
---|
2182 | {
|
---|
2183 | if (background != NULL)
|
---|
2184 | {
|
---|
2185 | if (out_format & PNG_FORMAT_FLAG_COLOR)
|
---|
2186 | {
|
---|
2187 | result->background_color.ir = background->red;
|
---|
2188 | result->background_color.ig = background->green;
|
---|
2189 | result->background_color.ib = background->blue;
|
---|
2190 | /* TODO: sometimes libpng uses the power law conversion here, how
|
---|
2191 | * to handle this?
|
---|
2192 | */
|
---|
2193 | result->background_color.dr = sRGB_to_d[background->red];
|
---|
2194 | result->background_color.dg = sRGB_to_d[background->green];
|
---|
2195 | result->background_color.db = sRGB_to_d[background->blue];
|
---|
2196 | }
|
---|
2197 |
|
---|
2198 | else /* grayscale: libpng only looks at 'g' */
|
---|
2199 | {
|
---|
2200 | result->background_color.ir =
|
---|
2201 | result->background_color.ig =
|
---|
2202 | result->background_color.ib = background->green;
|
---|
2203 | /* TODO: sometimes libpng uses the power law conversion here, how
|
---|
2204 | * to handle this?
|
---|
2205 | */
|
---|
2206 | result->background_color.dr =
|
---|
2207 | result->background_color.dg =
|
---|
2208 | result->background_color.db = sRGB_to_d[background->green];
|
---|
2209 | }
|
---|
2210 | }
|
---|
2211 |
|
---|
2212 | else if ((out_format & PNG_FORMAT_FLAG_COLORMAP) == 0)
|
---|
2213 | {
|
---|
2214 | result->background_color.ir =
|
---|
2215 | result->background_color.ig =
|
---|
2216 | result->background_color.ib = BUFFER_INIT8;
|
---|
2217 | /* TODO: sometimes libpng uses the power law conversion here, how
|
---|
2218 | * to handle this?
|
---|
2219 | */
|
---|
2220 | result->background_color.dr =
|
---|
2221 | result->background_color.dg =
|
---|
2222 | result->background_color.db = sRGB_to_d[BUFFER_INIT8];
|
---|
2223 | }
|
---|
2224 |
|
---|
2225 | /* Else the output is colormapped and a background color must be
|
---|
2226 | * provided; if pngstest crashes then that is a bug in this program
|
---|
2227 | * (though libpng should png_error as well.)
|
---|
2228 | */
|
---|
2229 | else
|
---|
2230 | result->background = NULL;
|
---|
2231 | }
|
---|
2232 | }
|
---|
2233 |
|
---|
2234 | if (result->background == NULL)
|
---|
2235 | {
|
---|
2236 | result->background_color.ir =
|
---|
2237 | result->background_color.ig =
|
---|
2238 | result->background_color.ib = -1; /* not used */
|
---|
2239 | result->background_color.dr =
|
---|
2240 | result->background_color.dg =
|
---|
2241 | result->background_color.db = 1E30; /* not used */
|
---|
2242 | }
|
---|
2243 |
|
---|
2244 |
|
---|
2245 | /* Copy the error values into the Transform: */
|
---|
2246 | result->error[0] = result->error_ptr[0];
|
---|
2247 | result->error[1] = result->error_ptr[1];
|
---|
2248 | result->error[2] = result->error_ptr[2];
|
---|
2249 | result->error[3] = result->error_ptr[3];
|
---|
2250 | }
|
---|
2251 |
|
---|
2252 |
|
---|
2253 | /* Compare two pixels.
|
---|
2254 | *
|
---|
2255 | * OLD error values:
|
---|
2256 | static int error_to_linear = 811; * by experiment *
|
---|
2257 | static int error_to_linear_grayscale = 424; * by experiment *
|
---|
2258 | static int error_to_sRGB = 6; * by experiment *
|
---|
2259 | static int error_to_sRGB_grayscale = 17; * libpng error by calculation +
|
---|
2260 | 2 by experiment *
|
---|
2261 | static int error_in_compose = 2; * by experiment *
|
---|
2262 | static int error_in_premultiply = 1;
|
---|
2263 | *
|
---|
2264 | * The following is *just* the result of a round trip from 8-bit sRGB to linear
|
---|
2265 | * then back to 8-bit sRGB when it is done by libpng. There are two problems:
|
---|
2266 | *
|
---|
2267 | * 1) libpng currently uses a 2.2 power law with no linear segment, this results
|
---|
2268 | * in instability in the low values and even with 16-bit precision sRGB(1) ends
|
---|
2269 | * up mapping to sRGB(0) as a result of rounding in the 16-bit representation.
|
---|
2270 | * This gives an error of 1 in the handling of value 1 only.
|
---|
2271 | *
|
---|
2272 | * 2) libpng currently uses an intermediate 8-bit linear value in gamma
|
---|
2273 | * correction of 8-bit values. This results in many more errors, the worse of
|
---|
2274 | * which is mapping sRGB(14) to sRGB(0).
|
---|
2275 | *
|
---|
2276 | * The general 'error_via_linear' is more complex because of pre-multiplication,
|
---|
2277 | * this compounds the 8-bit errors according to the alpha value of the pixel.
|
---|
2278 | * As a result 256 values are pre-calculated for error_via_linear.
|
---|
2279 | */
|
---|
2280 | #if 0
|
---|
2281 | static int error_in_libpng_gamma;
|
---|
2282 | static int error_via_linear[256]; /* Indexed by 8-bit alpha */
|
---|
2283 |
|
---|
2284 | static void
|
---|
2285 | init_error_via_linear(void)
|
---|
2286 | {
|
---|
2287 | int alpha;
|
---|
2288 |
|
---|
2289 | error_via_linear[0] = 255; /* transparent pixel */
|
---|
2290 |
|
---|
2291 | for (alpha=1; alpha<=255; ++alpha)
|
---|
2292 | {
|
---|
2293 | /* 16-bit values less than 128.5 get rounded to 8-bit 0 and so the worst
|
---|
2294 | * case error arises with 16-bit 128.5, work out what sRGB
|
---|
2295 | * (non-associated) value generates 128.5; any value less than this is
|
---|
2296 | * going to map to 0, so the worst error is floor(value).
|
---|
2297 | *
|
---|
2298 | * Note that errors are considerably higher (more than a factor of 2)
|
---|
2299 | * because libpng uses a simple power law for sRGB data at present.
|
---|
2300 | *
|
---|
2301 | * Add .1 for arithmetic errors inside libpng.
|
---|
2302 | */
|
---|
2303 | double v = floor(255*pow(.5/*(128.5 * 255 / 65535)*/ / alpha, 1/2.2)+.1);
|
---|
2304 |
|
---|
2305 | error_via_linear[alpha] = (int)v;
|
---|
2306 | }
|
---|
2307 |
|
---|
2308 | /* This is actually 14.99, but, despite the closeness to 15, 14 seems to work
|
---|
2309 | * ok in this case.
|
---|
2310 | */
|
---|
2311 | error_in_libpng_gamma = 14;
|
---|
2312 | }
|
---|
2313 | #endif
|
---|
2314 |
|
---|
2315 | static void
|
---|
2316 | print_pixel(char string[64], const Pixel *pixel, png_uint_32 format)
|
---|
2317 | {
|
---|
2318 | switch (format & (PNG_FORMAT_FLAG_ALPHA|PNG_FORMAT_FLAG_COLOR))
|
---|
2319 | {
|
---|
2320 | case 0:
|
---|
2321 | sprintf(string, "%s(%d)", format_names[format], pixel->g);
|
---|
2322 | break;
|
---|
2323 |
|
---|
2324 | case PNG_FORMAT_FLAG_ALPHA:
|
---|
2325 | sprintf(string, "%s(%d,%d)", format_names[format], pixel->g,
|
---|
2326 | pixel->a);
|
---|
2327 | break;
|
---|
2328 |
|
---|
2329 | case PNG_FORMAT_FLAG_COLOR:
|
---|
2330 | sprintf(string, "%s(%d,%d,%d)", format_names[format],
|
---|
2331 | pixel->r, pixel->g, pixel->b);
|
---|
2332 | break;
|
---|
2333 |
|
---|
2334 | case PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_ALPHA:
|
---|
2335 | sprintf(string, "%s(%d,%d,%d,%d)", format_names[format],
|
---|
2336 | pixel->r, pixel->g, pixel->b, pixel->a);
|
---|
2337 | break;
|
---|
2338 |
|
---|
2339 | default:
|
---|
2340 | sprintf(string, "invalid-format");
|
---|
2341 | break;
|
---|
2342 | }
|
---|
2343 | }
|
---|
2344 |
|
---|
2345 | static int
|
---|
2346 | logpixel(const Transform *transform, png_uint_32 x, png_uint_32 y,
|
---|
2347 | const Pixel *in, const Pixel *calc, const Pixel *out, const char *reason)
|
---|
2348 | {
|
---|
2349 | png_uint_32 in_format = transform->in_image->image.format;
|
---|
2350 | png_uint_32 out_format = transform->out_image->image.format;
|
---|
2351 |
|
---|
2352 | png_uint_32 back_format = out_format & ~PNG_FORMAT_FLAG_ALPHA;
|
---|
2353 | const char *via_linear = "";
|
---|
2354 |
|
---|
2355 | char pixel_in[64], pixel_calc[64], pixel_out[64], pixel_loc[64];
|
---|
2356 | char background_info[100];
|
---|
2357 |
|
---|
2358 | print_pixel(pixel_in, in, in_format);
|
---|
2359 | print_pixel(pixel_calc, calc, out_format);
|
---|
2360 | print_pixel(pixel_out, out, out_format);
|
---|
2361 |
|
---|
2362 | if (transform->is_palette)
|
---|
2363 | sprintf(pixel_loc, "palette: %lu", (unsigned long)y);
|
---|
2364 | else
|
---|
2365 | sprintf(pixel_loc, "%lu,%lu", (unsigned long)x, (unsigned long)y);
|
---|
2366 |
|
---|
2367 | if (transform->from_linear != NULL)
|
---|
2368 | {
|
---|
2369 | via_linear = " (via linear)";
|
---|
2370 | /* And as a result the *read* format which did any background processing
|
---|
2371 | * was itself linear, so the background color information is also
|
---|
2372 | * linear.
|
---|
2373 | */
|
---|
2374 | back_format |= PNG_FORMAT_FLAG_LINEAR;
|
---|
2375 | }
|
---|
2376 |
|
---|
2377 | if (transform->background != NULL)
|
---|
2378 | {
|
---|
2379 | Pixel back;
|
---|
2380 | char pixel_back[64];
|
---|
2381 |
|
---|
2382 | back.r = transform->background->ir;
|
---|
2383 | back.g = transform->background->ig;
|
---|
2384 | back.b = transform->background->ib;
|
---|
2385 | back.a = -1; /* not used */
|
---|
2386 |
|
---|
2387 | print_pixel(pixel_back, &back, back_format);
|
---|
2388 | sprintf(background_info, " on background %s", pixel_back);
|
---|
2389 | }
|
---|
2390 |
|
---|
2391 | else
|
---|
2392 | background_info[0] = 0;
|
---|
2393 |
|
---|
2394 | if (transform->in_image->file_name != transform->out_image->file_name)
|
---|
2395 | {
|
---|
2396 | char error_buffer[512];
|
---|
2397 | sprintf(error_buffer,
|
---|
2398 | "(%s) %s error%s:\n %s%s ->\n %s\n not: %s.\n"
|
---|
2399 | "Use --preserve and examine: ", pixel_loc, reason, via_linear,
|
---|
2400 | pixel_in, background_info, pixel_out, pixel_calc);
|
---|
2401 | return logerror(transform->in_image, transform->in_image->file_name,
|
---|
2402 | error_buffer, transform->out_image->file_name);
|
---|
2403 | }
|
---|
2404 |
|
---|
2405 | else
|
---|
2406 | {
|
---|
2407 | char error_buffer[512];
|
---|
2408 | sprintf(error_buffer,
|
---|
2409 | "(%s) %s error%s:\n %s%s ->\n %s\n not: %s.\n"
|
---|
2410 | " The error happened when reading the original file with this format.",
|
---|
2411 | pixel_loc, reason, via_linear, pixel_in, background_info, pixel_out,
|
---|
2412 | pixel_calc);
|
---|
2413 | return logerror(transform->in_image, transform->in_image->file_name,
|
---|
2414 | error_buffer, "");
|
---|
2415 | }
|
---|
2416 | }
|
---|
2417 |
|
---|
2418 | static int
|
---|
2419 | cmppixel(Transform *transform, png_const_voidp in, png_const_voidp out,
|
---|
2420 | png_uint_32 x, png_uint_32 y/*or palette index*/)
|
---|
2421 | {
|
---|
2422 | int maxerr;
|
---|
2423 | png_const_charp errmsg;
|
---|
2424 | Pixel pixel_in, pixel_calc, pixel_out;
|
---|
2425 |
|
---|
2426 | transform->in_gp(&pixel_in, in);
|
---|
2427 |
|
---|
2428 | if (transform->from_linear == NULL)
|
---|
2429 | transform->transform(&pixel_calc, &pixel_in, transform->background);
|
---|
2430 |
|
---|
2431 | else
|
---|
2432 | {
|
---|
2433 | transform->transform(&pixel_out, &pixel_in, transform->background);
|
---|
2434 | transform->from_linear(&pixel_calc, &pixel_out, NULL);
|
---|
2435 | }
|
---|
2436 |
|
---|
2437 | transform->out_gp(&pixel_out, out);
|
---|
2438 |
|
---|
2439 | /* Eliminate the case where the input and output values match exactly. */
|
---|
2440 | if (pixel_calc.a == pixel_out.a && pixel_calc.r == pixel_out.r &&
|
---|
2441 | pixel_calc.g == pixel_out.g && pixel_calc.b == pixel_out.b)
|
---|
2442 | return 1;
|
---|
2443 |
|
---|
2444 | /* Eliminate the case where the output pixel is transparent and the output
|
---|
2445 | * is 8-bit - any component values are valid. Don't check the input alpha
|
---|
2446 | * here to also skip the 16-bit small alpha cases.
|
---|
2447 | */
|
---|
2448 | if (transform->output_8bit && pixel_calc.a == 0 && pixel_out.a == 0)
|
---|
2449 | return 1;
|
---|
2450 |
|
---|
2451 | /* Check for alpha errors first; an alpha error can damage the components too
|
---|
2452 | * so avoid spurious checks on components if one is found.
|
---|
2453 | */
|
---|
2454 | errmsg = NULL;
|
---|
2455 | {
|
---|
2456 | int err_a = abs(pixel_calc.a-pixel_out.a);
|
---|
2457 |
|
---|
2458 | if (err_a > transform->error[3])
|
---|
2459 | {
|
---|
2460 | /* If accumulating check the components too */
|
---|
2461 | if (transform->accumulate)
|
---|
2462 | transform->error[3] = (png_uint_16)err_a;
|
---|
2463 |
|
---|
2464 | else
|
---|
2465 | errmsg = "alpha";
|
---|
2466 | }
|
---|
2467 | }
|
---|
2468 |
|
---|
2469 | /* Now if *either* of the output alphas are 0 but alpha is within tolerance
|
---|
2470 | * eliminate the 8-bit component comparison.
|
---|
2471 | */
|
---|
2472 | if (errmsg == NULL && transform->output_8bit &&
|
---|
2473 | (pixel_calc.a == 0 || pixel_out.a == 0))
|
---|
2474 | return 1;
|
---|
2475 |
|
---|
2476 | if (errmsg == NULL) /* else just signal an alpha error */
|
---|
2477 | {
|
---|
2478 | int err_r = abs(pixel_calc.r - pixel_out.r);
|
---|
2479 | int err_g = abs(pixel_calc.g - pixel_out.g);
|
---|
2480 | int err_b = abs(pixel_calc.b - pixel_out.b);
|
---|
2481 | int limit;
|
---|
2482 |
|
---|
2483 | if ((err_r | err_g | err_b) == 0)
|
---|
2484 | return 1; /* exact match */
|
---|
2485 |
|
---|
2486 | /* Mismatch on a component, check the input alpha */
|
---|
2487 | if (pixel_in.a >= transform->in_opaque)
|
---|
2488 | {
|
---|
2489 | errmsg = "opaque component";
|
---|
2490 | limit = 2; /* opaque */
|
---|
2491 | }
|
---|
2492 |
|
---|
2493 | else if (pixel_in.a > 0)
|
---|
2494 | {
|
---|
2495 | errmsg = "alpha component";
|
---|
2496 | limit = 1; /* partially transparent */
|
---|
2497 | }
|
---|
2498 |
|
---|
2499 | else
|
---|
2500 | {
|
---|
2501 | errmsg = "transparent component (background)";
|
---|
2502 | limit = 0; /* transparent */
|
---|
2503 | }
|
---|
2504 |
|
---|
2505 | maxerr = err_r;
|
---|
2506 | if (maxerr < err_g) maxerr = err_g;
|
---|
2507 | if (maxerr < err_b) maxerr = err_b;
|
---|
2508 |
|
---|
2509 | if (maxerr <= transform->error[limit])
|
---|
2510 | return 1; /* within the error limits */
|
---|
2511 |
|
---|
2512 | /* Handle a component mis-match; log it, just return an error code, or
|
---|
2513 | * accumulate it.
|
---|
2514 | */
|
---|
2515 | if (transform->accumulate)
|
---|
2516 | {
|
---|
2517 | transform->error[limit] = (png_uint_16)maxerr;
|
---|
2518 | return 1; /* to cause the caller to keep going */
|
---|
2519 | }
|
---|
2520 | }
|
---|
2521 |
|
---|
2522 | /* Failure to match and not accumulating, so the error must be logged. */
|
---|
2523 | return logpixel(transform, x, y, &pixel_in, &pixel_calc, &pixel_out, errmsg);
|
---|
2524 | }
|
---|
2525 |
|
---|
2526 | static png_byte
|
---|
2527 | component_loc(png_byte loc[4], png_uint_32 format)
|
---|
2528 | {
|
---|
2529 | /* Given a format return the number of channels and the location of
|
---|
2530 | * each channel.
|
---|
2531 | *
|
---|
2532 | * The mask 'loc' contains the component offset of the channels in the
|
---|
2533 | * following order. Note that if 'format' is grayscale the entries 1-3 must
|
---|
2534 | * all contain the location of the gray channel.
|
---|
2535 | *
|
---|
2536 | * 0: alpha
|
---|
2537 | * 1: red or gray
|
---|
2538 | * 2: green or gray
|
---|
2539 | * 3: blue or gray
|
---|
2540 | */
|
---|
2541 | png_byte channels;
|
---|
2542 |
|
---|
2543 | if (format & PNG_FORMAT_FLAG_COLOR)
|
---|
2544 | {
|
---|
2545 | channels = 3;
|
---|
2546 |
|
---|
2547 | loc[2] = 1;
|
---|
2548 |
|
---|
2549 | # ifdef PNG_FORMAT_BGR_SUPPORTED
|
---|
2550 | if (format & PNG_FORMAT_FLAG_BGR)
|
---|
2551 | {
|
---|
2552 | loc[1] = 2;
|
---|
2553 | loc[3] = 0;
|
---|
2554 | }
|
---|
2555 |
|
---|
2556 | else
|
---|
2557 | # endif
|
---|
2558 | {
|
---|
2559 | loc[1] = 0;
|
---|
2560 | loc[3] = 2;
|
---|
2561 | }
|
---|
2562 | }
|
---|
2563 |
|
---|
2564 | else
|
---|
2565 | {
|
---|
2566 | channels = 1;
|
---|
2567 | loc[1] = loc[2] = loc[3] = 0;
|
---|
2568 | }
|
---|
2569 |
|
---|
2570 | if (format & PNG_FORMAT_FLAG_ALPHA)
|
---|
2571 | {
|
---|
2572 | # ifdef PNG_FORMAT_AFIRST_SUPPORTED
|
---|
2573 | if (format & PNG_FORMAT_FLAG_AFIRST)
|
---|
2574 | {
|
---|
2575 | loc[0] = 0;
|
---|
2576 | ++loc[1];
|
---|
2577 | ++loc[2];
|
---|
2578 | ++loc[3];
|
---|
2579 | }
|
---|
2580 |
|
---|
2581 | else
|
---|
2582 | # endif
|
---|
2583 | loc[0] = channels;
|
---|
2584 |
|
---|
2585 | ++channels;
|
---|
2586 | }
|
---|
2587 |
|
---|
2588 | else
|
---|
2589 | loc[0] = 4; /* not present */
|
---|
2590 |
|
---|
2591 | return channels;
|
---|
2592 | }
|
---|
2593 |
|
---|
2594 | /* Compare two images, the original 'a', which was written out then read back in
|
---|
2595 | * to * give image 'b'. The formats may have been changed.
|
---|
2596 | */
|
---|
2597 | static int
|
---|
2598 | compare_two_images(Image *a, Image *b, int via_linear,
|
---|
2599 | png_const_colorp background)
|
---|
2600 | {
|
---|
2601 | ptrdiff_t stridea = a->stride;
|
---|
2602 | ptrdiff_t strideb = b->stride;
|
---|
2603 | png_const_bytep rowa = a->buffer+16;
|
---|
2604 | png_const_bytep rowb = b->buffer+16;
|
---|
2605 | png_uint_32 width = a->image.width;
|
---|
2606 | png_uint_32 height = a->image.height;
|
---|
2607 | png_uint_32 formata = a->image.format;
|
---|
2608 | png_uint_32 formatb = b->image.format;
|
---|
2609 | unsigned int a_sample = PNG_IMAGE_SAMPLE_SIZE(formata);
|
---|
2610 | unsigned int b_sample = PNG_IMAGE_SAMPLE_SIZE(formatb);
|
---|
2611 | int alpha_added, alpha_removed;
|
---|
2612 | int bchannels;
|
---|
2613 | png_uint_32 y;
|
---|
2614 | Transform tr;
|
---|
2615 | int btoa[4]={0,0,0,0};
|
---|
2616 |
|
---|
2617 | /* This should never happen: */
|
---|
2618 | if (width != b->image.width || height != b->image.height)
|
---|
2619 | return logerror(a, a->file_name, ": width x height changed: ",
|
---|
2620 | b->file_name);
|
---|
2621 |
|
---|
2622 | /* Set up the background and the transform */
|
---|
2623 | transform_from_formats(&tr, a, b, background, via_linear);
|
---|
2624 |
|
---|
2625 | /* Find the first row and inter-row space. */
|
---|
2626 | if (!(formata & PNG_FORMAT_FLAG_COLORMAP) &&
|
---|
2627 | (formata & PNG_FORMAT_FLAG_LINEAR))
|
---|
2628 | stridea *= 2;
|
---|
2629 |
|
---|
2630 | if (!(formatb & PNG_FORMAT_FLAG_COLORMAP) &&
|
---|
2631 | (formatb & PNG_FORMAT_FLAG_LINEAR))
|
---|
2632 | strideb *= 2;
|
---|
2633 |
|
---|
2634 | if (stridea < 0) rowa += (height-1) * (-stridea);
|
---|
2635 | if (strideb < 0) rowb += (height-1) * (-strideb);
|
---|
2636 |
|
---|
2637 | /* First shortcut the two colormap case by comparing the image data; if it
|
---|
2638 | * matches then we expect the colormaps to match, although this is not
|
---|
2639 | * absolutely necessary for an image match. If the colormaps fail to match
|
---|
2640 | * then there is a problem in libpng.
|
---|
2641 | */
|
---|
2642 | if (formata & formatb & PNG_FORMAT_FLAG_COLORMAP)
|
---|
2643 | {
|
---|
2644 | /* Only check colormap entries that actually exist; */
|
---|
2645 | png_const_bytep ppa, ppb;
|
---|
2646 | int match;
|
---|
2647 | png_byte in_use[256], amax = 0, bmax = 0;
|
---|
2648 |
|
---|
2649 | memset(in_use, 0, sizeof in_use);
|
---|
2650 |
|
---|
2651 | ppa = rowa;
|
---|
2652 | ppb = rowb;
|
---|
2653 |
|
---|
2654 | /* Do this the slow way to accumulate the 'in_use' flags, don't break out
|
---|
2655 | * of the loop until the end; this validates the color-mapped data to
|
---|
2656 | * ensure all pixels are valid color-map indexes.
|
---|
2657 | */
|
---|
2658 | for (y=0, match=1; y<height && match; ++y, ppa += stridea, ppb += strideb)
|
---|
2659 | {
|
---|
2660 | png_uint_32 x;
|
---|
2661 |
|
---|
2662 | for (x=0; x<width; ++x)
|
---|
2663 | {
|
---|
2664 | png_byte bval = ppb[x];
|
---|
2665 | png_byte aval = ppa[x];
|
---|
2666 |
|
---|
2667 | if (bval > bmax)
|
---|
2668 | bmax = bval;
|
---|
2669 |
|
---|
2670 | if (bval != aval)
|
---|
2671 | match = 0;
|
---|
2672 |
|
---|
2673 | in_use[aval] = 1;
|
---|
2674 | if (aval > amax)
|
---|
2675 | amax = aval;
|
---|
2676 | }
|
---|
2677 | }
|
---|
2678 |
|
---|
2679 | /* If the buffers match then the colormaps must too. */
|
---|
2680 | if (match)
|
---|
2681 | {
|
---|
2682 | /* Do the color-maps match, entry by entry? Only check the 'in_use'
|
---|
2683 | * entries. An error here should be logged as a color-map error.
|
---|
2684 | */
|
---|
2685 | png_const_bytep a_cmap = (png_const_bytep)a->colormap;
|
---|
2686 | png_const_bytep b_cmap = (png_const_bytep)b->colormap;
|
---|
2687 | int result = 1; /* match by default */
|
---|
2688 |
|
---|
2689 | /* This is used in logpixel to get the error message correct. */
|
---|
2690 | tr.is_palette = 1;
|
---|
2691 |
|
---|
2692 | for (y=0; y<256; ++y, a_cmap += a_sample, b_cmap += b_sample)
|
---|
2693 | if (in_use[y])
|
---|
2694 | {
|
---|
2695 | /* The colormap entries should be valid, but because libpng doesn't
|
---|
2696 | * do any checking at present the original image may contain invalid
|
---|
2697 | * pixel values. These cause an error here (at present) unless
|
---|
2698 | * accumulating errors in which case the program just ignores them.
|
---|
2699 | */
|
---|
2700 | if (y >= a->image.colormap_entries)
|
---|
2701 | {
|
---|
2702 | if ((a->opts & ACCUMULATE) == 0)
|
---|
2703 | {
|
---|
2704 | char pindex[9];
|
---|
2705 | sprintf(pindex, "%lu[%lu]", (unsigned long)y,
|
---|
2706 | (unsigned long)a->image.colormap_entries);
|
---|
2707 | logerror(a, a->file_name, ": bad pixel index: ", pindex);
|
---|
2708 | }
|
---|
2709 | result = 0;
|
---|
2710 | }
|
---|
2711 |
|
---|
2712 | else if (y >= b->image.colormap_entries)
|
---|
2713 | {
|
---|
2714 | if ((b->opts & ACCUMULATE) == 0)
|
---|
2715 | {
|
---|
2716 | char pindex[9];
|
---|
2717 | sprintf(pindex, "%lu[%lu]", (unsigned long)y,
|
---|
2718 | (unsigned long)b->image.colormap_entries);
|
---|
2719 | logerror(b, b->file_name, ": bad pixel index: ", pindex);
|
---|
2720 | }
|
---|
2721 | result = 0;
|
---|
2722 | }
|
---|
2723 |
|
---|
2724 | /* All the mismatches are logged here; there can only be 256! */
|
---|
2725 | else if (!cmppixel(&tr, a_cmap, b_cmap, 0, y))
|
---|
2726 | result = 0;
|
---|
2727 | }
|
---|
2728 |
|
---|
2729 | /* If requested, copy the error values back from the Transform. */
|
---|
2730 | if (a->opts & ACCUMULATE)
|
---|
2731 | {
|
---|
2732 | tr.error_ptr[0] = tr.error[0];
|
---|
2733 | tr.error_ptr[1] = tr.error[1];
|
---|
2734 | tr.error_ptr[2] = tr.error[2];
|
---|
2735 | tr.error_ptr[3] = tr.error[3];
|
---|
2736 | result = 1; /* force a continue */
|
---|
2737 | }
|
---|
2738 |
|
---|
2739 | return result;
|
---|
2740 | }
|
---|
2741 |
|
---|
2742 | /* else the image buffers don't match pixel-wise so compare sample values
|
---|
2743 | * instead, but first validate that the pixel indexes are in range (but
|
---|
2744 | * only if not accumulating, when the error is ignored.)
|
---|
2745 | */
|
---|
2746 | else if ((a->opts & ACCUMULATE) == 0)
|
---|
2747 | {
|
---|
2748 | # ifdef __GNUC__
|
---|
2749 | # define BYTE_CHARS 20 /* 2^32: GCC sprintf warning */
|
---|
2750 | # else
|
---|
2751 | # define BYTE_CHARS 3 /* 2^8: real maximum value */
|
---|
2752 | # endif
|
---|
2753 | /* Check the original image first,
|
---|
2754 | * TODO: deal with input images with bad pixel values?
|
---|
2755 | */
|
---|
2756 | if (amax >= a->image.colormap_entries)
|
---|
2757 | {
|
---|
2758 | char pindex[3+2*BYTE_CHARS];
|
---|
2759 | sprintf(pindex, "%d[%u]", amax,
|
---|
2760 | (png_byte)/*SAFE*/a->image.colormap_entries);
|
---|
2761 | return logerror(a, a->file_name, ": bad pixel index: ", pindex);
|
---|
2762 | }
|
---|
2763 |
|
---|
2764 | else if (bmax >= b->image.colormap_entries)
|
---|
2765 | {
|
---|
2766 | char pindex[3+2*BYTE_CHARS];
|
---|
2767 | sprintf(pindex, "%d[%u]", bmax,
|
---|
2768 | (png_byte)/*SAFE*/b->image.colormap_entries);
|
---|
2769 | return logerror(b, b->file_name, ": bad pixel index: ", pindex);
|
---|
2770 | }
|
---|
2771 | }
|
---|
2772 | }
|
---|
2773 |
|
---|
2774 | /* We can directly compare pixel values without the need to use the read
|
---|
2775 | * or transform support (i.e. a memory compare) if:
|
---|
2776 | *
|
---|
2777 | * 1) The bit depth has not changed.
|
---|
2778 | * 2) RGB to grayscale has not been done (the reverse is ok; we just compare
|
---|
2779 | * the three RGB values to the original grayscale.)
|
---|
2780 | * 3) An alpha channel has not been removed from an 8-bit format, or the
|
---|
2781 | * 8-bit alpha value of the pixel was 255 (opaque).
|
---|
2782 | *
|
---|
2783 | * If an alpha channel has been *added* then it must have the relevant opaque
|
---|
2784 | * value (255 or 65535).
|
---|
2785 | *
|
---|
2786 | * The fist two the tests (in the order given above) (using the boolean
|
---|
2787 | * equivalence !a && !b == !(a || b))
|
---|
2788 | */
|
---|
2789 | if (!(((formata ^ formatb) & PNG_FORMAT_FLAG_LINEAR) |
|
---|
2790 | (formata & (formatb ^ PNG_FORMAT_FLAG_COLOR) & PNG_FORMAT_FLAG_COLOR)))
|
---|
2791 | {
|
---|
2792 | /* Was an alpha channel changed? */
|
---|
2793 | png_uint_32 alpha_changed = (formata ^ formatb) & PNG_FORMAT_FLAG_ALPHA;
|
---|
2794 |
|
---|
2795 | /* Was an alpha channel removed? (The third test.) If so the direct
|
---|
2796 | * comparison is only possible if the input alpha is opaque.
|
---|
2797 | */
|
---|
2798 | alpha_removed = (formata & alpha_changed) != 0;
|
---|
2799 |
|
---|
2800 | /* Was an alpha channel added? */
|
---|
2801 | alpha_added = (formatb & alpha_changed) != 0;
|
---|
2802 |
|
---|
2803 | /* The channels may have been moved between input and output, this finds
|
---|
2804 | * out how, recording the result in the btoa array, which says where in
|
---|
2805 | * 'a' to find each channel of 'b'. If alpha was added then btoa[alpha]
|
---|
2806 | * ends up as 4 (and is not used.)
|
---|
2807 | */
|
---|
2808 | {
|
---|
2809 | int i;
|
---|
2810 | png_byte aloc[4];
|
---|
2811 | png_byte bloc[4];
|
---|
2812 |
|
---|
2813 | /* The following are used only if the formats match, except that
|
---|
2814 | * 'bchannels' is a flag for matching formats. btoa[x] says, for each
|
---|
2815 | * channel in b, where to find the corresponding value in a, for the
|
---|
2816 | * bchannels. achannels may be different for a gray to rgb transform
|
---|
2817 | * (a will be 1 or 2, b will be 3 or 4 channels.)
|
---|
2818 | */
|
---|
2819 | (void)component_loc(aloc, formata);
|
---|
2820 | bchannels = component_loc(bloc, formatb);
|
---|
2821 |
|
---|
2822 | /* Hence the btoa array. */
|
---|
2823 | for (i=0; i<4; ++i) if (bloc[i] < 4)
|
---|
2824 | btoa[bloc[i]] = aloc[i]; /* may be '4' for alpha */
|
---|
2825 |
|
---|
2826 | if (alpha_added)
|
---|
2827 | alpha_added = bloc[0]; /* location of alpha channel in image b */
|
---|
2828 |
|
---|
2829 | else
|
---|
2830 | alpha_added = 4; /* Won't match an image b channel */
|
---|
2831 |
|
---|
2832 | if (alpha_removed)
|
---|
2833 | alpha_removed = aloc[0]; /* location of alpha channel in image a */
|
---|
2834 |
|
---|
2835 | else
|
---|
2836 | alpha_removed = 4;
|
---|
2837 | }
|
---|
2838 | }
|
---|
2839 |
|
---|
2840 | else
|
---|
2841 | {
|
---|
2842 | /* Direct compare is not possible, cancel out all the corresponding local
|
---|
2843 | * variables.
|
---|
2844 | */
|
---|
2845 | bchannels = 0;
|
---|
2846 | alpha_removed = alpha_added = 4;
|
---|
2847 | btoa[3] = btoa[2] = btoa[1] = btoa[0] = 4; /* 4 == not present */
|
---|
2848 | }
|
---|
2849 |
|
---|
2850 | for (y=0; y<height; ++y, rowa += stridea, rowb += strideb)
|
---|
2851 | {
|
---|
2852 | png_const_bytep ppa, ppb;
|
---|
2853 | png_uint_32 x;
|
---|
2854 |
|
---|
2855 | for (x=0, ppa=rowa, ppb=rowb; x<width; ++x)
|
---|
2856 | {
|
---|
2857 | png_const_bytep psa, psb;
|
---|
2858 |
|
---|
2859 | if (formata & PNG_FORMAT_FLAG_COLORMAP)
|
---|
2860 | psa = (png_const_bytep)a->colormap + a_sample * *ppa++;
|
---|
2861 | else
|
---|
2862 | psa = ppa, ppa += a_sample;
|
---|
2863 |
|
---|
2864 | if (formatb & PNG_FORMAT_FLAG_COLORMAP)
|
---|
2865 | psb = (png_const_bytep)b->colormap + b_sample * *ppb++;
|
---|
2866 | else
|
---|
2867 | psb = ppb, ppb += b_sample;
|
---|
2868 |
|
---|
2869 | /* Do the fast test if possible. */
|
---|
2870 | if (bchannels)
|
---|
2871 | {
|
---|
2872 | /* Check each 'b' channel against either the corresponding 'a'
|
---|
2873 | * channel or the opaque alpha value, as appropriate. If
|
---|
2874 | * alpha_removed value is set (not 4) then also do this only if the
|
---|
2875 | * 'a' alpha channel (alpha_removed) is opaque; only relevant for
|
---|
2876 | * the 8-bit case.
|
---|
2877 | */
|
---|
2878 | if (formatb & PNG_FORMAT_FLAG_LINEAR) /* 16-bit checks */
|
---|
2879 | {
|
---|
2880 | png_const_uint_16p pua = aligncastconst(png_const_uint_16p, psa);
|
---|
2881 | png_const_uint_16p pub = aligncastconst(png_const_uint_16p, psb);
|
---|
2882 |
|
---|
2883 | switch (bchannels)
|
---|
2884 | {
|
---|
2885 | case 4:
|
---|
2886 | if (pua[btoa[3]] != pub[3]) break;
|
---|
2887 | /* FALLTHROUGH */
|
---|
2888 | case 3:
|
---|
2889 | if (pua[btoa[2]] != pub[2]) break;
|
---|
2890 | /* FALLTHROUGH */
|
---|
2891 | case 2:
|
---|
2892 | if (pua[btoa[1]] != pub[1]) break;
|
---|
2893 | /* FALLTHROUGH */
|
---|
2894 | case 1:
|
---|
2895 | if (pua[btoa[0]] != pub[0]) break;
|
---|
2896 | if (alpha_added != 4 && pub[alpha_added] != 65535) break;
|
---|
2897 | continue; /* x loop */
|
---|
2898 | default:
|
---|
2899 | break; /* impossible */
|
---|
2900 | }
|
---|
2901 | }
|
---|
2902 |
|
---|
2903 | else if (alpha_removed == 4 || psa[alpha_removed] == 255)
|
---|
2904 | {
|
---|
2905 | switch (bchannels)
|
---|
2906 | {
|
---|
2907 | case 4:
|
---|
2908 | if (psa[btoa[3]] != psb[3]) break;
|
---|
2909 | /* FALLTHROUGH */
|
---|
2910 | case 3:
|
---|
2911 | if (psa[btoa[2]] != psb[2]) break;
|
---|
2912 | /* FALLTHROUGH */
|
---|
2913 | case 2:
|
---|
2914 | if (psa[btoa[1]] != psb[1]) break;
|
---|
2915 | /* FALLTHROUGH */
|
---|
2916 | case 1:
|
---|
2917 | if (psa[btoa[0]] != psb[0]) break;
|
---|
2918 | if (alpha_added != 4 && psb[alpha_added] != 255) break;
|
---|
2919 | continue; /* x loop */
|
---|
2920 | default:
|
---|
2921 | break; /* impossible */
|
---|
2922 | }
|
---|
2923 | }
|
---|
2924 | }
|
---|
2925 |
|
---|
2926 | /* If we get to here the fast match failed; do the slow match for this
|
---|
2927 | * pixel.
|
---|
2928 | */
|
---|
2929 | if (!cmppixel(&tr, psa, psb, x, y) && (a->opts & KEEP_GOING) == 0)
|
---|
2930 | return 0; /* error case */
|
---|
2931 | }
|
---|
2932 | }
|
---|
2933 |
|
---|
2934 | /* If requested, copy the error values back from the Transform. */
|
---|
2935 | if (a->opts & ACCUMULATE)
|
---|
2936 | {
|
---|
2937 | tr.error_ptr[0] = tr.error[0];
|
---|
2938 | tr.error_ptr[1] = tr.error[1];
|
---|
2939 | tr.error_ptr[2] = tr.error[2];
|
---|
2940 | tr.error_ptr[3] = tr.error[3];
|
---|
2941 | }
|
---|
2942 |
|
---|
2943 | return 1;
|
---|
2944 | }
|
---|
2945 |
|
---|
2946 | /* Read the file; how the read gets done depends on which of input_file and
|
---|
2947 | * input_memory have been set.
|
---|
2948 | */
|
---|
2949 | static int
|
---|
2950 | read_file(Image *image, png_uint_32 format, png_const_colorp background)
|
---|
2951 | {
|
---|
2952 | memset(&image->image, 0, sizeof image->image);
|
---|
2953 | image->image.version = PNG_IMAGE_VERSION;
|
---|
2954 |
|
---|
2955 | if (image->input_memory != NULL)
|
---|
2956 | {
|
---|
2957 | if (!png_image_begin_read_from_memory(&image->image, image->input_memory,
|
---|
2958 | image->input_memory_size))
|
---|
2959 | return logerror(image, "memory init: ", image->file_name, "");
|
---|
2960 | }
|
---|
2961 |
|
---|
2962 | # ifdef PNG_STDIO_SUPPORTED
|
---|
2963 | else if (image->input_file != NULL)
|
---|
2964 | {
|
---|
2965 | if (!png_image_begin_read_from_stdio(&image->image, image->input_file))
|
---|
2966 | return logerror(image, "stdio init: ", image->file_name, "");
|
---|
2967 | }
|
---|
2968 |
|
---|
2969 | else
|
---|
2970 | {
|
---|
2971 | if (!png_image_begin_read_from_file(&image->image, image->file_name))
|
---|
2972 | return logerror(image, "file init: ", image->file_name, "");
|
---|
2973 | }
|
---|
2974 | # else
|
---|
2975 | else
|
---|
2976 | {
|
---|
2977 | return logerror(image, "unsupported file/stdio init: ",
|
---|
2978 | image->file_name, "");
|
---|
2979 | }
|
---|
2980 | # endif
|
---|
2981 |
|
---|
2982 | /* This must be set after the begin_read call: */
|
---|
2983 | if (image->opts & sRGB_16BIT)
|
---|
2984 | image->image.flags |= PNG_IMAGE_FLAG_16BIT_sRGB;
|
---|
2985 |
|
---|
2986 | /* Have an initialized image with all the data we need plus, maybe, an
|
---|
2987 | * allocated file (myfile) or buffer (mybuffer) that need to be freed.
|
---|
2988 | */
|
---|
2989 | {
|
---|
2990 | int result;
|
---|
2991 | png_uint_32 image_format;
|
---|
2992 |
|
---|
2993 | /* Print both original and output formats. */
|
---|
2994 | image_format = image->image.format;
|
---|
2995 |
|
---|
2996 | if (image->opts & VERBOSE)
|
---|
2997 | {
|
---|
2998 | printf("%s %lu x %lu %s -> %s", image->file_name,
|
---|
2999 | (unsigned long)image->image.width,
|
---|
3000 | (unsigned long)image->image.height,
|
---|
3001 | format_names[image_format & FORMAT_MASK],
|
---|
3002 | (format & FORMAT_NO_CHANGE) != 0 || image->image.format == format
|
---|
3003 | ? "no change" : format_names[format & FORMAT_MASK]);
|
---|
3004 |
|
---|
3005 | if (background != NULL)
|
---|
3006 | printf(" background(%d,%d,%d)\n", background->red,
|
---|
3007 | background->green, background->blue);
|
---|
3008 | else
|
---|
3009 | printf("\n");
|
---|
3010 |
|
---|
3011 | fflush(stdout);
|
---|
3012 | }
|
---|
3013 |
|
---|
3014 | /* 'NO_CHANGE' combined with the color-map flag forces the base format
|
---|
3015 | * flags to be set on read to ensure that the original representation is
|
---|
3016 | * not lost in the pass through a colormap format.
|
---|
3017 | */
|
---|
3018 | if ((format & FORMAT_NO_CHANGE) != 0)
|
---|
3019 | {
|
---|
3020 | if ((format & PNG_FORMAT_FLAG_COLORMAP) != 0 &&
|
---|
3021 | (image_format & PNG_FORMAT_FLAG_COLORMAP) != 0)
|
---|
3022 | format = (image_format & ~BASE_FORMATS) | (format & BASE_FORMATS);
|
---|
3023 |
|
---|
3024 | else
|
---|
3025 | format = image_format;
|
---|
3026 | }
|
---|
3027 |
|
---|
3028 | image->image.format = format;
|
---|
3029 |
|
---|
3030 | image->stride = PNG_IMAGE_ROW_STRIDE(image->image) + image->stride_extra;
|
---|
3031 | allocbuffer(image);
|
---|
3032 |
|
---|
3033 | result = png_image_finish_read(&image->image, background,
|
---|
3034 | image->buffer+16, (png_int_32)image->stride, image->colormap);
|
---|
3035 |
|
---|
3036 | checkbuffer(image, image->file_name);
|
---|
3037 |
|
---|
3038 | if (result)
|
---|
3039 | return checkopaque(image);
|
---|
3040 |
|
---|
3041 | else
|
---|
3042 | return logerror(image, image->file_name, ": image read failed", "");
|
---|
3043 | }
|
---|
3044 | }
|
---|
3045 |
|
---|
3046 | /* Reads from a filename, which must be in image->file_name, but uses
|
---|
3047 | * image->opts to choose the method. The file is always read in its native
|
---|
3048 | * format (the one the simplified API suggests).
|
---|
3049 | */
|
---|
3050 | static int
|
---|
3051 | read_one_file(Image *image)
|
---|
3052 | {
|
---|
3053 | if (!(image->opts & USE_FILE) || (image->opts & USE_STDIO))
|
---|
3054 | {
|
---|
3055 | /* memory or stdio. */
|
---|
3056 | FILE *f = fopen(image->file_name, "rb");
|
---|
3057 |
|
---|
3058 | if (f != NULL)
|
---|
3059 | {
|
---|
3060 | if (image->opts & USE_FILE)
|
---|
3061 | image->input_file = f;
|
---|
3062 |
|
---|
3063 | else /* memory */
|
---|
3064 | {
|
---|
3065 | if (fseek(f, 0, SEEK_END) == 0)
|
---|
3066 | {
|
---|
3067 | long int cb = ftell(f);
|
---|
3068 |
|
---|
3069 | if (cb > 0)
|
---|
3070 | {
|
---|
3071 | #ifndef __COVERITY__
|
---|
3072 | if ((unsigned long int)cb <= (size_t)~(size_t)0)
|
---|
3073 | #endif
|
---|
3074 | {
|
---|
3075 | png_bytep b = voidcast(png_bytep, malloc((size_t)cb));
|
---|
3076 |
|
---|
3077 | if (b != NULL)
|
---|
3078 | {
|
---|
3079 | rewind(f);
|
---|
3080 |
|
---|
3081 | if (fread(b, (size_t)cb, 1, f) == 1)
|
---|
3082 | {
|
---|
3083 | fclose(f);
|
---|
3084 | image->input_memory_size = cb;
|
---|
3085 | image->input_memory = b;
|
---|
3086 | }
|
---|
3087 |
|
---|
3088 | else
|
---|
3089 | {
|
---|
3090 | free(b);
|
---|
3091 | return logclose(image, f, image->file_name,
|
---|
3092 | ": read failed: ");
|
---|
3093 | }
|
---|
3094 | }
|
---|
3095 |
|
---|
3096 | else
|
---|
3097 | return logclose(image, f, image->file_name,
|
---|
3098 | ": out of memory: ");
|
---|
3099 | }
|
---|
3100 |
|
---|
3101 | else
|
---|
3102 | return logclose(image, f, image->file_name,
|
---|
3103 | ": file too big for this architecture: ");
|
---|
3104 | /* cb is the length of the file as a (long) and
|
---|
3105 | * this is greater than the maximum amount of
|
---|
3106 | * memory that can be requested from malloc.
|
---|
3107 | */
|
---|
3108 | }
|
---|
3109 |
|
---|
3110 | else if (cb == 0)
|
---|
3111 | return logclose(image, f, image->file_name,
|
---|
3112 | ": zero length: ");
|
---|
3113 |
|
---|
3114 | else
|
---|
3115 | return logclose(image, f, image->file_name,
|
---|
3116 | ": tell failed: ");
|
---|
3117 | }
|
---|
3118 |
|
---|
3119 | else
|
---|
3120 | return logclose(image, f, image->file_name, ": seek failed: ");
|
---|
3121 | }
|
---|
3122 | }
|
---|
3123 |
|
---|
3124 | else
|
---|
3125 | return logerror(image, image->file_name, ": open failed: ",
|
---|
3126 | strerror(errno));
|
---|
3127 | }
|
---|
3128 |
|
---|
3129 | return read_file(image, FORMAT_NO_CHANGE, NULL);
|
---|
3130 | }
|
---|
3131 |
|
---|
3132 | #ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED
|
---|
3133 | static int
|
---|
3134 | write_one_file(Image *output, Image *image, int convert_to_8bit)
|
---|
3135 | {
|
---|
3136 | if (image->opts & FAST_WRITE)
|
---|
3137 | image->image.flags |= PNG_IMAGE_FLAG_FAST;
|
---|
3138 |
|
---|
3139 | if (image->opts & USE_STDIO)
|
---|
3140 | {
|
---|
3141 | #ifdef PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED
|
---|
3142 | #ifndef __COVERITY__
|
---|
3143 | FILE *f = tmpfile();
|
---|
3144 | #else
|
---|
3145 | /* Experimental. Coverity says tmpfile() is insecure because it
|
---|
3146 | * generates predictable names.
|
---|
3147 | *
|
---|
3148 | * It is possible to satisfy Coverity by using mkstemp(); however,
|
---|
3149 | * any platform supporting mkstemp() undoubtedly has a secure tmpfile()
|
---|
3150 | * implementation as well, and doesn't need the fix. Note that
|
---|
3151 | * the fix won't work on platforms that don't support mkstemp().
|
---|
3152 | *
|
---|
3153 | * https://www.securecoding.cert.org/confluence/display/c/
|
---|
3154 | * FIO21-C.+Do+not+create+temporary+files+in+shared+directories
|
---|
3155 | * says that most historic implementations of tmpfile() provide
|
---|
3156 | * only a limited number of possible temporary file names
|
---|
3157 | * (usually 26) before file names are recycled. That article also
|
---|
3158 | * provides a secure solution that unfortunately depends upon mkstemp().
|
---|
3159 | */
|
---|
3160 | char tmpfile[] = "pngstest-XXXXXX";
|
---|
3161 | int filedes;
|
---|
3162 | FILE *f;
|
---|
3163 | umask(0177);
|
---|
3164 | filedes = mkstemp(tmpfile);
|
---|
3165 | if (filedes < 0)
|
---|
3166 | f = NULL;
|
---|
3167 | else
|
---|
3168 | {
|
---|
3169 | f = fdopen(filedes,"w+");
|
---|
3170 | /* Hide the filename immediately and ensure that the file does
|
---|
3171 | * not exist after the program ends
|
---|
3172 | */
|
---|
3173 | (void) unlink(tmpfile);
|
---|
3174 | }
|
---|
3175 | #endif
|
---|
3176 |
|
---|
3177 | if (f != NULL)
|
---|
3178 | {
|
---|
3179 | if (png_image_write_to_stdio(&image->image, f, convert_to_8bit,
|
---|
3180 | image->buffer+16, (png_int_32)image->stride, image->colormap))
|
---|
3181 | {
|
---|
3182 | if (fflush(f) == 0)
|
---|
3183 | {
|
---|
3184 | rewind(f);
|
---|
3185 | initimage(output, image->opts, "tmpfile", image->stride_extra);
|
---|
3186 | output->input_file = f;
|
---|
3187 | if (!checkopaque(image))
|
---|
3188 | return 0;
|
---|
3189 | }
|
---|
3190 |
|
---|
3191 | else
|
---|
3192 | return logclose(image, f, "tmpfile", ": flush: ");
|
---|
3193 | }
|
---|
3194 |
|
---|
3195 | else
|
---|
3196 | {
|
---|
3197 | fclose(f);
|
---|
3198 | return logerror(image, "tmpfile", ": write failed", "");
|
---|
3199 | }
|
---|
3200 | }
|
---|
3201 |
|
---|
3202 | else
|
---|
3203 | return logerror(image, "tmpfile", ": open: ", strerror(errno));
|
---|
3204 | #else /* SIMPLIFIED_WRITE_STDIO */
|
---|
3205 | return logerror(image, "tmpfile", ": open: unsupported", "");
|
---|
3206 | #endif /* SIMPLIFIED_WRITE_STDIO */
|
---|
3207 | }
|
---|
3208 |
|
---|
3209 | else if (image->opts & USE_FILE)
|
---|
3210 | {
|
---|
3211 | #ifdef PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED
|
---|
3212 | static int counter = 0;
|
---|
3213 | char name[32];
|
---|
3214 |
|
---|
3215 | sprintf(name, "%s%d.png", tmpf, ++counter);
|
---|
3216 |
|
---|
3217 | if (png_image_write_to_file(&image->image, name, convert_to_8bit,
|
---|
3218 | image->buffer+16, (png_int_32)image->stride, image->colormap))
|
---|
3219 | {
|
---|
3220 | initimage(output, image->opts, output->tmpfile_name,
|
---|
3221 | image->stride_extra);
|
---|
3222 | /* Afterwards, or freeimage will delete it! */
|
---|
3223 | strcpy(output->tmpfile_name, name);
|
---|
3224 |
|
---|
3225 | if (!checkopaque(image))
|
---|
3226 | return 0;
|
---|
3227 | }
|
---|
3228 |
|
---|
3229 | else
|
---|
3230 | return logerror(image, name, ": write failed", "");
|
---|
3231 | #else /* SIMPLIFIED_WRITE_STDIO */
|
---|
3232 | return logerror(image, "stdio", ": open: unsupported", "");
|
---|
3233 | #endif /* SIMPLIFIED_WRITE_STDIO */
|
---|
3234 | }
|
---|
3235 |
|
---|
3236 | else /* use memory */
|
---|
3237 | {
|
---|
3238 | png_alloc_size_t size;
|
---|
3239 |
|
---|
3240 | if (png_image_write_get_memory_size(image->image, size, convert_to_8bit,
|
---|
3241 | image->buffer+16, (png_int_32)image->stride, image->colormap))
|
---|
3242 | {
|
---|
3243 | /* This is non-fatal but ignoring it was causing serious problems in
|
---|
3244 | * the macro to be ignored:
|
---|
3245 | */
|
---|
3246 | if (size > PNG_IMAGE_PNG_SIZE_MAX(image->image))
|
---|
3247 | return logerror(image, "memory", ": PNG_IMAGE_SIZE_MAX wrong", "");
|
---|
3248 |
|
---|
3249 | initimage(output, image->opts, "memory", image->stride_extra);
|
---|
3250 | output->input_memory = malloc(size);
|
---|
3251 |
|
---|
3252 | if (output->input_memory != NULL)
|
---|
3253 | {
|
---|
3254 | output->input_memory_size = size;
|
---|
3255 |
|
---|
3256 | if (png_image_write_to_memory(&image->image, output->input_memory,
|
---|
3257 | &output->input_memory_size, convert_to_8bit, image->buffer+16,
|
---|
3258 | (png_int_32)image->stride, image->colormap))
|
---|
3259 | {
|
---|
3260 | /* This is also non-fatal but it safes safer to error out anyway:
|
---|
3261 | */
|
---|
3262 | if (size != output->input_memory_size)
|
---|
3263 | return logerror(image, "memory", ": memory size wrong", "");
|
---|
3264 | }
|
---|
3265 |
|
---|
3266 | else
|
---|
3267 | return logerror(image, "memory", ": write failed", "");
|
---|
3268 | }
|
---|
3269 |
|
---|
3270 | else
|
---|
3271 | return logerror(image, "memory", ": out of memory", "");
|
---|
3272 | }
|
---|
3273 |
|
---|
3274 | else
|
---|
3275 | return logerror(image, "memory", ": get size:", "");
|
---|
3276 | }
|
---|
3277 |
|
---|
3278 | /* 'output' has an initialized temporary image, read this back in and compare
|
---|
3279 | * this against the original: there should be no change since the original
|
---|
3280 | * format was written unmodified unless 'convert_to_8bit' was specified.
|
---|
3281 | * However, if the original image was color-mapped, a simple read will zap
|
---|
3282 | * the linear, color and maybe alpha flags, this will cause spurious failures
|
---|
3283 | * under some circumstances.
|
---|
3284 | */
|
---|
3285 | if (read_file(output, image->image.format | FORMAT_NO_CHANGE, NULL))
|
---|
3286 | {
|
---|
3287 | png_uint_32 original_format = image->image.format;
|
---|
3288 |
|
---|
3289 | if (convert_to_8bit)
|
---|
3290 | original_format &= ~PNG_FORMAT_FLAG_LINEAR;
|
---|
3291 |
|
---|
3292 | if ((output->image.format & BASE_FORMATS) !=
|
---|
3293 | (original_format & BASE_FORMATS))
|
---|
3294 | return logerror(image, image->file_name, ": format changed on read: ",
|
---|
3295 | output->file_name);
|
---|
3296 |
|
---|
3297 | return compare_two_images(image, output, 0/*via linear*/, NULL);
|
---|
3298 | }
|
---|
3299 |
|
---|
3300 | else
|
---|
3301 | return logerror(output, output->tmpfile_name,
|
---|
3302 | ": read of new file failed", "");
|
---|
3303 | }
|
---|
3304 | #endif
|
---|
3305 |
|
---|
3306 | static int
|
---|
3307 | testimage(Image *image, png_uint_32 opts, format_list *pf)
|
---|
3308 | {
|
---|
3309 | int result;
|
---|
3310 | Image copy;
|
---|
3311 |
|
---|
3312 | /* Copy the original data, stealing it from 'image' */
|
---|
3313 | checkopaque(image);
|
---|
3314 | copy = *image;
|
---|
3315 |
|
---|
3316 | copy.opts = opts;
|
---|
3317 | copy.buffer = NULL;
|
---|
3318 | copy.bufsize = 0;
|
---|
3319 | copy.allocsize = 0;
|
---|
3320 |
|
---|
3321 | image->input_file = NULL;
|
---|
3322 | image->input_memory = NULL;
|
---|
3323 | image->input_memory_size = 0;
|
---|
3324 | image->tmpfile_name[0] = 0;
|
---|
3325 |
|
---|
3326 | {
|
---|
3327 | png_uint_32 counter;
|
---|
3328 | Image output;
|
---|
3329 |
|
---|
3330 | newimage(&output);
|
---|
3331 |
|
---|
3332 | result = 1;
|
---|
3333 |
|
---|
3334 | /* Use the low bit of 'counter' to indicate whether or not to do alpha
|
---|
3335 | * removal with a background color or by composting onto the image; this
|
---|
3336 | * step gets skipped if it isn't relevant
|
---|
3337 | */
|
---|
3338 | for (counter=0; counter<2*FORMAT_COUNT; ++counter)
|
---|
3339 | if (format_isset(pf, counter >> 1))
|
---|
3340 | {
|
---|
3341 | png_uint_32 format = counter >> 1;
|
---|
3342 |
|
---|
3343 | png_color background_color;
|
---|
3344 | png_colorp background = NULL;
|
---|
3345 |
|
---|
3346 | /* If there is a format change that removes the alpha channel then
|
---|
3347 | * the background is relevant. If the output is 8-bit color-mapped
|
---|
3348 | * then a background color *must* be provided, otherwise there are
|
---|
3349 | * two tests to do - one with a color, the other with NULL. The
|
---|
3350 | * NULL test happens second.
|
---|
3351 | */
|
---|
3352 | if ((counter & 1) == 0)
|
---|
3353 | {
|
---|
3354 | if ((format & PNG_FORMAT_FLAG_ALPHA) == 0 &&
|
---|
3355 | (image->image.format & PNG_FORMAT_FLAG_ALPHA) != 0)
|
---|
3356 | {
|
---|
3357 | /* Alpha/transparency will be removed, the background is
|
---|
3358 | * relevant: make it a color the first time
|
---|
3359 | */
|
---|
3360 | random_color(&background_color);
|
---|
3361 | background = &background_color;
|
---|
3362 |
|
---|
3363 | /* BUT if the output is to a color-mapped 8-bit format then
|
---|
3364 | * the background must always be a color, so increment 'counter'
|
---|
3365 | * to skip the NULL test.
|
---|
3366 | */
|
---|
3367 | if ((format & PNG_FORMAT_FLAG_COLORMAP) != 0 &&
|
---|
3368 | (format & PNG_FORMAT_FLAG_LINEAR) == 0)
|
---|
3369 | ++counter;
|
---|
3370 | }
|
---|
3371 |
|
---|
3372 | /* Otherwise an alpha channel is not being eliminated, just leave
|
---|
3373 | * background NULL and skip the (counter & 1) NULL test.
|
---|
3374 | */
|
---|
3375 | else
|
---|
3376 | ++counter;
|
---|
3377 | }
|
---|
3378 | /* else just use NULL for background */
|
---|
3379 |
|
---|
3380 | resetimage(©);
|
---|
3381 | copy.opts = opts; /* in case read_file needs to change it */
|
---|
3382 |
|
---|
3383 | result = read_file(©, format, background);
|
---|
3384 | if (!result)
|
---|
3385 | break;
|
---|
3386 |
|
---|
3387 | /* Make sure the file just read matches the original file. */
|
---|
3388 | result = compare_two_images(image, ©, 0/*via linear*/, background);
|
---|
3389 | if (!result)
|
---|
3390 | break;
|
---|
3391 |
|
---|
3392 | # ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED
|
---|
3393 | /* Write the *copy* just made to a new file to make sure the write
|
---|
3394 | * side works ok. Check the conversion to sRGB if the copy is
|
---|
3395 | * linear.
|
---|
3396 | */
|
---|
3397 | output.opts = opts;
|
---|
3398 | result = write_one_file(&output, ©, 0/*convert to 8bit*/);
|
---|
3399 | if (!result)
|
---|
3400 | break;
|
---|
3401 |
|
---|
3402 | /* Validate against the original too; the background is needed here
|
---|
3403 | * as well so that compare_two_images knows what color was used.
|
---|
3404 | */
|
---|
3405 | result = compare_two_images(image, &output, 0, background);
|
---|
3406 | if (!result)
|
---|
3407 | break;
|
---|
3408 |
|
---|
3409 | if ((format & PNG_FORMAT_FLAG_LINEAR) != 0 &&
|
---|
3410 | (format & PNG_FORMAT_FLAG_COLORMAP) == 0)
|
---|
3411 | {
|
---|
3412 | /* 'output' is linear, convert to the corresponding sRGB format.
|
---|
3413 | */
|
---|
3414 | output.opts = opts;
|
---|
3415 | result = write_one_file(&output, ©, 1/*convert to 8bit*/);
|
---|
3416 | if (!result)
|
---|
3417 | break;
|
---|
3418 |
|
---|
3419 | /* This may involve a conversion via linear; in the ideal world
|
---|
3420 | * this would round-trip correctly, but libpng 1.5.7 is not the
|
---|
3421 | * ideal world so allow a drift (error_via_linear).
|
---|
3422 | *
|
---|
3423 | * 'image' has an alpha channel but 'output' does not then there
|
---|
3424 | * will a strip-alpha-channel operation (because 'output' is
|
---|
3425 | * linear), handle this by composing on black when doing the
|
---|
3426 | * comparison.
|
---|
3427 | */
|
---|
3428 | result = compare_two_images(image, &output, 1/*via_linear*/,
|
---|
3429 | background);
|
---|
3430 | if (!result)
|
---|
3431 | break;
|
---|
3432 | }
|
---|
3433 | # endif /* PNG_SIMPLIFIED_WRITE_SUPPORTED */
|
---|
3434 | }
|
---|
3435 |
|
---|
3436 | freeimage(&output);
|
---|
3437 | }
|
---|
3438 |
|
---|
3439 | freeimage(©);
|
---|
3440 |
|
---|
3441 | return result;
|
---|
3442 | }
|
---|
3443 |
|
---|
3444 | static int
|
---|
3445 | test_one_file(const char *file_name, format_list *formats, png_uint_32 opts,
|
---|
3446 | int stride_extra, int log_pass)
|
---|
3447 | {
|
---|
3448 | int result;
|
---|
3449 | Image image;
|
---|
3450 |
|
---|
3451 | if (!(opts & NO_RESEED))
|
---|
3452 | reseed(); /* ensure that the random numbers don't depend on file order */
|
---|
3453 | newimage(&image);
|
---|
3454 | initimage(&image, opts, file_name, stride_extra);
|
---|
3455 | result = read_one_file(&image);
|
---|
3456 | if (result)
|
---|
3457 | result = testimage(&image, opts, formats);
|
---|
3458 | freeimage(&image);
|
---|
3459 |
|
---|
3460 | /* Ensure that stderr is flushed into any log file */
|
---|
3461 | fflush(stderr);
|
---|
3462 |
|
---|
3463 | if (log_pass)
|
---|
3464 | {
|
---|
3465 | if (result)
|
---|
3466 | printf("PASS:");
|
---|
3467 |
|
---|
3468 | else
|
---|
3469 | printf("FAIL:");
|
---|
3470 |
|
---|
3471 | # ifndef PNG_SIMPLIFIED_WRITE_SUPPORTED
|
---|
3472 | printf(" (no write)");
|
---|
3473 | # endif
|
---|
3474 |
|
---|
3475 | print_opts(opts);
|
---|
3476 | printf(" %s\n", file_name);
|
---|
3477 | /* stdout may not be line-buffered if it is piped to a file, so: */
|
---|
3478 | fflush(stdout);
|
---|
3479 | }
|
---|
3480 |
|
---|
3481 | else if (!result)
|
---|
3482 | exit(1);
|
---|
3483 |
|
---|
3484 | return result;
|
---|
3485 | }
|
---|
3486 |
|
---|
3487 | int
|
---|
3488 | main(int argc, char **argv)
|
---|
3489 | {
|
---|
3490 | png_uint_32 opts = FAST_WRITE | STRICT;
|
---|
3491 | format_list formats;
|
---|
3492 | const char *touch = NULL;
|
---|
3493 | int log_pass = 0;
|
---|
3494 | int redundant = 0;
|
---|
3495 | int stride_extra = 0;
|
---|
3496 | int retval = 0;
|
---|
3497 | int c;
|
---|
3498 |
|
---|
3499 | #if PNG_LIBPNG_VER >= 10700
|
---|
3500 | /* This error should not exist in 1.7 or later: */
|
---|
3501 | opts |= GBG_ERROR;
|
---|
3502 | #endif
|
---|
3503 |
|
---|
3504 | init_sRGB_to_d();
|
---|
3505 | #if 0
|
---|
3506 | init_error_via_linear();
|
---|
3507 | #endif
|
---|
3508 | format_init(&formats);
|
---|
3509 | reseed(); /* initialize random number seeds */
|
---|
3510 |
|
---|
3511 | for (c=1; c<argc; ++c)
|
---|
3512 | {
|
---|
3513 | const char *arg = argv[c];
|
---|
3514 |
|
---|
3515 | if (strcmp(arg, "--log") == 0)
|
---|
3516 | log_pass = 1;
|
---|
3517 | else if (strcmp(arg, "--fresh") == 0)
|
---|
3518 | {
|
---|
3519 | memset(gpc_error, 0, sizeof gpc_error);
|
---|
3520 | memset(gpc_error_via_linear, 0, sizeof gpc_error_via_linear);
|
---|
3521 | }
|
---|
3522 | else if (strcmp(arg, "--file") == 0)
|
---|
3523 | # ifdef PNG_STDIO_SUPPORTED
|
---|
3524 | opts |= USE_FILE;
|
---|
3525 | # else
|
---|
3526 | return SKIP; /* skipped: no support */
|
---|
3527 | # endif
|
---|
3528 | else if (strcmp(arg, "--memory") == 0)
|
---|
3529 | opts &= ~USE_FILE;
|
---|
3530 | else if (strcmp(arg, "--stdio") == 0)
|
---|
3531 | # ifdef PNG_STDIO_SUPPORTED
|
---|
3532 | opts |= USE_STDIO;
|
---|
3533 | # else
|
---|
3534 | return SKIP; /* skipped: no support */
|
---|
3535 | # endif
|
---|
3536 | else if (strcmp(arg, "--name") == 0)
|
---|
3537 | opts &= ~USE_STDIO;
|
---|
3538 | else if (strcmp(arg, "--verbose") == 0)
|
---|
3539 | opts |= VERBOSE;
|
---|
3540 | else if (strcmp(arg, "--quiet") == 0)
|
---|
3541 | opts &= ~VERBOSE;
|
---|
3542 | else if (strcmp(arg, "--preserve") == 0)
|
---|
3543 | opts |= KEEP_TMPFILES;
|
---|
3544 | else if (strcmp(arg, "--nopreserve") == 0)
|
---|
3545 | opts &= ~KEEP_TMPFILES;
|
---|
3546 | else if (strcmp(arg, "--keep-going") == 0)
|
---|
3547 | opts |= KEEP_GOING;
|
---|
3548 | else if (strcmp(arg, "--fast") == 0)
|
---|
3549 | opts |= FAST_WRITE;
|
---|
3550 | else if (strcmp(arg, "--slow") == 0)
|
---|
3551 | opts &= ~FAST_WRITE;
|
---|
3552 | else if (strcmp(arg, "--accumulate") == 0)
|
---|
3553 | opts |= ACCUMULATE;
|
---|
3554 | else if (strcmp(arg, "--redundant") == 0)
|
---|
3555 | redundant = 1;
|
---|
3556 | else if (strcmp(arg, "--stop") == 0)
|
---|
3557 | opts &= ~KEEP_GOING;
|
---|
3558 | else if (strcmp(arg, "--strict") == 0)
|
---|
3559 | opts |= STRICT;
|
---|
3560 | else if (strcmp(arg, "--nostrict") == 0)
|
---|
3561 | opts &= ~STRICT;
|
---|
3562 | else if (strcmp(arg, "--sRGB-16bit") == 0)
|
---|
3563 | opts |= sRGB_16BIT;
|
---|
3564 | else if (strcmp(arg, "--linear-16bit") == 0)
|
---|
3565 | opts &= ~sRGB_16BIT;
|
---|
3566 | else if (strcmp(arg, "--noreseed") == 0)
|
---|
3567 | opts |= NO_RESEED;
|
---|
3568 | else if (strcmp(arg, "--fault-gbg-warning") == 0)
|
---|
3569 | opts |= GBG_ERROR;
|
---|
3570 | else if (strcmp(arg, "--tmpfile") == 0)
|
---|
3571 | {
|
---|
3572 | if (c+1 < argc)
|
---|
3573 | {
|
---|
3574 | if (strlen(argv[++c]) >= sizeof tmpf)
|
---|
3575 | {
|
---|
3576 | fflush(stdout);
|
---|
3577 | fprintf(stderr, "%s: %s is too long for a temp file prefix\n",
|
---|
3578 | argv[0], argv[c]);
|
---|
3579 | exit(99);
|
---|
3580 | }
|
---|
3581 |
|
---|
3582 | /* Safe: checked above */
|
---|
3583 | strncpy(tmpf, argv[c], sizeof (tmpf)-1);
|
---|
3584 | }
|
---|
3585 |
|
---|
3586 | else
|
---|
3587 | {
|
---|
3588 | fflush(stdout);
|
---|
3589 | fprintf(stderr, "%s: %s requires a temporary file prefix\n",
|
---|
3590 | argv[0], arg);
|
---|
3591 | exit(99);
|
---|
3592 | }
|
---|
3593 | }
|
---|
3594 | else if (strcmp(arg, "--touch") == 0)
|
---|
3595 | {
|
---|
3596 | if (c+1 < argc)
|
---|
3597 | touch = argv[++c];
|
---|
3598 |
|
---|
3599 | else
|
---|
3600 | {
|
---|
3601 | fflush(stdout);
|
---|
3602 | fprintf(stderr, "%s: %s requires a file name argument\n",
|
---|
3603 | argv[0], arg);
|
---|
3604 | exit(99);
|
---|
3605 | }
|
---|
3606 | }
|
---|
3607 | else if (arg[0] == '+')
|
---|
3608 | {
|
---|
3609 | png_uint_32 format = formatof(arg+1);
|
---|
3610 |
|
---|
3611 | if (format > FORMAT_COUNT)
|
---|
3612 | exit(99);
|
---|
3613 |
|
---|
3614 | format_set(&formats, format);
|
---|
3615 | }
|
---|
3616 | else if (arg[0] == '-' && arg[1] != 0 && (arg[1] != '0' || arg[2] != 0))
|
---|
3617 | {
|
---|
3618 | fflush(stdout);
|
---|
3619 | fprintf(stderr, "%s: unknown option: %s\n", argv[0], arg);
|
---|
3620 | exit(99);
|
---|
3621 | }
|
---|
3622 | else
|
---|
3623 | {
|
---|
3624 | if (format_is_initial(&formats))
|
---|
3625 | format_default(&formats, redundant);
|
---|
3626 |
|
---|
3627 | if (arg[0] == '-')
|
---|
3628 | {
|
---|
3629 | int term = (arg[1] == '0' ? 0 : '\n');
|
---|
3630 | unsigned int ich = 0;
|
---|
3631 |
|
---|
3632 | /* Loop reading files, use a static buffer to simplify this and just
|
---|
3633 | * stop if the name gets to long.
|
---|
3634 | */
|
---|
3635 | static char buffer[4096];
|
---|
3636 |
|
---|
3637 | do
|
---|
3638 | {
|
---|
3639 | int ch = getchar();
|
---|
3640 |
|
---|
3641 | /* Don't allow '\0' in file names, and terminate with '\n' or,
|
---|
3642 | * for -0, just '\0' (use -print0 to find to make this work!)
|
---|
3643 | */
|
---|
3644 | if (ch == EOF || ch == term || ch == 0)
|
---|
3645 | {
|
---|
3646 | buffer[ich] = 0;
|
---|
3647 |
|
---|
3648 | if (ich > 0 && !test_one_file(buffer, &formats, opts,
|
---|
3649 | stride_extra, log_pass))
|
---|
3650 | retval = 1;
|
---|
3651 |
|
---|
3652 | if (ch == EOF)
|
---|
3653 | break;
|
---|
3654 |
|
---|
3655 | ich = 0;
|
---|
3656 | --ich; /* so that the increment below sets it to 0 again */
|
---|
3657 | }
|
---|
3658 |
|
---|
3659 | else
|
---|
3660 | buffer[ich] = (char)ch;
|
---|
3661 | } while (++ich < sizeof buffer);
|
---|
3662 |
|
---|
3663 | if (ich)
|
---|
3664 | {
|
---|
3665 | buffer[32] = 0;
|
---|
3666 | buffer[4095] = 0;
|
---|
3667 | fprintf(stderr, "%s...%s: file name too long\n", buffer,
|
---|
3668 | buffer+(4096-32));
|
---|
3669 | exit(99);
|
---|
3670 | }
|
---|
3671 | }
|
---|
3672 |
|
---|
3673 | else if (!test_one_file(arg, &formats, opts, stride_extra, log_pass))
|
---|
3674 | retval = 1;
|
---|
3675 | }
|
---|
3676 | }
|
---|
3677 |
|
---|
3678 | if (opts & ACCUMULATE)
|
---|
3679 | {
|
---|
3680 | unsigned int in;
|
---|
3681 |
|
---|
3682 | printf("/* contrib/libtests/pngstest-errors.h\n");
|
---|
3683 | printf(" *\n");
|
---|
3684 | printf(" * BUILT USING:" PNG_HEADER_VERSION_STRING);
|
---|
3685 | printf(" *\n");
|
---|
3686 | printf(" * This code is released under the libpng license.\n");
|
---|
3687 | printf(" * For conditions of distribution and use, see the disclaimer\n");
|
---|
3688 | printf(" * and license in png.h\n");
|
---|
3689 | printf(" *\n");
|
---|
3690 | printf(" * THIS IS A MACHINE GENERATED FILE: do not edit it directly!\n");
|
---|
3691 | printf(" * Instead run:\n");
|
---|
3692 | printf(" *\n");
|
---|
3693 | printf(" * pngstest --accumulate\n");
|
---|
3694 | printf(" *\n");
|
---|
3695 | printf(" * on as many PNG files as possible; at least PNGSuite and\n");
|
---|
3696 | printf(" * contrib/libtests/testpngs.\n");
|
---|
3697 | printf(" */\n");
|
---|
3698 |
|
---|
3699 | printf("static png_uint_16 gpc_error[16/*in*/][16/*out*/][4/*a*/] =\n");
|
---|
3700 | printf("{\n");
|
---|
3701 | for (in=0; in<16; ++in)
|
---|
3702 | {
|
---|
3703 | unsigned int out;
|
---|
3704 | printf(" { /* input: %s */\n ", format_names[in]);
|
---|
3705 | for (out=0; out<16; ++out)
|
---|
3706 | {
|
---|
3707 | unsigned int alpha;
|
---|
3708 | printf(" {");
|
---|
3709 | for (alpha=0; alpha<4; ++alpha)
|
---|
3710 | {
|
---|
3711 | printf(" %d", gpc_error[in][out][alpha]);
|
---|
3712 | if (alpha < 3) putchar(',');
|
---|
3713 | }
|
---|
3714 | printf(" }");
|
---|
3715 | if (out < 15)
|
---|
3716 | {
|
---|
3717 | putchar(',');
|
---|
3718 | if (out % 4 == 3) printf("\n ");
|
---|
3719 | }
|
---|
3720 | }
|
---|
3721 | printf("\n }");
|
---|
3722 |
|
---|
3723 | if (in < 15)
|
---|
3724 | putchar(',');
|
---|
3725 | else
|
---|
3726 | putchar('\n');
|
---|
3727 | }
|
---|
3728 | printf("};\n");
|
---|
3729 |
|
---|
3730 | printf("static png_uint_16 gpc_error_via_linear[16][4/*out*/][4] =\n");
|
---|
3731 | printf("{\n");
|
---|
3732 | for (in=0; in<16; ++in)
|
---|
3733 | {
|
---|
3734 | unsigned int out;
|
---|
3735 | printf(" { /* input: %s */\n ", format_names[in]);
|
---|
3736 | for (out=0; out<4; ++out)
|
---|
3737 | {
|
---|
3738 | unsigned int alpha;
|
---|
3739 | printf(" {");
|
---|
3740 | for (alpha=0; alpha<4; ++alpha)
|
---|
3741 | {
|
---|
3742 | printf(" %d", gpc_error_via_linear[in][out][alpha]);
|
---|
3743 | if (alpha < 3) putchar(',');
|
---|
3744 | }
|
---|
3745 | printf(" }");
|
---|
3746 | if (out < 3)
|
---|
3747 | putchar(',');
|
---|
3748 | }
|
---|
3749 | printf("\n }");
|
---|
3750 |
|
---|
3751 | if (in < 15)
|
---|
3752 | putchar(',');
|
---|
3753 | else
|
---|
3754 | putchar('\n');
|
---|
3755 | }
|
---|
3756 | printf("};\n");
|
---|
3757 |
|
---|
3758 | printf("static png_uint_16 gpc_error_to_colormap[8/*i*/][8/*o*/][4] =\n");
|
---|
3759 | printf("{\n");
|
---|
3760 | for (in=0; in<8; ++in)
|
---|
3761 | {
|
---|
3762 | unsigned int out;
|
---|
3763 | printf(" { /* input: %s */\n ", format_names[in]);
|
---|
3764 | for (out=0; out<8; ++out)
|
---|
3765 | {
|
---|
3766 | unsigned int alpha;
|
---|
3767 | printf(" {");
|
---|
3768 | for (alpha=0; alpha<4; ++alpha)
|
---|
3769 | {
|
---|
3770 | printf(" %d", gpc_error_to_colormap[in][out][alpha]);
|
---|
3771 | if (alpha < 3) putchar(',');
|
---|
3772 | }
|
---|
3773 | printf(" }");
|
---|
3774 | if (out < 7)
|
---|
3775 | {
|
---|
3776 | putchar(',');
|
---|
3777 | if (out % 4 == 3) printf("\n ");
|
---|
3778 | }
|
---|
3779 | }
|
---|
3780 | printf("\n }");
|
---|
3781 |
|
---|
3782 | if (in < 7)
|
---|
3783 | putchar(',');
|
---|
3784 | else
|
---|
3785 | putchar('\n');
|
---|
3786 | }
|
---|
3787 | printf("};\n");
|
---|
3788 | printf("/* END MACHINE GENERATED */\n");
|
---|
3789 | }
|
---|
3790 |
|
---|
3791 | if (retval == 0 && touch != NULL)
|
---|
3792 | {
|
---|
3793 | FILE *fsuccess = fopen(touch, "wt");
|
---|
3794 |
|
---|
3795 | if (fsuccess != NULL)
|
---|
3796 | {
|
---|
3797 | int error = 0;
|
---|
3798 | fprintf(fsuccess, "PNG simple API tests succeeded\n");
|
---|
3799 | fflush(fsuccess);
|
---|
3800 | error = ferror(fsuccess);
|
---|
3801 |
|
---|
3802 | if (fclose(fsuccess) || error)
|
---|
3803 | {
|
---|
3804 | fflush(stdout);
|
---|
3805 | fprintf(stderr, "%s: write failed\n", touch);
|
---|
3806 | exit(99);
|
---|
3807 | }
|
---|
3808 | }
|
---|
3809 |
|
---|
3810 | else
|
---|
3811 | {
|
---|
3812 | fflush(stdout);
|
---|
3813 | fprintf(stderr, "%s: open failed\n", touch);
|
---|
3814 | exit(99);
|
---|
3815 | }
|
---|
3816 | }
|
---|
3817 |
|
---|
3818 | return retval;
|
---|
3819 | }
|
---|
3820 |
|
---|
3821 | #else /* !PNG_SIMPLIFIED_READ_SUPPORTED */
|
---|
3822 | int main(void)
|
---|
3823 | {
|
---|
3824 | fprintf(stderr, "pngstest: no read support in libpng, test skipped\n");
|
---|
3825 | /* So the test is skipped: */
|
---|
3826 | return SKIP;
|
---|
3827 | }
|
---|
3828 | #endif /* PNG_SIMPLIFIED_READ_SUPPORTED */
|
---|