2 /* pngrtran.c - transforms the data in a row for PNG readers
4 * Copyright (c) 2018-2019 Cosmin Truta
5 * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson
6 * Copyright (c) 1996-1997 Andreas Dilger
7 * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
9 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
13 * This file contains functions optionally called by an application
14 * in order to tell libpng how to handle data when reading a PNG.
15 * Transformations that are used in both reading and writing are
21 #ifdef PNG_ARM_NEON_IMPLEMENTATION
22 # if PNG_ARM_NEON_IMPLEMENTATION == 1
23 # define PNG_ARM_NEON_INTRINSICS_AVAILABLE
24 # if defined(_MSC_VER) && !defined(__clang__) && defined(_M_ARM64)
25 # include <arm64_neon.h>
27 # include <arm_neon.h>
32 #ifdef PNG_READ_SUPPORTED
34 /* Set the action on getting a CRC error for an ancillary or critical chunk. */
36 png_set_crc_action(png_structrp png_ptr
, int crit_action
, int ancil_action
)
38 png_debug(1, "in png_set_crc_action");
43 /* Tell libpng how we react to CRC errors in critical chunks */
46 case PNG_CRC_NO_CHANGE
: /* Leave setting as is */
49 case PNG_CRC_WARN_USE
: /* Warn/use data */
50 png_ptr
->flags
&= ~PNG_FLAG_CRC_CRITICAL_MASK
;
51 png_ptr
->flags
|= PNG_FLAG_CRC_CRITICAL_USE
;
54 case PNG_CRC_QUIET_USE
: /* Quiet/use data */
55 png_ptr
->flags
&= ~PNG_FLAG_CRC_CRITICAL_MASK
;
56 png_ptr
->flags
|= PNG_FLAG_CRC_CRITICAL_USE
|
57 PNG_FLAG_CRC_CRITICAL_IGNORE
;
60 case PNG_CRC_WARN_DISCARD
: /* Not a valid action for critical data */
62 "Can't discard critical data on CRC error");
64 case PNG_CRC_ERROR_QUIT
: /* Error/quit */
68 png_ptr
->flags
&= ~PNG_FLAG_CRC_CRITICAL_MASK
;
72 /* Tell libpng how we react to CRC errors in ancillary chunks */
75 case PNG_CRC_NO_CHANGE
: /* Leave setting as is */
78 case PNG_CRC_WARN_USE
: /* Warn/use data */
79 png_ptr
->flags
&= ~PNG_FLAG_CRC_ANCILLARY_MASK
;
80 png_ptr
->flags
|= PNG_FLAG_CRC_ANCILLARY_USE
;
83 case PNG_CRC_QUIET_USE
: /* Quiet/use data */
84 png_ptr
->flags
&= ~PNG_FLAG_CRC_ANCILLARY_MASK
;
85 png_ptr
->flags
|= PNG_FLAG_CRC_ANCILLARY_USE
|
86 PNG_FLAG_CRC_ANCILLARY_NOWARN
;
89 case PNG_CRC_ERROR_QUIT
: /* Error/quit */
90 png_ptr
->flags
&= ~PNG_FLAG_CRC_ANCILLARY_MASK
;
91 png_ptr
->flags
|= PNG_FLAG_CRC_ANCILLARY_NOWARN
;
94 case PNG_CRC_WARN_DISCARD
: /* Warn/discard data */
98 png_ptr
->flags
&= ~PNG_FLAG_CRC_ANCILLARY_MASK
;
103 #ifdef PNG_READ_TRANSFORMS_SUPPORTED
104 /* Is it OK to set a transformation now? Only if png_start_read_image or
105 * png_read_update_info have not been called. It is not necessary for the IHDR
106 * to have been read in all cases; the need_IHDR parameter allows for this
110 png_rtran_ok(png_structrp png_ptr
, int need_IHDR
)
114 if ((png_ptr
->flags
& PNG_FLAG_ROW_INIT
) != 0)
115 png_app_error(png_ptr
,
116 "invalid after png_start_read_image or png_read_update_info");
118 else if (need_IHDR
&& (png_ptr
->mode
& PNG_HAVE_IHDR
) == 0)
119 png_app_error(png_ptr
, "invalid before the PNG header has been read");
123 /* Turn on failure to initialize correctly for all transforms. */
124 png_ptr
->flags
|= PNG_FLAG_DETECT_UNINITIALIZED
;
130 return 0; /* no png_error possible! */
134 #ifdef PNG_READ_BACKGROUND_SUPPORTED
135 /* Handle alpha and tRNS via a background color */
137 png_set_background_fixed(png_structrp png_ptr
,
138 png_const_color_16p background_color
, int background_gamma_code
,
139 int need_expand
, png_fixed_point background_gamma
)
141 png_debug(1, "in png_set_background_fixed");
143 if (png_rtran_ok(png_ptr
, 0) == 0 || background_color
== NULL
)
146 if (background_gamma_code
== PNG_BACKGROUND_GAMMA_UNKNOWN
)
148 png_warning(png_ptr
, "Application must supply a known background gamma");
152 png_ptr
->transformations
|= PNG_COMPOSE
| PNG_STRIP_ALPHA
;
153 png_ptr
->transformations
&= ~PNG_ENCODE_ALPHA
;
154 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
156 png_ptr
->background
= *background_color
;
157 png_ptr
->background_gamma
= background_gamma
;
158 png_ptr
->background_gamma_type
= (png_byte
)(background_gamma_code
);
159 if (need_expand
!= 0)
160 png_ptr
->transformations
|= PNG_BACKGROUND_EXPAND
;
162 png_ptr
->transformations
&= ~PNG_BACKGROUND_EXPAND
;
165 # ifdef PNG_FLOATING_POINT_SUPPORTED
167 png_set_background(png_structrp png_ptr
,
168 png_const_color_16p background_color
, int background_gamma_code
,
169 int need_expand
, double background_gamma
)
171 png_set_background_fixed(png_ptr
, background_color
, background_gamma_code
,
172 need_expand
, png_fixed(png_ptr
, background_gamma
, "png_set_background"));
174 # endif /* FLOATING_POINT */
175 #endif /* READ_BACKGROUND */
177 /* Scale 16-bit depth files to 8-bit depth. If both of these are set then the
178 * one that pngrtran does first (scale) happens. This is necessary to allow the
179 * TRANSFORM and API behavior to be somewhat consistent, and it's simpler.
181 #ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
183 png_set_scale_16(png_structrp png_ptr
)
185 png_debug(1, "in png_set_scale_16");
187 if (png_rtran_ok(png_ptr
, 0) == 0)
190 png_ptr
->transformations
|= PNG_SCALE_16_TO_8
;
194 #ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
195 /* Chop 16-bit depth files to 8-bit depth */
197 png_set_strip_16(png_structrp png_ptr
)
199 png_debug(1, "in png_set_strip_16");
201 if (png_rtran_ok(png_ptr
, 0) == 0)
204 png_ptr
->transformations
|= PNG_16_TO_8
;
208 #ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
210 png_set_strip_alpha(png_structrp png_ptr
)
212 png_debug(1, "in png_set_strip_alpha");
214 if (png_rtran_ok(png_ptr
, 0) == 0)
217 png_ptr
->transformations
|= PNG_STRIP_ALPHA
;
221 #if defined(PNG_READ_ALPHA_MODE_SUPPORTED) || defined(PNG_READ_GAMMA_SUPPORTED)
222 static png_fixed_point
223 translate_gamma_flags(png_structrp png_ptr
, png_fixed_point output_gamma
,
226 /* Check for flag values. The main reason for having the old Mac value as a
227 * flag is that it is pretty near impossible to work out what the correct
228 * value is from Apple documentation - a working Mac system is needed to
229 * discover the value!
231 if (output_gamma
== PNG_DEFAULT_sRGB
||
232 output_gamma
== PNG_FP_1
/ PNG_DEFAULT_sRGB
)
234 /* If there is no sRGB support this just sets the gamma to the standard
235 * sRGB value. (This is a side effect of using this function!)
237 # ifdef PNG_READ_sRGB_SUPPORTED
238 png_ptr
->flags
|= PNG_FLAG_ASSUME_sRGB
;
243 output_gamma
= PNG_GAMMA_sRGB
;
245 output_gamma
= PNG_GAMMA_sRGB_INVERSE
;
248 else if (output_gamma
== PNG_GAMMA_MAC_18
||
249 output_gamma
== PNG_FP_1
/ PNG_GAMMA_MAC_18
)
252 output_gamma
= PNG_GAMMA_MAC_OLD
;
254 output_gamma
= PNG_GAMMA_MAC_INVERSE
;
260 # ifdef PNG_FLOATING_POINT_SUPPORTED
261 static png_fixed_point
262 convert_gamma_value(png_structrp png_ptr
, double output_gamma
)
264 /* The following silently ignores cases where fixed point (times 100,000)
265 * gamma values are passed to the floating point API. This is safe and it
266 * means the fixed point constants work just fine with the floating point
267 * API. The alternative would just lead to undetected errors and spurious
268 * bug reports. Negative values fail inside the _fixed API unless they
269 * correspond to the flag values.
271 if (output_gamma
> 0 && output_gamma
< 128)
272 output_gamma
*= PNG_FP_1
;
274 /* This preserves -1 and -2 exactly: */
275 output_gamma
= floor(output_gamma
+ .5);
277 if (output_gamma
> PNG_FP_MAX
|| output_gamma
< PNG_FP_MIN
)
278 png_fixed_error(png_ptr
, "gamma value");
280 return (png_fixed_point
)output_gamma
;
283 #endif /* READ_ALPHA_MODE || READ_GAMMA */
285 #ifdef PNG_READ_ALPHA_MODE_SUPPORTED
287 png_set_alpha_mode_fixed(png_structrp png_ptr
, int mode
,
288 png_fixed_point output_gamma
)
291 png_fixed_point file_gamma
;
293 png_debug(1, "in png_set_alpha_mode");
295 if (png_rtran_ok(png_ptr
, 0) == 0)
298 output_gamma
= translate_gamma_flags(png_ptr
, output_gamma
, 1/*screen*/);
300 /* Validate the value to ensure it is in a reasonable range. The value
301 * is expected to be 1 or greater, but this range test allows for some
302 * viewing correction values. The intent is to weed out users of this API
303 * who use the inverse of the gamma value accidentally! Since some of these
304 * values are reasonable this may have to be changed:
306 * 1.6.x: changed from 0.07..3 to 0.01..100 (to accommodate the optimal 16-bit
307 * gamma of 36, and its reciprocal.)
309 if (output_gamma
< 1000 || output_gamma
> 10000000)
310 png_error(png_ptr
, "output gamma out of expected range");
312 /* The default file gamma is the inverse of the output gamma; the output
313 * gamma may be changed below so get the file value first:
315 file_gamma
= png_reciprocal(output_gamma
);
317 /* There are really 8 possibilities here, composed of any combination
320 * premultiply the color channels
321 * do not encode non-opaque pixels
322 * encode the alpha as well as the color channels
324 * The differences disappear if the input/output ('screen') gamma is 1.0,
325 * because then the encoding is a no-op and there is only the choice of
326 * premultiplying the color channels or not.
328 * png_set_alpha_mode and png_set_background interact because both use
329 * png_compose to do the work. Calling both is only useful when
330 * png_set_alpha_mode is used to set the default mode - PNG_ALPHA_PNG - along
331 * with a default gamma value. Otherwise PNG_COMPOSE must not be set.
335 case PNG_ALPHA_PNG
: /* default: png standard */
336 /* No compose, but it may be set by png_set_background! */
337 png_ptr
->transformations
&= ~PNG_ENCODE_ALPHA
;
338 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
341 case PNG_ALPHA_ASSOCIATED
: /* color channels premultiplied */
343 png_ptr
->transformations
&= ~PNG_ENCODE_ALPHA
;
344 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
345 /* The output is linear: */
346 output_gamma
= PNG_FP_1
;
349 case PNG_ALPHA_OPTIMIZED
: /* associated, non-opaque pixels linear */
351 png_ptr
->transformations
&= ~PNG_ENCODE_ALPHA
;
352 png_ptr
->flags
|= PNG_FLAG_OPTIMIZE_ALPHA
;
353 /* output_gamma records the encoding of opaque pixels! */
356 case PNG_ALPHA_BROKEN
: /* associated, non-linear, alpha encoded */
358 png_ptr
->transformations
|= PNG_ENCODE_ALPHA
;
359 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
363 png_error(png_ptr
, "invalid alpha mode");
366 /* Only set the default gamma if the file gamma has not been set (this has
367 * the side effect that the gamma in a second call to png_set_alpha_mode will
370 if (png_ptr
->colorspace
.gamma
== 0)
372 png_ptr
->colorspace
.gamma
= file_gamma
;
373 png_ptr
->colorspace
.flags
|= PNG_COLORSPACE_HAVE_GAMMA
;
376 /* But always set the output gamma: */
377 png_ptr
->screen_gamma
= output_gamma
;
379 /* Finally, if pre-multiplying, set the background fields to achieve the
384 /* And obtain alpha pre-multiplication by composing on black: */
385 memset(&png_ptr
->background
, 0, (sizeof png_ptr
->background
));
386 png_ptr
->background_gamma
= png_ptr
->colorspace
.gamma
; /* just in case */
387 png_ptr
->background_gamma_type
= PNG_BACKGROUND_GAMMA_FILE
;
388 png_ptr
->transformations
&= ~PNG_BACKGROUND_EXPAND
;
390 if ((png_ptr
->transformations
& PNG_COMPOSE
) != 0)
392 "conflicting calls to set alpha mode and background");
394 png_ptr
->transformations
|= PNG_COMPOSE
;
398 # ifdef PNG_FLOATING_POINT_SUPPORTED
400 png_set_alpha_mode(png_structrp png_ptr
, int mode
, double output_gamma
)
402 png_set_alpha_mode_fixed(png_ptr
, mode
, convert_gamma_value(png_ptr
,
408 #ifdef PNG_READ_QUANTIZE_SUPPORTED
409 /* Dither file to 8-bit. Supply a palette, the current number
410 * of elements in the palette, the maximum number of elements
411 * allowed, and a histogram if possible. If the current number
412 * of colors is greater than the maximum number, the palette will be
413 * modified to fit in the maximum number. "full_quantize" indicates
414 * whether we need a quantizing cube set up for RGB images, or if we
415 * simply are reducing the number of colors in a paletted image.
418 typedef struct png_dsort_struct
420 struct png_dsort_struct
* next
;
424 typedef png_dsort
* png_dsortp
;
425 typedef png_dsort
* * png_dsortpp
;
428 png_set_quantize(png_structrp png_ptr
, png_colorp palette
,
429 int num_palette
, int maximum_colors
, png_const_uint_16p histogram
,
432 png_debug(1, "in png_set_quantize");
434 if (png_rtran_ok(png_ptr
, 0) == 0)
437 png_ptr
->transformations
|= PNG_QUANTIZE
;
439 if (full_quantize
== 0)
443 png_ptr
->quantize_index
= (png_bytep
)png_malloc(png_ptr
,
444 (png_alloc_size_t
)((png_uint_32
)num_palette
* (sizeof (png_byte
))));
445 for (i
= 0; i
< num_palette
; i
++)
446 png_ptr
->quantize_index
[i
] = (png_byte
)i
;
449 if (num_palette
> maximum_colors
)
451 if (histogram
!= NULL
)
453 /* This is easy enough, just throw out the least used colors.
454 * Perhaps not the best solution, but good enough.
459 /* Initialize an array to sort colors */
460 png_ptr
->quantize_sort
= (png_bytep
)png_malloc(png_ptr
,
461 (png_alloc_size_t
)((png_uint_32
)num_palette
* (sizeof (png_byte
))));
463 /* Initialize the quantize_sort array */
464 for (i
= 0; i
< num_palette
; i
++)
465 png_ptr
->quantize_sort
[i
] = (png_byte
)i
;
467 /* Find the least used palette entries by starting a
468 * bubble sort, and running it until we have sorted
469 * out enough colors. Note that we don't care about
470 * sorting all the colors, just finding which are
474 for (i
= num_palette
- 1; i
>= maximum_colors
; i
--)
476 int done
; /* To stop early if the list is pre-sorted */
480 for (j
= 0; j
< i
; j
++)
482 if (histogram
[png_ptr
->quantize_sort
[j
]]
483 < histogram
[png_ptr
->quantize_sort
[j
+ 1]])
487 t
= png_ptr
->quantize_sort
[j
];
488 png_ptr
->quantize_sort
[j
] = png_ptr
->quantize_sort
[j
+ 1];
489 png_ptr
->quantize_sort
[j
+ 1] = t
;
498 /* Swap the palette around, and set up a table, if necessary */
499 if (full_quantize
!= 0)
503 /* Put all the useful colors within the max, but don't
506 for (i
= 0; i
< maximum_colors
; i
++)
508 if ((int)png_ptr
->quantize_sort
[i
] >= maximum_colors
)
512 while ((int)png_ptr
->quantize_sort
[j
] >= maximum_colors
);
514 palette
[i
] = palette
[j
];
522 /* Move all the used colors inside the max limit, and
523 * develop a translation table.
525 for (i
= 0; i
< maximum_colors
; i
++)
527 /* Only move the colors we need to */
528 if ((int)png_ptr
->quantize_sort
[i
] >= maximum_colors
)
534 while ((int)png_ptr
->quantize_sort
[j
] >= maximum_colors
);
536 tmp_color
= palette
[j
];
537 palette
[j
] = palette
[i
];
538 palette
[i
] = tmp_color
;
539 /* Indicate where the color went */
540 png_ptr
->quantize_index
[j
] = (png_byte
)i
;
541 png_ptr
->quantize_index
[i
] = (png_byte
)j
;
545 /* Find closest color for those colors we are not using */
546 for (i
= 0; i
< num_palette
; i
++)
548 if ((int)png_ptr
->quantize_index
[i
] >= maximum_colors
)
550 int min_d
, k
, min_k
, d_index
;
552 /* Find the closest color to one we threw out */
553 d_index
= png_ptr
->quantize_index
[i
];
554 min_d
= PNG_COLOR_DIST(palette
[d_index
], palette
[0]);
555 for (k
= 1, min_k
= 0; k
< maximum_colors
; k
++)
559 d
= PNG_COLOR_DIST(palette
[d_index
], palette
[k
]);
567 /* Point to closest color */
568 png_ptr
->quantize_index
[i
] = (png_byte
)min_k
;
572 png_free(png_ptr
, png_ptr
->quantize_sort
);
573 png_ptr
->quantize_sort
= NULL
;
577 /* This is much harder to do simply (and quickly). Perhaps
578 * we need to go through a median cut routine, but those
579 * don't always behave themselves with only a few colors
580 * as input. So we will just find the closest two colors,
581 * and throw out one of them (chosen somewhat randomly).
582 * [We don't understand this at all, so if someone wants to
583 * work on improving it, be our guest - AED, GRP]
593 /* Initialize palette index arrays */
594 png_ptr
->index_to_palette
= (png_bytep
)png_malloc(png_ptr
,
595 (png_alloc_size_t
)((png_uint_32
)num_palette
*
596 (sizeof (png_byte
))));
597 png_ptr
->palette_to_index
= (png_bytep
)png_malloc(png_ptr
,
598 (png_alloc_size_t
)((png_uint_32
)num_palette
*
599 (sizeof (png_byte
))));
601 /* Initialize the sort array */
602 for (i
= 0; i
< num_palette
; i
++)
604 png_ptr
->index_to_palette
[i
] = (png_byte
)i
;
605 png_ptr
->palette_to_index
[i
] = (png_byte
)i
;
608 hash
= (png_dsortpp
)png_calloc(png_ptr
, (png_alloc_size_t
)(769 *
609 (sizeof (png_dsortp
))));
611 num_new_palette
= num_palette
;
613 /* Initial wild guess at how far apart the farthest pixel
614 * pair we will be eliminating will be. Larger
615 * numbers mean more areas will be allocated, Smaller
616 * numbers run the risk of not saving enough data, and
617 * having to do this all over again.
619 * I have not done extensive checking on this number.
623 while (num_new_palette
> maximum_colors
)
625 for (i
= 0; i
< num_new_palette
- 1; i
++)
629 for (j
= i
+ 1; j
< num_new_palette
; j
++)
633 d
= PNG_COLOR_DIST(palette
[i
], palette
[j
]);
638 t
= (png_dsortp
)png_malloc_warn(png_ptr
,
639 (png_alloc_size_t
)(sizeof (png_dsort
)));
645 t
->left
= (png_byte
)i
;
646 t
->right
= (png_byte
)j
;
655 for (i
= 0; i
<= max_d
; i
++)
661 for (p
= hash
[i
]; p
; p
= p
->next
)
663 if ((int)png_ptr
->index_to_palette
[p
->left
]
665 (int)png_ptr
->index_to_palette
[p
->right
]
670 if (num_new_palette
& 0x01)
682 palette
[png_ptr
->index_to_palette
[j
]]
683 = palette
[num_new_palette
];
684 if (full_quantize
== 0)
688 for (k
= 0; k
< num_palette
; k
++)
690 if (png_ptr
->quantize_index
[k
] ==
691 png_ptr
->index_to_palette
[j
])
692 png_ptr
->quantize_index
[k
] =
693 png_ptr
->index_to_palette
[next_j
];
695 if ((int)png_ptr
->quantize_index
[k
] ==
697 png_ptr
->quantize_index
[k
] =
698 png_ptr
->index_to_palette
[j
];
702 png_ptr
->index_to_palette
[png_ptr
->palette_to_index
703 [num_new_palette
]] = png_ptr
->index_to_palette
[j
];
705 png_ptr
->palette_to_index
[png_ptr
->index_to_palette
[j
]]
706 = png_ptr
->palette_to_index
[num_new_palette
];
708 png_ptr
->index_to_palette
[j
] =
709 (png_byte
)num_new_palette
;
711 png_ptr
->palette_to_index
[num_new_palette
] =
714 if (num_new_palette
<= maximum_colors
)
717 if (num_new_palette
<= maximum_colors
)
722 for (i
= 0; i
< 769; i
++)
726 png_dsortp p
= hash
[i
];
730 png_free(png_ptr
, p
);
738 png_free(png_ptr
, hash
);
739 png_free(png_ptr
, png_ptr
->palette_to_index
);
740 png_free(png_ptr
, png_ptr
->index_to_palette
);
741 png_ptr
->palette_to_index
= NULL
;
742 png_ptr
->index_to_palette
= NULL
;
744 num_palette
= maximum_colors
;
746 if (png_ptr
->palette
== NULL
)
748 png_ptr
->palette
= palette
;
750 png_ptr
->num_palette
= (png_uint_16
)num_palette
;
752 if (full_quantize
!= 0)
756 int total_bits
= PNG_QUANTIZE_RED_BITS
+ PNG_QUANTIZE_GREEN_BITS
+
757 PNG_QUANTIZE_BLUE_BITS
;
758 int num_red
= (1 << PNG_QUANTIZE_RED_BITS
);
759 int num_green
= (1 << PNG_QUANTIZE_GREEN_BITS
);
760 int num_blue
= (1 << PNG_QUANTIZE_BLUE_BITS
);
761 size_t num_entries
= ((size_t)1 << total_bits
);
763 png_ptr
->palette_lookup
= (png_bytep
)png_calloc(png_ptr
,
764 (png_alloc_size_t
)(num_entries
* (sizeof (png_byte
))));
766 distance
= (png_bytep
)png_malloc(png_ptr
, (png_alloc_size_t
)(num_entries
*
767 (sizeof (png_byte
))));
769 memset(distance
, 0xff, num_entries
* (sizeof (png_byte
)));
771 for (i
= 0; i
< num_palette
; i
++)
774 int r
= (palette
[i
].red
>> (8 - PNG_QUANTIZE_RED_BITS
));
775 int g
= (palette
[i
].green
>> (8 - PNG_QUANTIZE_GREEN_BITS
));
776 int b
= (palette
[i
].blue
>> (8 - PNG_QUANTIZE_BLUE_BITS
));
778 for (ir
= 0; ir
< num_red
; ir
++)
780 /* int dr = abs(ir - r); */
781 int dr
= ((ir
> r
) ? ir
- r
: r
- ir
);
782 int index_r
= (ir
<< (PNG_QUANTIZE_BLUE_BITS
+
783 PNG_QUANTIZE_GREEN_BITS
));
785 for (ig
= 0; ig
< num_green
; ig
++)
787 /* int dg = abs(ig - g); */
788 int dg
= ((ig
> g
) ? ig
- g
: g
- ig
);
790 int dm
= ((dr
> dg
) ? dr
: dg
);
791 int index_g
= index_r
| (ig
<< PNG_QUANTIZE_BLUE_BITS
);
793 for (ib
= 0; ib
< num_blue
; ib
++)
795 int d_index
= index_g
| ib
;
796 /* int db = abs(ib - b); */
797 int db
= ((ib
> b
) ? ib
- b
: b
- ib
);
798 int dmax
= ((dm
> db
) ? dm
: db
);
799 int d
= dmax
+ dt
+ db
;
801 if (d
< (int)distance
[d_index
])
803 distance
[d_index
] = (png_byte
)d
;
804 png_ptr
->palette_lookup
[d_index
] = (png_byte
)i
;
811 png_free(png_ptr
, distance
);
814 #endif /* READ_QUANTIZE */
816 #ifdef PNG_READ_GAMMA_SUPPORTED
818 png_set_gamma_fixed(png_structrp png_ptr
, png_fixed_point scrn_gamma
,
819 png_fixed_point file_gamma
)
821 png_debug(1, "in png_set_gamma_fixed");
823 if (png_rtran_ok(png_ptr
, 0) == 0)
826 /* New in libpng-1.5.4 - reserve particular negative values as flags. */
827 scrn_gamma
= translate_gamma_flags(png_ptr
, scrn_gamma
, 1/*screen*/);
828 file_gamma
= translate_gamma_flags(png_ptr
, file_gamma
, 0/*file*/);
830 /* Checking the gamma values for being >0 was added in 1.5.4 along with the
831 * premultiplied alpha support; this actually hides an undocumented feature
832 * of the previous implementation which allowed gamma processing to be
833 * disabled in background handling. There is no evidence (so far) that this
834 * was being used; however, png_set_background itself accepted and must still
835 * accept '0' for the gamma value it takes, because it isn't always used.
837 * Since this is an API change (albeit a very minor one that removes an
838 * undocumented API feature) the following checks were only enabled in
842 png_error(png_ptr
, "invalid file gamma in png_set_gamma");
845 png_error(png_ptr
, "invalid screen gamma in png_set_gamma");
847 /* Set the gamma values unconditionally - this overrides the value in the PNG
848 * file if a gAMA chunk was present. png_set_alpha_mode provides a
849 * different, easier, way to default the file gamma.
851 png_ptr
->colorspace
.gamma
= file_gamma
;
852 png_ptr
->colorspace
.flags
|= PNG_COLORSPACE_HAVE_GAMMA
;
853 png_ptr
->screen_gamma
= scrn_gamma
;
856 # ifdef PNG_FLOATING_POINT_SUPPORTED
858 png_set_gamma(png_structrp png_ptr
, double scrn_gamma
, double file_gamma
)
860 png_set_gamma_fixed(png_ptr
, convert_gamma_value(png_ptr
, scrn_gamma
),
861 convert_gamma_value(png_ptr
, file_gamma
));
863 # endif /* FLOATING_POINT */
864 #endif /* READ_GAMMA */
866 #ifdef PNG_READ_EXPAND_SUPPORTED
867 /* Expand paletted images to RGB, expand grayscale images of
868 * less than 8-bit depth to 8-bit depth, and expand tRNS chunks
872 png_set_expand(png_structrp png_ptr
)
874 png_debug(1, "in png_set_expand");
876 if (png_rtran_ok(png_ptr
, 0) == 0)
879 png_ptr
->transformations
|= (PNG_EXPAND
| PNG_EXPAND_tRNS
);
882 /* GRR 19990627: the following three functions currently are identical
883 * to png_set_expand(). However, it is entirely reasonable that someone
884 * might wish to expand an indexed image to RGB but *not* expand a single,
885 * fully transparent palette entry to a full alpha channel--perhaps instead
886 * convert tRNS to the grayscale/RGB format (16-bit RGB value), or replace
887 * the transparent color with a particular RGB value, or drop tRNS entirely.
888 * IOW, a future version of the library may make the transformations flag
889 * a bit more fine-grained, with separate bits for each of these three
892 * More to the point, these functions make it obvious what libpng will be
893 * doing, whereas "expand" can (and does) mean any number of things.
895 * GRP 20060307: In libpng-1.2.9, png_set_gray_1_2_4_to_8() was modified
896 * to expand only the sample depth but not to expand the tRNS to alpha
897 * and its name was changed to png_set_expand_gray_1_2_4_to_8().
900 /* Expand paletted images to RGB. */
902 png_set_palette_to_rgb(png_structrp png_ptr
)
904 png_debug(1, "in png_set_palette_to_rgb");
906 if (png_rtran_ok(png_ptr
, 0) == 0)
909 png_ptr
->transformations
|= (PNG_EXPAND
| PNG_EXPAND_tRNS
);
912 /* Expand grayscale images of less than 8-bit depth to 8 bits. */
914 png_set_expand_gray_1_2_4_to_8(png_structrp png_ptr
)
916 png_debug(1, "in png_set_expand_gray_1_2_4_to_8");
918 if (png_rtran_ok(png_ptr
, 0) == 0)
921 png_ptr
->transformations
|= PNG_EXPAND
;
924 /* Expand tRNS chunks to alpha channels. */
926 png_set_tRNS_to_alpha(png_structrp png_ptr
)
928 png_debug(1, "in png_set_tRNS_to_alpha");
930 if (png_rtran_ok(png_ptr
, 0) == 0)
933 png_ptr
->transformations
|= (PNG_EXPAND
| PNG_EXPAND_tRNS
);
935 #endif /* READ_EXPAND */
937 #ifdef PNG_READ_EXPAND_16_SUPPORTED
938 /* Expand to 16-bit channels, expand the tRNS chunk too (because otherwise
939 * it may not work correctly.)
942 png_set_expand_16(png_structrp png_ptr
)
944 png_debug(1, "in png_set_expand_16");
946 if (png_rtran_ok(png_ptr
, 0) == 0)
949 png_ptr
->transformations
|= (PNG_EXPAND_16
| PNG_EXPAND
| PNG_EXPAND_tRNS
);
953 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
955 png_set_gray_to_rgb(png_structrp png_ptr
)
957 png_debug(1, "in png_set_gray_to_rgb");
959 if (png_rtran_ok(png_ptr
, 0) == 0)
962 /* Because rgb must be 8 bits or more: */
963 png_set_expand_gray_1_2_4_to_8(png_ptr
);
964 png_ptr
->transformations
|= PNG_GRAY_TO_RGB
;
968 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
970 png_set_rgb_to_gray_fixed(png_structrp png_ptr
, int error_action
,
971 png_fixed_point red
, png_fixed_point green
)
973 png_debug(1, "in png_set_rgb_to_gray");
975 /* Need the IHDR here because of the check on color_type below. */
977 if (png_rtran_ok(png_ptr
, 1) == 0)
980 switch (error_action
)
982 case PNG_ERROR_ACTION_NONE
:
983 png_ptr
->transformations
|= PNG_RGB_TO_GRAY
;
986 case PNG_ERROR_ACTION_WARN
:
987 png_ptr
->transformations
|= PNG_RGB_TO_GRAY_WARN
;
990 case PNG_ERROR_ACTION_ERROR
:
991 png_ptr
->transformations
|= PNG_RGB_TO_GRAY_ERR
;
995 png_error(png_ptr
, "invalid error action to rgb_to_gray");
998 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
999 #ifdef PNG_READ_EXPAND_SUPPORTED
1000 png_ptr
->transformations
|= PNG_EXPAND
;
1003 /* Make this an error in 1.6 because otherwise the application may assume
1004 * that it just worked and get a memory overwrite.
1007 "Cannot do RGB_TO_GRAY without EXPAND_SUPPORTED");
1009 /* png_ptr->transformations &= ~PNG_RGB_TO_GRAY; */
1013 if (red
>= 0 && green
>= 0 && red
+ green
<= PNG_FP_1
)
1015 png_uint_16 red_int
, green_int
;
1017 /* NOTE: this calculation does not round, but this behavior is retained
1018 * for consistency; the inaccuracy is very small. The code here always
1019 * overwrites the coefficients, regardless of whether they have been
1020 * defaulted or set already.
1022 red_int
= (png_uint_16
)(((png_uint_32
)red
*32768)/100000);
1023 green_int
= (png_uint_16
)(((png_uint_32
)green
*32768)/100000);
1025 png_ptr
->rgb_to_gray_red_coeff
= red_int
;
1026 png_ptr
->rgb_to_gray_green_coeff
= green_int
;
1027 png_ptr
->rgb_to_gray_coefficients_set
= 1;
1032 if (red
>= 0 && green
>= 0)
1033 png_app_warning(png_ptr
,
1034 "ignoring out of range rgb_to_gray coefficients");
1036 /* Use the defaults, from the cHRM chunk if set, else the historical
1037 * values which are close to the sRGB/HDTV/ITU-Rec 709 values. See
1038 * png_do_rgb_to_gray for more discussion of the values. In this case
1039 * the coefficients are not marked as 'set' and are not overwritten if
1040 * something has already provided a default.
1042 if (png_ptr
->rgb_to_gray_red_coeff
== 0 &&
1043 png_ptr
->rgb_to_gray_green_coeff
== 0)
1045 png_ptr
->rgb_to_gray_red_coeff
= 6968;
1046 png_ptr
->rgb_to_gray_green_coeff
= 23434;
1047 /* png_ptr->rgb_to_gray_blue_coeff = 2366; */
1053 #ifdef PNG_FLOATING_POINT_SUPPORTED
1054 /* Convert a RGB image to a grayscale of the same width. This allows us,
1055 * for example, to convert a 24 bpp RGB image into an 8 bpp grayscale image.
1059 png_set_rgb_to_gray(png_structrp png_ptr
, int error_action
, double red
,
1062 png_set_rgb_to_gray_fixed(png_ptr
, error_action
,
1063 png_fixed(png_ptr
, red
, "rgb to gray red coefficient"),
1064 png_fixed(png_ptr
, green
, "rgb to gray green coefficient"));
1066 #endif /* FLOATING POINT */
1068 #endif /* RGB_TO_GRAY */
1070 #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
1071 defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
1073 png_set_read_user_transform_fn(png_structrp png_ptr
, png_user_transform_ptr
1074 read_user_transform_fn
)
1076 png_debug(1, "in png_set_read_user_transform_fn");
1078 #ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
1079 png_ptr
->transformations
|= PNG_USER_TRANSFORM
;
1080 png_ptr
->read_user_transform_fn
= read_user_transform_fn
;
1085 #ifdef PNG_READ_TRANSFORMS_SUPPORTED
1086 #ifdef PNG_READ_GAMMA_SUPPORTED
1087 /* In the case of gamma transformations only do transformations on images where
1088 * the [file] gamma and screen_gamma are not close reciprocals, otherwise it
1089 * slows things down slightly, and also needlessly introduces small errors.
1091 static int /* PRIVATE */
1092 png_gamma_threshold(png_fixed_point screen_gamma
, png_fixed_point file_gamma
)
1094 /* PNG_GAMMA_THRESHOLD is the threshold for performing gamma
1095 * correction as a difference of the overall transform from 1.0
1097 * We want to compare the threshold with s*f - 1, if we get
1098 * overflow here it is because of wacky gamma values so we
1099 * turn on processing anyway.
1101 png_fixed_point gtest
;
1102 return !png_muldiv(>est
, screen_gamma
, file_gamma
, PNG_FP_1
) ||
1103 png_gamma_significant(gtest
);
1107 /* Initialize everything needed for the read. This includes modifying
1111 /* For the moment 'png_init_palette_transformations' and
1112 * 'png_init_rgb_transformations' only do some flag canceling optimizations.
1113 * The intent is that these two routines should have palette or rgb operations
1114 * extracted from 'png_init_read_transformations'.
1116 static void /* PRIVATE */
1117 png_init_palette_transformations(png_structrp png_ptr
)
1119 /* Called to handle the (input) palette case. In png_do_read_transformations
1120 * the first step is to expand the palette if requested, so this code must
1121 * take care to only make changes that are invariant with respect to the
1122 * palette expansion, or only do them if there is no expansion.
1124 * STRIP_ALPHA has already been handled in the caller (by setting num_trans
1127 int input_has_alpha
= 0;
1128 int input_has_transparency
= 0;
1130 if (png_ptr
->num_trans
> 0)
1134 /* Ignore if all the entries are opaque (unlikely!) */
1135 for (i
=0; i
<png_ptr
->num_trans
; ++i
)
1137 if (png_ptr
->trans_alpha
[i
] == 255)
1139 else if (png_ptr
->trans_alpha
[i
] == 0)
1140 input_has_transparency
= 1;
1143 input_has_transparency
= 1;
1144 input_has_alpha
= 1;
1150 /* If no alpha we can optimize. */
1151 if (input_has_alpha
== 0)
1153 /* Any alpha means background and associative alpha processing is
1154 * required, however if the alpha is 0 or 1 throughout OPTIMIZE_ALPHA
1155 * and ENCODE_ALPHA are irrelevant.
1157 png_ptr
->transformations
&= ~PNG_ENCODE_ALPHA
;
1158 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
1160 if (input_has_transparency
== 0)
1161 png_ptr
->transformations
&= ~(PNG_COMPOSE
| PNG_BACKGROUND_EXPAND
);
1164 #if defined(PNG_READ_EXPAND_SUPPORTED) && defined(PNG_READ_BACKGROUND_SUPPORTED)
1165 /* png_set_background handling - deals with the complexity of whether the
1166 * background color is in the file format or the screen format in the case
1167 * where an 'expand' will happen.
1170 /* The following code cannot be entered in the alpha pre-multiplication case
1171 * because PNG_BACKGROUND_EXPAND is cancelled below.
1173 if ((png_ptr
->transformations
& PNG_BACKGROUND_EXPAND
) != 0 &&
1174 (png_ptr
->transformations
& PNG_EXPAND
) != 0)
1177 png_ptr
->background
.red
=
1178 png_ptr
->palette
[png_ptr
->background
.index
].red
;
1179 png_ptr
->background
.green
=
1180 png_ptr
->palette
[png_ptr
->background
.index
].green
;
1181 png_ptr
->background
.blue
=
1182 png_ptr
->palette
[png_ptr
->background
.index
].blue
;
1184 #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
1185 if ((png_ptr
->transformations
& PNG_INVERT_ALPHA
) != 0)
1187 if ((png_ptr
->transformations
& PNG_EXPAND_tRNS
) == 0)
1189 /* Invert the alpha channel (in tRNS) unless the pixels are
1190 * going to be expanded, in which case leave it for later
1192 int i
, istop
= png_ptr
->num_trans
;
1194 for (i
= 0; i
< istop
; i
++)
1195 png_ptr
->trans_alpha
[i
] =
1196 (png_byte
)(255 - png_ptr
->trans_alpha
[i
]);
1199 #endif /* READ_INVERT_ALPHA */
1201 } /* background expand and (therefore) no alpha association. */
1202 #endif /* READ_EXPAND && READ_BACKGROUND */
1205 static void /* PRIVATE */
1206 png_init_rgb_transformations(png_structrp png_ptr
)
1208 /* Added to libpng-1.5.4: check the color type to determine whether there
1209 * is any alpha or transparency in the image and simply cancel the
1210 * background and alpha mode stuff if there isn't.
1212 int input_has_alpha
= (png_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0;
1213 int input_has_transparency
= png_ptr
->num_trans
> 0;
1215 /* If no alpha we can optimize. */
1216 if (input_has_alpha
== 0)
1218 /* Any alpha means background and associative alpha processing is
1219 * required, however if the alpha is 0 or 1 throughout OPTIMIZE_ALPHA
1220 * and ENCODE_ALPHA are irrelevant.
1222 # ifdef PNG_READ_ALPHA_MODE_SUPPORTED
1223 png_ptr
->transformations
&= ~PNG_ENCODE_ALPHA
;
1224 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
1227 if (input_has_transparency
== 0)
1228 png_ptr
->transformations
&= ~(PNG_COMPOSE
| PNG_BACKGROUND_EXPAND
);
1231 #if defined(PNG_READ_EXPAND_SUPPORTED) && defined(PNG_READ_BACKGROUND_SUPPORTED)
1232 /* png_set_background handling - deals with the complexity of whether the
1233 * background color is in the file format or the screen format in the case
1234 * where an 'expand' will happen.
1237 /* The following code cannot be entered in the alpha pre-multiplication case
1238 * because PNG_BACKGROUND_EXPAND is cancelled below.
1240 if ((png_ptr
->transformations
& PNG_BACKGROUND_EXPAND
) != 0 &&
1241 (png_ptr
->transformations
& PNG_EXPAND
) != 0 &&
1242 (png_ptr
->color_type
& PNG_COLOR_MASK_COLOR
) == 0)
1243 /* i.e., GRAY or GRAY_ALPHA */
1246 /* Expand background and tRNS chunks */
1247 int gray
= png_ptr
->background
.gray
;
1248 int trans_gray
= png_ptr
->trans_color
.gray
;
1250 switch (png_ptr
->bit_depth
)
1270 /* FALLTHROUGH */ /* (Already 8 bits) */
1273 /* Already a full 16 bits */
1277 png_ptr
->background
.red
= png_ptr
->background
.green
=
1278 png_ptr
->background
.blue
= (png_uint_16
)gray
;
1280 if ((png_ptr
->transformations
& PNG_EXPAND_tRNS
) == 0)
1282 png_ptr
->trans_color
.red
= png_ptr
->trans_color
.green
=
1283 png_ptr
->trans_color
.blue
= (png_uint_16
)trans_gray
;
1286 } /* background expand and (therefore) no alpha association. */
1287 #endif /* READ_EXPAND && READ_BACKGROUND */
1291 png_init_read_transformations(png_structrp png_ptr
)
1293 png_debug(1, "in png_init_read_transformations");
1295 /* This internal function is called from png_read_start_row in pngrutil.c
1296 * and it is called before the 'rowbytes' calculation is done, so the code
1297 * in here can change or update the transformations flags.
1299 * First do updates that do not depend on the details of the PNG image data
1303 #ifdef PNG_READ_GAMMA_SUPPORTED
1304 /* Prior to 1.5.4 these tests were performed from png_set_gamma, 1.5.4 adds
1305 * png_set_alpha_mode and this is another source for a default file gamma so
1306 * the test needs to be performed later - here. In addition prior to 1.5.4
1307 * the tests were repeated for the PALETTE color type here - this is no
1308 * longer necessary (and doesn't seem to have been necessary before.)
1311 /* The following temporary indicates if overall gamma correction is
1314 int gamma_correction
= 0;
1316 if (png_ptr
->colorspace
.gamma
!= 0) /* has been set */
1318 if (png_ptr
->screen_gamma
!= 0) /* screen set too */
1319 gamma_correction
= png_gamma_threshold(png_ptr
->colorspace
.gamma
,
1320 png_ptr
->screen_gamma
);
1323 /* Assume the output matches the input; a long time default behavior
1324 * of libpng, although the standard has nothing to say about this.
1326 png_ptr
->screen_gamma
= png_reciprocal(png_ptr
->colorspace
.gamma
);
1329 else if (png_ptr
->screen_gamma
!= 0)
1330 /* The converse - assume the file matches the screen, note that this
1331 * perhaps undesirable default can (from 1.5.4) be changed by calling
1332 * png_set_alpha_mode (even if the alpha handling mode isn't required
1333 * or isn't changed from the default.)
1335 png_ptr
->colorspace
.gamma
= png_reciprocal(png_ptr
->screen_gamma
);
1337 else /* neither are set */
1338 /* Just in case the following prevents any processing - file and screen
1339 * are both assumed to be linear and there is no way to introduce a
1340 * third gamma value other than png_set_background with 'UNIQUE', and,
1343 png_ptr
->screen_gamma
= png_ptr
->colorspace
.gamma
= PNG_FP_1
;
1345 /* We have a gamma value now. */
1346 png_ptr
->colorspace
.flags
|= PNG_COLORSPACE_HAVE_GAMMA
;
1348 /* Now turn the gamma transformation on or off as appropriate. Notice
1349 * that PNG_GAMMA just refers to the file->screen correction. Alpha
1350 * composition may independently cause gamma correction because it needs
1351 * linear data (e.g. if the file has a gAMA chunk but the screen gamma
1352 * hasn't been specified.) In any case this flag may get turned off in
1353 * the code immediately below if the transform can be handled outside the
1356 if (gamma_correction
!= 0)
1357 png_ptr
->transformations
|= PNG_GAMMA
;
1360 png_ptr
->transformations
&= ~PNG_GAMMA
;
1364 /* Certain transformations have the effect of preventing other
1365 * transformations that happen afterward in png_do_read_transformations;
1366 * resolve the interdependencies here. From the code of
1367 * png_do_read_transformations the order is:
1369 * 1) PNG_EXPAND (including PNG_EXPAND_tRNS)
1370 * 2) PNG_STRIP_ALPHA (if no compose)
1371 * 3) PNG_RGB_TO_GRAY
1372 * 4) PNG_GRAY_TO_RGB iff !PNG_BACKGROUND_IS_GRAY
1375 * 7) PNG_STRIP_ALPHA (if compose)
1376 * 8) PNG_ENCODE_ALPHA
1377 * 9) PNG_SCALE_16_TO_8
1379 * 11) PNG_QUANTIZE (converts to palette)
1381 * 13) PNG_GRAY_TO_RGB iff PNG_BACKGROUND_IS_GRAY
1382 * 14) PNG_INVERT_MONO
1383 * 15) PNG_INVERT_ALPHA
1388 * 20) PNG_FILLER (includes PNG_ADD_ALPHA)
1389 * 21) PNG_SWAP_ALPHA
1390 * 22) PNG_SWAP_BYTES
1391 * 23) PNG_USER_TRANSFORM [must be last]
1393 #ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
1394 if ((png_ptr
->transformations
& PNG_STRIP_ALPHA
) != 0 &&
1395 (png_ptr
->transformations
& PNG_COMPOSE
) == 0)
1397 /* Stripping the alpha channel happens immediately after the 'expand'
1398 * transformations, before all other transformation, so it cancels out
1399 * the alpha handling. It has the side effect negating the effect of
1400 * PNG_EXPAND_tRNS too:
1402 png_ptr
->transformations
&= ~(PNG_BACKGROUND_EXPAND
| PNG_ENCODE_ALPHA
|
1404 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
1406 /* Kill the tRNS chunk itself too. Prior to 1.5.4 this did not happen
1407 * so transparency information would remain just so long as it wasn't
1408 * expanded. This produces unexpected API changes if the set of things
1409 * that do PNG_EXPAND_tRNS changes (perfectly possible given the
1410 * documentation - which says ask for what you want, accept what you
1411 * get.) This makes the behavior consistent from 1.5.4:
1413 png_ptr
->num_trans
= 0;
1415 #endif /* STRIP_ALPHA supported, no COMPOSE */
1417 #ifdef PNG_READ_ALPHA_MODE_SUPPORTED
1418 /* If the screen gamma is about 1.0 then the OPTIMIZE_ALPHA and ENCODE_ALPHA
1419 * settings will have no effect.
1421 if (png_gamma_significant(png_ptr
->screen_gamma
) == 0)
1423 png_ptr
->transformations
&= ~PNG_ENCODE_ALPHA
;
1424 png_ptr
->flags
&= ~PNG_FLAG_OPTIMIZE_ALPHA
;
1428 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
1429 /* Make sure the coefficients for the rgb to gray conversion are set
1432 if ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) != 0)
1433 png_colorspace_set_rgb_coefficients(png_ptr
);
1436 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
1437 #if defined(PNG_READ_EXPAND_SUPPORTED) && defined(PNG_READ_BACKGROUND_SUPPORTED)
1438 /* Detect gray background and attempt to enable optimization for
1439 * gray --> RGB case.
1441 * Note: if PNG_BACKGROUND_EXPAND is set and color_type is either RGB or
1442 * RGB_ALPHA (in which case need_expand is superfluous anyway), the
1443 * background color might actually be gray yet not be flagged as such.
1444 * This is not a problem for the current code, which uses
1445 * PNG_BACKGROUND_IS_GRAY only to decide when to do the
1446 * png_do_gray_to_rgb() transformation.
1448 * TODO: this code needs to be revised to avoid the complexity and
1449 * interdependencies. The color type of the background should be recorded in
1450 * png_set_background, along with the bit depth, then the code has a record
1451 * of exactly what color space the background is currently in.
1453 if ((png_ptr
->transformations
& PNG_BACKGROUND_EXPAND
) != 0)
1455 /* PNG_BACKGROUND_EXPAND: the background is in the file color space, so if
1456 * the file was grayscale the background value is gray.
1458 if ((png_ptr
->color_type
& PNG_COLOR_MASK_COLOR
) == 0)
1459 png_ptr
->mode
|= PNG_BACKGROUND_IS_GRAY
;
1462 else if ((png_ptr
->transformations
& PNG_COMPOSE
) != 0)
1464 /* PNG_COMPOSE: png_set_background was called with need_expand false,
1465 * so the color is in the color space of the output or png_set_alpha_mode
1466 * was called and the color is black. Ignore RGB_TO_GRAY because that
1467 * happens before GRAY_TO_RGB.
1469 if ((png_ptr
->transformations
& PNG_GRAY_TO_RGB
) != 0)
1471 if (png_ptr
->background
.red
== png_ptr
->background
.green
&&
1472 png_ptr
->background
.red
== png_ptr
->background
.blue
)
1474 png_ptr
->mode
|= PNG_BACKGROUND_IS_GRAY
;
1475 png_ptr
->background
.gray
= png_ptr
->background
.red
;
1479 #endif /* READ_EXPAND && READ_BACKGROUND */
1480 #endif /* READ_GRAY_TO_RGB */
1482 /* For indexed PNG data (PNG_COLOR_TYPE_PALETTE) many of the transformations
1483 * can be performed directly on the palette, and some (such as rgb to gray)
1484 * can be optimized inside the palette. This is particularly true of the
1485 * composite (background and alpha) stuff, which can be pretty much all done
1486 * in the palette even if the result is expanded to RGB or gray afterward.
1488 * NOTE: this is Not Yet Implemented, the code behaves as in 1.5.1 and
1489 * earlier and the palette stuff is actually handled on the first row. This
1490 * leads to the reported bug that the palette returned by png_get_PLTE is not
1493 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
1494 png_init_palette_transformations(png_ptr
);
1497 png_init_rgb_transformations(png_ptr
);
1499 #if defined(PNG_READ_BACKGROUND_SUPPORTED) && \
1500 defined(PNG_READ_EXPAND_16_SUPPORTED)
1501 if ((png_ptr
->transformations
& PNG_EXPAND_16
) != 0 &&
1502 (png_ptr
->transformations
& PNG_COMPOSE
) != 0 &&
1503 (png_ptr
->transformations
& PNG_BACKGROUND_EXPAND
) == 0 &&
1504 png_ptr
->bit_depth
!= 16)
1506 /* TODO: fix this. Because the expand_16 operation is after the compose
1507 * handling the background color must be 8, not 16, bits deep, but the
1508 * application will supply a 16-bit value so reduce it here.
1510 * The PNG_BACKGROUND_EXPAND code above does not expand to 16 bits at
1511 * present, so that case is ok (until do_expand_16 is moved.)
1513 * NOTE: this discards the low 16 bits of the user supplied background
1514 * color, but until expand_16 works properly there is no choice!
1516 # define CHOP(x) (x)=((png_uint_16)PNG_DIV257(x))
1517 CHOP(png_ptr
->background
.red
);
1518 CHOP(png_ptr
->background
.green
);
1519 CHOP(png_ptr
->background
.blue
);
1520 CHOP(png_ptr
->background
.gray
);
1523 #endif /* READ_BACKGROUND && READ_EXPAND_16 */
1525 #if defined(PNG_READ_BACKGROUND_SUPPORTED) && \
1526 (defined(PNG_READ_SCALE_16_TO_8_SUPPORTED) || \
1527 defined(PNG_READ_STRIP_16_TO_8_SUPPORTED))
1528 if ((png_ptr
->transformations
& (PNG_16_TO_8
|PNG_SCALE_16_TO_8
)) != 0 &&
1529 (png_ptr
->transformations
& PNG_COMPOSE
) != 0 &&
1530 (png_ptr
->transformations
& PNG_BACKGROUND_EXPAND
) == 0 &&
1531 png_ptr
->bit_depth
== 16)
1533 /* On the other hand, if a 16-bit file is to be reduced to 8-bits per
1534 * component this will also happen after PNG_COMPOSE and so the background
1535 * color must be pre-expanded here.
1537 * TODO: fix this too.
1539 png_ptr
->background
.red
= (png_uint_16
)(png_ptr
->background
.red
* 257);
1540 png_ptr
->background
.green
=
1541 (png_uint_16
)(png_ptr
->background
.green
* 257);
1542 png_ptr
->background
.blue
= (png_uint_16
)(png_ptr
->background
.blue
* 257);
1543 png_ptr
->background
.gray
= (png_uint_16
)(png_ptr
->background
.gray
* 257);
1547 /* NOTE: below 'PNG_READ_ALPHA_MODE_SUPPORTED' is presumed to also enable the
1548 * background support (see the comments in scripts/pnglibconf.dfa), this
1549 * allows pre-multiplication of the alpha channel to be implemented as
1550 * compositing on black. This is probably sub-optimal and has been done in
1551 * 1.5.4 betas simply to enable external critique and testing (i.e. to
1552 * implement the new API quickly, without lots of internal changes.)
1555 #ifdef PNG_READ_GAMMA_SUPPORTED
1556 # ifdef PNG_READ_BACKGROUND_SUPPORTED
1557 /* Includes ALPHA_MODE */
1558 png_ptr
->background_1
= png_ptr
->background
;
1561 /* This needs to change - in the palette image case a whole set of tables are
1562 * built when it would be quicker to just calculate the correct value for
1563 * each palette entry directly. Also, the test is too tricky - why check
1564 * PNG_RGB_TO_GRAY if PNG_GAMMA is not set? The answer seems to be that
1565 * PNG_GAMMA is cancelled even if the gamma is known? The test excludes the
1566 * PNG_COMPOSE case, so apparently if there is no *overall* gamma correction
1567 * the gamma tables will not be built even if composition is required on a
1568 * gamma encoded value.
1570 * In 1.5.4 this is addressed below by an additional check on the individual
1571 * file gamma - if it is not 1.0 both RGB_TO_GRAY and COMPOSE need the
1574 if ((png_ptr
->transformations
& PNG_GAMMA
) != 0 ||
1575 ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) != 0 &&
1576 (png_gamma_significant(png_ptr
->colorspace
.gamma
) != 0 ||
1577 png_gamma_significant(png_ptr
->screen_gamma
) != 0)) ||
1578 ((png_ptr
->transformations
& PNG_COMPOSE
) != 0 &&
1579 (png_gamma_significant(png_ptr
->colorspace
.gamma
) != 0 ||
1580 png_gamma_significant(png_ptr
->screen_gamma
) != 0
1581 # ifdef PNG_READ_BACKGROUND_SUPPORTED
1582 || (png_ptr
->background_gamma_type
== PNG_BACKGROUND_GAMMA_UNIQUE
&&
1583 png_gamma_significant(png_ptr
->background_gamma
) != 0)
1585 )) || ((png_ptr
->transformations
& PNG_ENCODE_ALPHA
) != 0 &&
1586 png_gamma_significant(png_ptr
->screen_gamma
) != 0))
1588 png_build_gamma_table(png_ptr
, png_ptr
->bit_depth
);
1590 #ifdef PNG_READ_BACKGROUND_SUPPORTED
1591 if ((png_ptr
->transformations
& PNG_COMPOSE
) != 0)
1593 /* Issue a warning about this combination: because RGB_TO_GRAY is
1594 * optimized to do the gamma transform if present yet do_background has
1595 * to do the same thing if both options are set a
1596 * double-gamma-correction happens. This is true in all versions of
1599 if ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) != 0)
1600 png_warning(png_ptr
,
1601 "libpng does not support gamma+background+rgb_to_gray");
1603 if ((png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
) != 0)
1605 /* We don't get to here unless there is a tRNS chunk with non-opaque
1606 * entries - see the checking code at the start of this function.
1608 png_color back
, back_1
;
1609 png_colorp palette
= png_ptr
->palette
;
1610 int num_palette
= png_ptr
->num_palette
;
1612 if (png_ptr
->background_gamma_type
== PNG_BACKGROUND_GAMMA_FILE
)
1615 back
.red
= png_ptr
->gamma_table
[png_ptr
->background
.red
];
1616 back
.green
= png_ptr
->gamma_table
[png_ptr
->background
.green
];
1617 back
.blue
= png_ptr
->gamma_table
[png_ptr
->background
.blue
];
1619 back_1
.red
= png_ptr
->gamma_to_1
[png_ptr
->background
.red
];
1620 back_1
.green
= png_ptr
->gamma_to_1
[png_ptr
->background
.green
];
1621 back_1
.blue
= png_ptr
->gamma_to_1
[png_ptr
->background
.blue
];
1625 png_fixed_point g
, gs
;
1627 switch (png_ptr
->background_gamma_type
)
1629 case PNG_BACKGROUND_GAMMA_SCREEN
:
1630 g
= (png_ptr
->screen_gamma
);
1634 case PNG_BACKGROUND_GAMMA_FILE
:
1635 g
= png_reciprocal(png_ptr
->colorspace
.gamma
);
1636 gs
= png_reciprocal2(png_ptr
->colorspace
.gamma
,
1637 png_ptr
->screen_gamma
);
1640 case PNG_BACKGROUND_GAMMA_UNIQUE
:
1641 g
= png_reciprocal(png_ptr
->background_gamma
);
1642 gs
= png_reciprocal2(png_ptr
->background_gamma
,
1643 png_ptr
->screen_gamma
);
1646 g
= PNG_FP_1
; /* back_1 */
1647 gs
= PNG_FP_1
; /* back */
1651 if (png_gamma_significant(gs
) != 0)
1653 back
.red
= png_gamma_8bit_correct(png_ptr
->background
.red
,
1655 back
.green
= png_gamma_8bit_correct(png_ptr
->background
.green
,
1657 back
.blue
= png_gamma_8bit_correct(png_ptr
->background
.blue
,
1663 back
.red
= (png_byte
)png_ptr
->background
.red
;
1664 back
.green
= (png_byte
)png_ptr
->background
.green
;
1665 back
.blue
= (png_byte
)png_ptr
->background
.blue
;
1668 if (png_gamma_significant(g
) != 0)
1670 back_1
.red
= png_gamma_8bit_correct(png_ptr
->background
.red
,
1672 back_1
.green
= png_gamma_8bit_correct(
1673 png_ptr
->background
.green
, g
);
1674 back_1
.blue
= png_gamma_8bit_correct(png_ptr
->background
.blue
,
1680 back_1
.red
= (png_byte
)png_ptr
->background
.red
;
1681 back_1
.green
= (png_byte
)png_ptr
->background
.green
;
1682 back_1
.blue
= (png_byte
)png_ptr
->background
.blue
;
1686 for (i
= 0; i
< num_palette
; i
++)
1688 if (i
< (int)png_ptr
->num_trans
&&
1689 png_ptr
->trans_alpha
[i
] != 0xff)
1691 if (png_ptr
->trans_alpha
[i
] == 0)
1695 else /* if (png_ptr->trans_alpha[i] != 0xff) */
1699 v
= png_ptr
->gamma_to_1
[palette
[i
].red
];
1700 png_composite(w
, v
, png_ptr
->trans_alpha
[i
], back_1
.red
);
1701 palette
[i
].red
= png_ptr
->gamma_from_1
[w
];
1703 v
= png_ptr
->gamma_to_1
[palette
[i
].green
];
1704 png_composite(w
, v
, png_ptr
->trans_alpha
[i
], back_1
.green
);
1705 palette
[i
].green
= png_ptr
->gamma_from_1
[w
];
1707 v
= png_ptr
->gamma_to_1
[palette
[i
].blue
];
1708 png_composite(w
, v
, png_ptr
->trans_alpha
[i
], back_1
.blue
);
1709 palette
[i
].blue
= png_ptr
->gamma_from_1
[w
];
1714 palette
[i
].red
= png_ptr
->gamma_table
[palette
[i
].red
];
1715 palette
[i
].green
= png_ptr
->gamma_table
[palette
[i
].green
];
1716 palette
[i
].blue
= png_ptr
->gamma_table
[palette
[i
].blue
];
1720 /* Prevent the transformations being done again.
1722 * NOTE: this is highly dubious; it removes the transformations in
1723 * place. This seems inconsistent with the general treatment of the
1724 * transformations elsewhere.
1726 png_ptr
->transformations
&= ~(PNG_COMPOSE
| PNG_GAMMA
);
1727 } /* color_type == PNG_COLOR_TYPE_PALETTE */
1729 /* if (png_ptr->background_gamma_type!=PNG_BACKGROUND_GAMMA_UNKNOWN) */
1730 else /* color_type != PNG_COLOR_TYPE_PALETTE */
1733 png_fixed_point g
= PNG_FP_1
; /* Correction to linear */
1734 png_fixed_point gs
= PNG_FP_1
; /* Correction to screen */
1736 switch (png_ptr
->background_gamma_type
)
1738 case PNG_BACKGROUND_GAMMA_SCREEN
:
1739 g
= png_ptr
->screen_gamma
;
1740 /* gs = PNG_FP_1; */
1743 case PNG_BACKGROUND_GAMMA_FILE
:
1744 g
= png_reciprocal(png_ptr
->colorspace
.gamma
);
1745 gs
= png_reciprocal2(png_ptr
->colorspace
.gamma
,
1746 png_ptr
->screen_gamma
);
1749 case PNG_BACKGROUND_GAMMA_UNIQUE
:
1750 g
= png_reciprocal(png_ptr
->background_gamma
);
1751 gs
= png_reciprocal2(png_ptr
->background_gamma
,
1752 png_ptr
->screen_gamma
);
1756 png_error(png_ptr
, "invalid background gamma type");
1759 g_sig
= png_gamma_significant(g
);
1760 gs_sig
= png_gamma_significant(gs
);
1763 png_ptr
->background_1
.gray
= png_gamma_correct(png_ptr
,
1764 png_ptr
->background
.gray
, g
);
1767 png_ptr
->background
.gray
= png_gamma_correct(png_ptr
,
1768 png_ptr
->background
.gray
, gs
);
1770 if ((png_ptr
->background
.red
!= png_ptr
->background
.green
) ||
1771 (png_ptr
->background
.red
!= png_ptr
->background
.blue
) ||
1772 (png_ptr
->background
.red
!= png_ptr
->background
.gray
))
1774 /* RGB or RGBA with color background */
1777 png_ptr
->background_1
.red
= png_gamma_correct(png_ptr
,
1778 png_ptr
->background
.red
, g
);
1780 png_ptr
->background_1
.green
= png_gamma_correct(png_ptr
,
1781 png_ptr
->background
.green
, g
);
1783 png_ptr
->background_1
.blue
= png_gamma_correct(png_ptr
,
1784 png_ptr
->background
.blue
, g
);
1789 png_ptr
->background
.red
= png_gamma_correct(png_ptr
,
1790 png_ptr
->background
.red
, gs
);
1792 png_ptr
->background
.green
= png_gamma_correct(png_ptr
,
1793 png_ptr
->background
.green
, gs
);
1795 png_ptr
->background
.blue
= png_gamma_correct(png_ptr
,
1796 png_ptr
->background
.blue
, gs
);
1802 /* GRAY, GRAY ALPHA, RGB, or RGBA with gray background */
1803 png_ptr
->background_1
.red
= png_ptr
->background_1
.green
1804 = png_ptr
->background_1
.blue
= png_ptr
->background_1
.gray
;
1806 png_ptr
->background
.red
= png_ptr
->background
.green
1807 = png_ptr
->background
.blue
= png_ptr
->background
.gray
;
1810 /* The background is now in screen gamma: */
1811 png_ptr
->background_gamma_type
= PNG_BACKGROUND_GAMMA_SCREEN
;
1812 } /* color_type != PNG_COLOR_TYPE_PALETTE */
1813 }/* png_ptr->transformations & PNG_BACKGROUND */
1816 /* Transformation does not include PNG_BACKGROUND */
1817 #endif /* READ_BACKGROUND */
1818 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
1819 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
1820 /* RGB_TO_GRAY needs to have non-gamma-corrected values! */
1821 && ((png_ptr
->transformations
& PNG_EXPAND
) == 0 ||
1822 (png_ptr
->transformations
& PNG_RGB_TO_GRAY
) == 0)
1826 png_colorp palette
= png_ptr
->palette
;
1827 int num_palette
= png_ptr
->num_palette
;
1830 /* NOTE: there are other transformations that should probably be in
1833 for (i
= 0; i
< num_palette
; i
++)
1835 palette
[i
].red
= png_ptr
->gamma_table
[palette
[i
].red
];
1836 palette
[i
].green
= png_ptr
->gamma_table
[palette
[i
].green
];
1837 palette
[i
].blue
= png_ptr
->gamma_table
[palette
[i
].blue
];
1840 /* Done the gamma correction. */
1841 png_ptr
->transformations
&= ~PNG_GAMMA
;
1842 } /* color_type == PALETTE && !PNG_BACKGROUND transformation */
1844 #ifdef PNG_READ_BACKGROUND_SUPPORTED
1847 #endif /* READ_GAMMA */
1849 #ifdef PNG_READ_BACKGROUND_SUPPORTED
1850 /* No GAMMA transformation (see the hanging else 4 lines above) */
1851 if ((png_ptr
->transformations
& PNG_COMPOSE
) != 0 &&
1852 (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
))
1855 int istop
= (int)png_ptr
->num_trans
;
1857 png_colorp palette
= png_ptr
->palette
;
1859 back
.red
= (png_byte
)png_ptr
->background
.red
;
1860 back
.green
= (png_byte
)png_ptr
->background
.green
;
1861 back
.blue
= (png_byte
)png_ptr
->background
.blue
;
1863 for (i
= 0; i
< istop
; i
++)
1865 if (png_ptr
->trans_alpha
[i
] == 0)
1870 else if (png_ptr
->trans_alpha
[i
] != 0xff)
1872 /* The png_composite() macro is defined in png.h */
1873 png_composite(palette
[i
].red
, palette
[i
].red
,
1874 png_ptr
->trans_alpha
[i
], back
.red
);
1876 png_composite(palette
[i
].green
, palette
[i
].green
,
1877 png_ptr
->trans_alpha
[i
], back
.green
);
1879 png_composite(palette
[i
].blue
, palette
[i
].blue
,
1880 png_ptr
->trans_alpha
[i
], back
.blue
);
1884 png_ptr
->transformations
&= ~PNG_COMPOSE
;
1886 #endif /* READ_BACKGROUND */
1888 #ifdef PNG_READ_SHIFT_SUPPORTED
1889 if ((png_ptr
->transformations
& PNG_SHIFT
) != 0 &&
1890 (png_ptr
->transformations
& PNG_EXPAND
) == 0 &&
1891 (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
))
1894 int istop
= png_ptr
->num_palette
;
1895 int shift
= 8 - png_ptr
->sig_bit
.red
;
1897 png_ptr
->transformations
&= ~PNG_SHIFT
;
1899 /* significant bits can be in the range 1 to 7 for a meaningful result, if
1900 * the number of significant bits is 0 then no shift is done (this is an
1901 * error condition which is silently ignored.)
1903 if (shift
> 0 && shift
< 8)
1904 for (i
=0; i
<istop
; ++i
)
1906 int component
= png_ptr
->palette
[i
].red
;
1908 component
>>= shift
;
1909 png_ptr
->palette
[i
].red
= (png_byte
)component
;
1912 shift
= 8 - png_ptr
->sig_bit
.green
;
1913 if (shift
> 0 && shift
< 8)
1914 for (i
=0; i
<istop
; ++i
)
1916 int component
= png_ptr
->palette
[i
].green
;
1918 component
>>= shift
;
1919 png_ptr
->palette
[i
].green
= (png_byte
)component
;
1922 shift
= 8 - png_ptr
->sig_bit
.blue
;
1923 if (shift
> 0 && shift
< 8)
1924 for (i
=0; i
<istop
; ++i
)
1926 int component
= png_ptr
->palette
[i
].blue
;
1928 component
>>= shift
;
1929 png_ptr
->palette
[i
].blue
= (png_byte
)component
;
1932 #endif /* READ_SHIFT */
1935 /* Modify the info structure to reflect the transformations. The
1936 * info should be updated so a PNG file could be written with it,
1937 * assuming the transformations result in valid PNG data.
1940 png_read_transform_info(png_structrp png_ptr
, png_inforp info_ptr
)
1942 png_debug(1, "in png_read_transform_info");
1944 #ifdef PNG_READ_EXPAND_SUPPORTED
1945 if ((png_ptr
->transformations
& PNG_EXPAND
) != 0)
1947 if (info_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
1949 /* This check must match what actually happens in
1950 * png_do_expand_palette; if it ever checks the tRNS chunk to see if
1951 * it is all opaque we must do the same (at present it does not.)
1953 if (png_ptr
->num_trans
> 0)
1954 info_ptr
->color_type
= PNG_COLOR_TYPE_RGB_ALPHA
;
1957 info_ptr
->color_type
= PNG_COLOR_TYPE_RGB
;
1959 info_ptr
->bit_depth
= 8;
1960 info_ptr
->num_trans
= 0;
1962 if (png_ptr
->palette
== NULL
)
1963 png_error (png_ptr
, "Palette is NULL in indexed image");
1967 if (png_ptr
->num_trans
!= 0)
1969 if ((png_ptr
->transformations
& PNG_EXPAND_tRNS
) != 0)
1970 info_ptr
->color_type
|= PNG_COLOR_MASK_ALPHA
;
1972 if (info_ptr
->bit_depth
< 8)
1973 info_ptr
->bit_depth
= 8;
1975 info_ptr
->num_trans
= 0;
1980 #if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
1981 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
1982 /* The following is almost certainly wrong unless the background value is in
1985 if ((png_ptr
->transformations
& PNG_COMPOSE
) != 0)
1986 info_ptr
->background
= png_ptr
->background
;
1989 #ifdef PNG_READ_GAMMA_SUPPORTED
1990 /* The following used to be conditional on PNG_GAMMA (prior to 1.5.4),
1991 * however it seems that the code in png_init_read_transformations, which has
1992 * been called before this from png_read_update_info->png_read_start_row
1993 * sometimes does the gamma transform and cancels the flag.
1995 * TODO: this looks wrong; the info_ptr should end up with a gamma equal to
1996 * the screen_gamma value. The following probably results in weirdness if
1997 * the info_ptr is used by the app after the rows have been read.
1999 info_ptr
->colorspace
.gamma
= png_ptr
->colorspace
.gamma
;
2002 if (info_ptr
->bit_depth
== 16)
2004 # ifdef PNG_READ_16BIT_SUPPORTED
2005 # ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
2006 if ((png_ptr
->transformations
& PNG_SCALE_16_TO_8
) != 0)
2007 info_ptr
->bit_depth
= 8;
2010 # ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
2011 if ((png_ptr
->transformations
& PNG_16_TO_8
) != 0)
2012 info_ptr
->bit_depth
= 8;
2016 /* No 16-bit support: force chopping 16-bit input down to 8, in this case
2017 * the app program can chose if both APIs are available by setting the
2018 * correct scaling to use.
2020 # ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
2021 /* For compatibility with previous versions use the strip method by
2022 * default. This code works because if PNG_SCALE_16_TO_8 is already
2023 * set the code below will do that in preference to the chop.
2025 png_ptr
->transformations
|= PNG_16_TO_8
;
2026 info_ptr
->bit_depth
= 8;
2029 # ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
2030 png_ptr
->transformations
|= PNG_SCALE_16_TO_8
;
2031 info_ptr
->bit_depth
= 8;
2034 CONFIGURATION ERROR
: you must enable at least one
16 to
8 method
2037 #endif /* !READ_16BIT */
2040 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
2041 if ((png_ptr
->transformations
& PNG_GRAY_TO_RGB
) != 0)
2042 info_ptr
->color_type
= (png_byte
)(info_ptr
->color_type
|
2043 PNG_COLOR_MASK_COLOR
);
2046 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
2047 if ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) != 0)
2048 info_ptr
->color_type
= (png_byte
)(info_ptr
->color_type
&
2049 ~PNG_COLOR_MASK_COLOR
);
2052 #ifdef PNG_READ_QUANTIZE_SUPPORTED
2053 if ((png_ptr
->transformations
& PNG_QUANTIZE
) != 0)
2055 if (((info_ptr
->color_type
== PNG_COLOR_TYPE_RGB
) ||
2056 (info_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)) &&
2057 png_ptr
->palette_lookup
!= 0 && info_ptr
->bit_depth
== 8)
2059 info_ptr
->color_type
= PNG_COLOR_TYPE_PALETTE
;
2064 #ifdef PNG_READ_EXPAND_16_SUPPORTED
2065 if ((png_ptr
->transformations
& PNG_EXPAND_16
) != 0 &&
2066 info_ptr
->bit_depth
== 8 &&
2067 info_ptr
->color_type
!= PNG_COLOR_TYPE_PALETTE
)
2069 info_ptr
->bit_depth
= 16;
2073 #ifdef PNG_READ_PACK_SUPPORTED
2074 if ((png_ptr
->transformations
& PNG_PACK
) != 0 &&
2075 (info_ptr
->bit_depth
< 8))
2076 info_ptr
->bit_depth
= 8;
2079 if (info_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
2080 info_ptr
->channels
= 1;
2082 else if ((info_ptr
->color_type
& PNG_COLOR_MASK_COLOR
) != 0)
2083 info_ptr
->channels
= 3;
2086 info_ptr
->channels
= 1;
2088 #ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
2089 if ((png_ptr
->transformations
& PNG_STRIP_ALPHA
) != 0)
2091 info_ptr
->color_type
= (png_byte
)(info_ptr
->color_type
&
2092 ~PNG_COLOR_MASK_ALPHA
);
2093 info_ptr
->num_trans
= 0;
2097 if ((info_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0)
2098 info_ptr
->channels
++;
2100 #ifdef PNG_READ_FILLER_SUPPORTED
2101 /* STRIP_ALPHA and FILLER allowed: MASK_ALPHA bit stripped above */
2102 if ((png_ptr
->transformations
& PNG_FILLER
) != 0 &&
2103 (info_ptr
->color_type
== PNG_COLOR_TYPE_RGB
||
2104 info_ptr
->color_type
== PNG_COLOR_TYPE_GRAY
))
2106 info_ptr
->channels
++;
2107 /* If adding a true alpha channel not just filler */
2108 if ((png_ptr
->transformations
& PNG_ADD_ALPHA
) != 0)
2109 info_ptr
->color_type
|= PNG_COLOR_MASK_ALPHA
;
2113 #if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED) && \
2114 defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
2115 if ((png_ptr
->transformations
& PNG_USER_TRANSFORM
) != 0)
2117 if (png_ptr
->user_transform_depth
!= 0)
2118 info_ptr
->bit_depth
= png_ptr
->user_transform_depth
;
2120 if (png_ptr
->user_transform_channels
!= 0)
2121 info_ptr
->channels
= png_ptr
->user_transform_channels
;
2125 info_ptr
->pixel_depth
= (png_byte
)(info_ptr
->channels
*
2126 info_ptr
->bit_depth
);
2128 info_ptr
->rowbytes
= PNG_ROWBYTES(info_ptr
->pixel_depth
, info_ptr
->width
);
2130 /* Adding in 1.5.4: cache the above value in png_struct so that we can later
2131 * check in png_rowbytes that the user buffer won't get overwritten. Note
2132 * that the field is not always set - if png_read_update_info isn't called
2133 * the application has to either not do any transforms or get the calculation
2136 png_ptr
->info_rowbytes
= info_ptr
->rowbytes
;
2138 #ifndef PNG_READ_EXPAND_SUPPORTED
2139 if (png_ptr
!= NULL
)
2144 #ifdef PNG_READ_PACK_SUPPORTED
2145 /* Unpack pixels of 1, 2, or 4 bits per pixel into 1 byte per pixel,
2146 * without changing the actual values. Thus, if you had a row with
2147 * a bit depth of 1, you would end up with bytes that only contained
2148 * the numbers 0 or 1. If you would rather they contain 0 and 255, use
2149 * png_do_shift() after this.
2152 png_do_unpack(png_row_infop row_info
, png_bytep row
)
2154 png_debug(1, "in png_do_unpack");
2156 if (row_info
->bit_depth
< 8)
2159 png_uint_32 row_width
=row_info
->width
;
2161 switch (row_info
->bit_depth
)
2165 png_bytep sp
= row
+ (size_t)((row_width
- 1) >> 3);
2166 png_bytep dp
= row
+ (size_t)row_width
- 1;
2167 png_uint_32 shift
= 7U - ((row_width
+ 7U) & 0x07);
2168 for (i
= 0; i
< row_width
; i
++)
2170 *dp
= (png_byte
)((*sp
>> shift
) & 0x01);
2189 png_bytep sp
= row
+ (size_t)((row_width
- 1) >> 2);
2190 png_bytep dp
= row
+ (size_t)row_width
- 1;
2191 png_uint_32 shift
= ((3U - ((row_width
+ 3U) & 0x03)) << 1);
2192 for (i
= 0; i
< row_width
; i
++)
2194 *dp
= (png_byte
)((*sp
>> shift
) & 0x03);
2212 png_bytep sp
= row
+ (size_t)((row_width
- 1) >> 1);
2213 png_bytep dp
= row
+ (size_t)row_width
- 1;
2214 png_uint_32 shift
= ((1U - ((row_width
+ 1U) & 0x01)) << 2);
2215 for (i
= 0; i
< row_width
; i
++)
2217 *dp
= (png_byte
)((*sp
>> shift
) & 0x0f);
2236 row_info
->bit_depth
= 8;
2237 row_info
->pixel_depth
= (png_byte
)(8 * row_info
->channels
);
2238 row_info
->rowbytes
= row_width
* row_info
->channels
;
2243 #ifdef PNG_READ_SHIFT_SUPPORTED
2244 /* Reverse the effects of png_do_shift. This routine merely shifts the
2245 * pixels back to their significant bits values. Thus, if you have
2246 * a row of bit depth 8, but only 5 are significant, this will shift
2247 * the values back to 0 through 31.
2250 png_do_unshift(png_row_infop row_info
, png_bytep row
,
2251 png_const_color_8p sig_bits
)
2255 png_debug(1, "in png_do_unshift");
2257 /* The palette case has already been handled in the _init routine. */
2258 color_type
= row_info
->color_type
;
2260 if (color_type
!= PNG_COLOR_TYPE_PALETTE
)
2264 int bit_depth
= row_info
->bit_depth
;
2266 if ((color_type
& PNG_COLOR_MASK_COLOR
) != 0)
2268 shift
[channels
++] = bit_depth
- sig_bits
->red
;
2269 shift
[channels
++] = bit_depth
- sig_bits
->green
;
2270 shift
[channels
++] = bit_depth
- sig_bits
->blue
;
2275 shift
[channels
++] = bit_depth
- sig_bits
->gray
;
2278 if ((color_type
& PNG_COLOR_MASK_ALPHA
) != 0)
2280 shift
[channels
++] = bit_depth
- sig_bits
->alpha
;
2286 for (c
= have_shift
= 0; c
< channels
; ++c
)
2288 /* A shift of more than the bit depth is an error condition but it
2289 * gets ignored here.
2291 if (shift
[c
] <= 0 || shift
[c
] >= bit_depth
)
2298 if (have_shift
== 0)
2305 /* Must be 1bpp gray: should not be here! */
2310 /* Must be 2bpp gray */
2311 /* assert(channels == 1 && shift[0] == 1) */
2314 png_bytep bp_end
= bp
+ row_info
->rowbytes
;
2318 int b
= (*bp
>> 1) & 0x55;
2319 *bp
++ = (png_byte
)b
;
2325 /* Must be 4bpp gray */
2326 /* assert(channels == 1) */
2329 png_bytep bp_end
= bp
+ row_info
->rowbytes
;
2330 int gray_shift
= shift
[0];
2331 int mask
= 0xf >> gray_shift
;
2337 int b
= (*bp
>> gray_shift
) & mask
;
2338 *bp
++ = (png_byte
)b
;
2344 /* Single byte components, G, GA, RGB, RGBA */
2347 png_bytep bp_end
= bp
+ row_info
->rowbytes
;
2352 int b
= *bp
>> shift
[channel
];
2353 if (++channel
>= channels
)
2355 *bp
++ = (png_byte
)b
;
2360 #ifdef PNG_READ_16BIT_SUPPORTED
2362 /* Double byte components, G, GA, RGB, RGBA */
2365 png_bytep bp_end
= bp
+ row_info
->rowbytes
;
2370 int value
= (bp
[0] << 8) + bp
[1];
2372 value
>>= shift
[channel
];
2373 if (++channel
>= channels
)
2375 *bp
++ = (png_byte
)(value
>> 8);
2376 *bp
++ = (png_byte
)value
;
2386 #ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
2387 /* Scale rows of bit depth 16 down to 8 accurately */
2389 png_do_scale_16_to_8(png_row_infop row_info
, png_bytep row
)
2391 png_debug(1, "in png_do_scale_16_to_8");
2393 if (row_info
->bit_depth
== 16)
2395 png_bytep sp
= row
; /* source */
2396 png_bytep dp
= row
; /* destination */
2397 png_bytep ep
= sp
+ row_info
->rowbytes
; /* end+1 */
2401 /* The input is an array of 16-bit components, these must be scaled to
2402 * 8 bits each. For a 16-bit value V the required value (from the PNG
2403 * specification) is:
2407 * This reduces to round(V / 257), or floor((V + 128.5)/257)
2409 * Represent V as the two byte value vhi.vlo. Make a guess that the
2410 * result is the top byte of V, vhi, then the correction to this value
2413 * error = floor(((V-vhi.vhi) + 128.5) / 257)
2414 * = floor(((vlo-vhi) + 128.5) / 257)
2416 * This can be approximated using integer arithmetic (and a signed
2419 * error = (vlo-vhi+128) >> 8;
2421 * The approximate differs from the exact answer only when (vlo-vhi) is
2422 * 128; it then gives a correction of +1 when the exact correction is
2423 * 0. This gives 128 errors. The exact answer (correct for all 16-bit
2426 * error = (vlo-vhi+128)*65535 >> 24;
2428 * An alternative arithmetic calculation which also gives no errors is:
2430 * (V * 255 + 32895) >> 16
2433 png_int_32 tmp
= *sp
++; /* must be signed! */
2434 tmp
+= (((int)*sp
++ - tmp
+ 128) * 65535) >> 24;
2435 *dp
++ = (png_byte
)tmp
;
2438 row_info
->bit_depth
= 8;
2439 row_info
->pixel_depth
= (png_byte
)(8 * row_info
->channels
);
2440 row_info
->rowbytes
= row_info
->width
* row_info
->channels
;
2445 #ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
2447 /* Simply discard the low byte. This was the default behavior prior
2450 png_do_chop(png_row_infop row_info
, png_bytep row
)
2452 png_debug(1, "in png_do_chop");
2454 if (row_info
->bit_depth
== 16)
2456 png_bytep sp
= row
; /* source */
2457 png_bytep dp
= row
; /* destination */
2458 png_bytep ep
= sp
+ row_info
->rowbytes
; /* end+1 */
2463 sp
+= 2; /* skip low byte */
2466 row_info
->bit_depth
= 8;
2467 row_info
->pixel_depth
= (png_byte
)(8 * row_info
->channels
);
2468 row_info
->rowbytes
= row_info
->width
* row_info
->channels
;
2473 #ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
2475 png_do_read_swap_alpha(png_row_infop row_info
, png_bytep row
)
2477 png_uint_32 row_width
= row_info
->width
;
2479 png_debug(1, "in png_do_read_swap_alpha");
2481 if (row_info
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
2483 /* This converts from RGBA to ARGB */
2484 if (row_info
->bit_depth
== 8)
2486 png_bytep sp
= row
+ row_info
->rowbytes
;
2491 for (i
= 0; i
< row_width
; i
++)
2501 #ifdef PNG_READ_16BIT_SUPPORTED
2502 /* This converts from RRGGBBAA to AARRGGBB */
2505 png_bytep sp
= row
+ row_info
->rowbytes
;
2510 for (i
= 0; i
< row_width
; i
++)
2527 else if (row_info
->color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
2529 /* This converts from GA to AG */
2530 if (row_info
->bit_depth
== 8)
2532 png_bytep sp
= row
+ row_info
->rowbytes
;
2537 for (i
= 0; i
< row_width
; i
++)
2545 #ifdef PNG_READ_16BIT_SUPPORTED
2546 /* This converts from GGAA to AAGG */
2549 png_bytep sp
= row
+ row_info
->rowbytes
;
2554 for (i
= 0; i
< row_width
; i
++)
2569 #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
2571 png_do_read_invert_alpha(png_row_infop row_info
, png_bytep row
)
2573 png_uint_32 row_width
;
2574 png_debug(1, "in png_do_read_invert_alpha");
2576 row_width
= row_info
->width
;
2577 if (row_info
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
2579 if (row_info
->bit_depth
== 8)
2581 /* This inverts the alpha channel in RGBA */
2582 png_bytep sp
= row
+ row_info
->rowbytes
;
2586 for (i
= 0; i
< row_width
; i
++)
2588 *(--dp
) = (png_byte
)(255 - *(--sp
));
2590 /* This does nothing:
2594 We can replace it with:
2601 #ifdef PNG_READ_16BIT_SUPPORTED
2602 /* This inverts the alpha channel in RRGGBBAA */
2605 png_bytep sp
= row
+ row_info
->rowbytes
;
2609 for (i
= 0; i
< row_width
; i
++)
2611 *(--dp
) = (png_byte
)(255 - *(--sp
));
2612 *(--dp
) = (png_byte
)(255 - *(--sp
));
2614 /* This does nothing:
2621 We can replace it with:
2629 else if (row_info
->color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
2631 if (row_info
->bit_depth
== 8)
2633 /* This inverts the alpha channel in GA */
2634 png_bytep sp
= row
+ row_info
->rowbytes
;
2638 for (i
= 0; i
< row_width
; i
++)
2640 *(--dp
) = (png_byte
)(255 - *(--sp
));
2645 #ifdef PNG_READ_16BIT_SUPPORTED
2648 /* This inverts the alpha channel in GGAA */
2649 png_bytep sp
= row
+ row_info
->rowbytes
;
2653 for (i
= 0; i
< row_width
; i
++)
2655 *(--dp
) = (png_byte
)(255 - *(--sp
));
2656 *(--dp
) = (png_byte
)(255 - *(--sp
));
2670 #ifdef PNG_READ_FILLER_SUPPORTED
2671 /* Add filler channel if we have RGB color */
2673 png_do_read_filler(png_row_infop row_info
, png_bytep row
,
2674 png_uint_32 filler
, png_uint_32 flags
)
2677 png_uint_32 row_width
= row_info
->width
;
2679 #ifdef PNG_READ_16BIT_SUPPORTED
2680 png_byte hi_filler
= (png_byte
)(filler
>>8);
2682 png_byte lo_filler
= (png_byte
)filler
;
2684 png_debug(1, "in png_do_read_filler");
2687 row_info
->color_type
== PNG_COLOR_TYPE_GRAY
)
2689 if (row_info
->bit_depth
== 8)
2691 if ((flags
& PNG_FLAG_FILLER_AFTER
) != 0)
2693 /* This changes the data from G to GX */
2694 png_bytep sp
= row
+ (size_t)row_width
;
2695 png_bytep dp
= sp
+ (size_t)row_width
;
2696 for (i
= 1; i
< row_width
; i
++)
2698 *(--dp
) = lo_filler
;
2701 *(--dp
) = lo_filler
;
2702 row_info
->channels
= 2;
2703 row_info
->pixel_depth
= 16;
2704 row_info
->rowbytes
= row_width
* 2;
2709 /* This changes the data from G to XG */
2710 png_bytep sp
= row
+ (size_t)row_width
;
2711 png_bytep dp
= sp
+ (size_t)row_width
;
2712 for (i
= 0; i
< row_width
; i
++)
2715 *(--dp
) = lo_filler
;
2717 row_info
->channels
= 2;
2718 row_info
->pixel_depth
= 16;
2719 row_info
->rowbytes
= row_width
* 2;
2723 #ifdef PNG_READ_16BIT_SUPPORTED
2724 else if (row_info
->bit_depth
== 16)
2726 if ((flags
& PNG_FLAG_FILLER_AFTER
) != 0)
2728 /* This changes the data from GG to GGXX */
2729 png_bytep sp
= row
+ (size_t)row_width
* 2;
2730 png_bytep dp
= sp
+ (size_t)row_width
* 2;
2731 for (i
= 1; i
< row_width
; i
++)
2733 *(--dp
) = lo_filler
;
2734 *(--dp
) = hi_filler
;
2738 *(--dp
) = lo_filler
;
2739 *(--dp
) = hi_filler
;
2740 row_info
->channels
= 2;
2741 row_info
->pixel_depth
= 32;
2742 row_info
->rowbytes
= row_width
* 4;
2747 /* This changes the data from GG to XXGG */
2748 png_bytep sp
= row
+ (size_t)row_width
* 2;
2749 png_bytep dp
= sp
+ (size_t)row_width
* 2;
2750 for (i
= 0; i
< row_width
; i
++)
2754 *(--dp
) = lo_filler
;
2755 *(--dp
) = hi_filler
;
2757 row_info
->channels
= 2;
2758 row_info
->pixel_depth
= 32;
2759 row_info
->rowbytes
= row_width
* 4;
2763 } /* COLOR_TYPE == GRAY */
2764 else if (row_info
->color_type
== PNG_COLOR_TYPE_RGB
)
2766 if (row_info
->bit_depth
== 8)
2768 if ((flags
& PNG_FLAG_FILLER_AFTER
) != 0)
2770 /* This changes the data from RGB to RGBX */
2771 png_bytep sp
= row
+ (size_t)row_width
* 3;
2772 png_bytep dp
= sp
+ (size_t)row_width
;
2773 for (i
= 1; i
< row_width
; i
++)
2775 *(--dp
) = lo_filler
;
2780 *(--dp
) = lo_filler
;
2781 row_info
->channels
= 4;
2782 row_info
->pixel_depth
= 32;
2783 row_info
->rowbytes
= row_width
* 4;
2788 /* This changes the data from RGB to XRGB */
2789 png_bytep sp
= row
+ (size_t)row_width
* 3;
2790 png_bytep dp
= sp
+ (size_t)row_width
;
2791 for (i
= 0; i
< row_width
; i
++)
2796 *(--dp
) = lo_filler
;
2798 row_info
->channels
= 4;
2799 row_info
->pixel_depth
= 32;
2800 row_info
->rowbytes
= row_width
* 4;
2804 #ifdef PNG_READ_16BIT_SUPPORTED
2805 else if (row_info
->bit_depth
== 16)
2807 if ((flags
& PNG_FLAG_FILLER_AFTER
) != 0)
2809 /* This changes the data from RRGGBB to RRGGBBXX */
2810 png_bytep sp
= row
+ (size_t)row_width
* 6;
2811 png_bytep dp
= sp
+ (size_t)row_width
* 2;
2812 for (i
= 1; i
< row_width
; i
++)
2814 *(--dp
) = lo_filler
;
2815 *(--dp
) = hi_filler
;
2823 *(--dp
) = lo_filler
;
2824 *(--dp
) = hi_filler
;
2825 row_info
->channels
= 4;
2826 row_info
->pixel_depth
= 64;
2827 row_info
->rowbytes
= row_width
* 8;
2832 /* This changes the data from RRGGBB to XXRRGGBB */
2833 png_bytep sp
= row
+ (size_t)row_width
* 6;
2834 png_bytep dp
= sp
+ (size_t)row_width
* 2;
2835 for (i
= 0; i
< row_width
; i
++)
2843 *(--dp
) = lo_filler
;
2844 *(--dp
) = hi_filler
;
2847 row_info
->channels
= 4;
2848 row_info
->pixel_depth
= 64;
2849 row_info
->rowbytes
= row_width
* 8;
2853 } /* COLOR_TYPE == RGB */
2857 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
2858 /* Expand grayscale files to RGB, with or without alpha */
2860 png_do_gray_to_rgb(png_row_infop row_info
, png_bytep row
)
2863 png_uint_32 row_width
= row_info
->width
;
2865 png_debug(1, "in png_do_gray_to_rgb");
2867 if (row_info
->bit_depth
>= 8 &&
2868 (row_info
->color_type
& PNG_COLOR_MASK_COLOR
) == 0)
2870 if (row_info
->color_type
== PNG_COLOR_TYPE_GRAY
)
2872 if (row_info
->bit_depth
== 8)
2874 /* This changes G to RGB */
2875 png_bytep sp
= row
+ (size_t)row_width
- 1;
2876 png_bytep dp
= sp
+ (size_t)row_width
* 2;
2877 for (i
= 0; i
< row_width
; i
++)
2887 /* This changes GG to RRGGBB */
2888 png_bytep sp
= row
+ (size_t)row_width
* 2 - 1;
2889 png_bytep dp
= sp
+ (size_t)row_width
* 4;
2890 for (i
= 0; i
< row_width
; i
++)
2893 *(dp
--) = *(sp
- 1);
2895 *(dp
--) = *(sp
- 1);
2902 else if (row_info
->color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
2904 if (row_info
->bit_depth
== 8)
2906 /* This changes GA to RGBA */
2907 png_bytep sp
= row
+ (size_t)row_width
* 2 - 1;
2908 png_bytep dp
= sp
+ (size_t)row_width
* 2;
2909 for (i
= 0; i
< row_width
; i
++)
2920 /* This changes GGAA to RRGGBBAA */
2921 png_bytep sp
= row
+ (size_t)row_width
* 4 - 1;
2922 png_bytep dp
= sp
+ (size_t)row_width
* 4;
2923 for (i
= 0; i
< row_width
; i
++)
2928 *(dp
--) = *(sp
- 1);
2930 *(dp
--) = *(sp
- 1);
2936 row_info
->channels
= (png_byte
)(row_info
->channels
+ 2);
2937 row_info
->color_type
|= PNG_COLOR_MASK_COLOR
;
2938 row_info
->pixel_depth
= (png_byte
)(row_info
->channels
*
2939 row_info
->bit_depth
);
2940 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
, row_width
);
2945 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
2946 /* Reduce RGB files to grayscale, with or without alpha
2947 * using the equation given in Poynton's ColorFAQ of 1998-01-04 at
2948 * <http://www.inforamp.net/~poynton/> (THIS LINK IS DEAD June 2008 but
2949 * versions dated 1998 through November 2002 have been archived at
2950 * https://web.archive.org/web/20000816232553/www.inforamp.net/
2951 * ~poynton/notes/colour_and_gamma/ColorFAQ.txt )
2952 * Charles Poynton poynton at poynton.com
2954 * Y = 0.212671 * R + 0.715160 * G + 0.072169 * B
2956 * which can be expressed with integers as
2958 * Y = (6969 * R + 23434 * G + 2365 * B)/32768
2960 * Poynton's current link (as of January 2003 through July 2011):
2961 * <http://www.poynton.com/notes/colour_and_gamma/>
2962 * has changed the numbers slightly:
2964 * Y = 0.2126*R + 0.7152*G + 0.0722*B
2966 * which can be expressed with integers as
2968 * Y = (6966 * R + 23436 * G + 2366 * B)/32768
2970 * Historically, however, libpng uses numbers derived from the ITU-R Rec 709
2971 * end point chromaticities and the D65 white point. Depending on the
2972 * precision used for the D65 white point this produces a variety of different
2973 * numbers, however if the four decimal place value used in ITU-R Rec 709 is
2974 * used (0.3127,0.3290) the Y calculation would be:
2976 * Y = (6968 * R + 23435 * G + 2366 * B)/32768
2978 * While this is correct the rounding results in an overflow for white, because
2979 * the sum of the rounded coefficients is 32769, not 32768. Consequently
2980 * libpng uses, instead, the closest non-overflowing approximation:
2982 * Y = (6968 * R + 23434 * G + 2366 * B)/32768
2984 * Starting with libpng-1.5.5, if the image being converted has a cHRM chunk
2985 * (including an sRGB chunk) then the chromaticities are used to calculate the
2986 * coefficients. See the chunk handling in pngrutil.c for more information.
2988 * In all cases the calculation is to be done in a linear colorspace. If no
2989 * gamma information is available to correct the encoding of the original RGB
2990 * values this results in an implicit assumption that the original PNG RGB
2991 * values were linear.
2993 * Other integer coefficients can be used via png_set_rgb_to_gray(). Because
2994 * the API takes just red and green coefficients the blue coefficient is
2995 * calculated to make the sum 32768. This will result in different rounding
2996 * to that used above.
2999 png_do_rgb_to_gray(png_structrp png_ptr
, png_row_infop row_info
, png_bytep row
)
3003 png_debug(1, "in png_do_rgb_to_gray");
3005 if ((row_info
->color_type
& PNG_COLOR_MASK_PALETTE
) == 0 &&
3006 (row_info
->color_type
& PNG_COLOR_MASK_COLOR
) != 0)
3008 png_uint_32 rc
= png_ptr
->rgb_to_gray_red_coeff
;
3009 png_uint_32 gc
= png_ptr
->rgb_to_gray_green_coeff
;
3010 png_uint_32 bc
= 32768 - rc
- gc
;
3011 png_uint_32 row_width
= row_info
->width
;
3012 int have_alpha
= (row_info
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0;
3014 if (row_info
->bit_depth
== 8)
3016 #ifdef PNG_READ_GAMMA_SUPPORTED
3017 /* Notice that gamma to/from 1 are not necessarily inverses (if
3018 * there is an overall gamma correction). Prior to 1.5.5 this code
3019 * checked the linearized values for equality; this doesn't match
3020 * the documentation, the original values must be checked.
3022 if (png_ptr
->gamma_from_1
!= NULL
&& png_ptr
->gamma_to_1
!= NULL
)
3028 for (i
= 0; i
< row_width
; i
++)
3030 png_byte red
= *(sp
++);
3031 png_byte green
= *(sp
++);
3032 png_byte blue
= *(sp
++);
3034 if (red
!= green
|| red
!= blue
)
3036 red
= png_ptr
->gamma_to_1
[red
];
3037 green
= png_ptr
->gamma_to_1
[green
];
3038 blue
= png_ptr
->gamma_to_1
[blue
];
3041 *(dp
++) = png_ptr
->gamma_from_1
[
3042 (rc
*red
+ gc
*green
+ bc
*blue
+ 16384)>>15];
3047 /* If there is no overall correction the table will not be
3050 if (png_ptr
->gamma_table
!= NULL
)
3051 red
= png_ptr
->gamma_table
[red
];
3056 if (have_alpha
!= 0)
3067 for (i
= 0; i
< row_width
; i
++)
3069 png_byte red
= *(sp
++);
3070 png_byte green
= *(sp
++);
3071 png_byte blue
= *(sp
++);
3073 if (red
!= green
|| red
!= blue
)
3076 /* NOTE: this is the historical approach which simply
3077 * truncates the results.
3079 *(dp
++) = (png_byte
)((rc
*red
+ gc
*green
+ bc
*blue
)>>15);
3085 if (have_alpha
!= 0)
3091 else /* RGB bit_depth == 16 */
3093 #ifdef PNG_READ_GAMMA_SUPPORTED
3094 if (png_ptr
->gamma_16_to_1
!= NULL
&& png_ptr
->gamma_16_from_1
!= NULL
)
3100 for (i
= 0; i
< row_width
; i
++)
3102 png_uint_16 red
, green
, blue
, w
;
3105 hi
=*(sp
)++; lo
=*(sp
)++; red
= (png_uint_16
)((hi
<< 8) | (lo
));
3106 hi
=*(sp
)++; lo
=*(sp
)++; green
= (png_uint_16
)((hi
<< 8) | (lo
));
3107 hi
=*(sp
)++; lo
=*(sp
)++; blue
= (png_uint_16
)((hi
<< 8) | (lo
));
3109 if (red
== green
&& red
== blue
)
3111 if (png_ptr
->gamma_16_table
!= NULL
)
3112 w
= png_ptr
->gamma_16_table
[(red
& 0xff)
3113 >> png_ptr
->gamma_shift
][red
>> 8];
3121 png_uint_16 red_1
= png_ptr
->gamma_16_to_1
[(red
& 0xff)
3122 >> png_ptr
->gamma_shift
][red
>>8];
3123 png_uint_16 green_1
=
3124 png_ptr
->gamma_16_to_1
[(green
& 0xff) >>
3125 png_ptr
->gamma_shift
][green
>>8];
3126 png_uint_16 blue_1
= png_ptr
->gamma_16_to_1
[(blue
& 0xff)
3127 >> png_ptr
->gamma_shift
][blue
>>8];
3128 png_uint_16 gray16
= (png_uint_16
)((rc
*red_1
+ gc
*green_1
3129 + bc
*blue_1
+ 16384)>>15);
3130 w
= png_ptr
->gamma_16_from_1
[(gray16
& 0xff) >>
3131 png_ptr
->gamma_shift
][gray16
>> 8];
3135 *(dp
++) = (png_byte
)((w
>>8) & 0xff);
3136 *(dp
++) = (png_byte
)(w
& 0xff);
3138 if (have_alpha
!= 0)
3152 for (i
= 0; i
< row_width
; i
++)
3154 png_uint_16 red
, green
, blue
, gray16
;
3157 hi
=*(sp
)++; lo
=*(sp
)++; red
= (png_uint_16
)((hi
<< 8) | (lo
));
3158 hi
=*(sp
)++; lo
=*(sp
)++; green
= (png_uint_16
)((hi
<< 8) | (lo
));
3159 hi
=*(sp
)++; lo
=*(sp
)++; blue
= (png_uint_16
)((hi
<< 8) | (lo
));
3161 if (red
!= green
|| red
!= blue
)
3164 /* From 1.5.5 in the 16-bit case do the accurate conversion even
3165 * in the 'fast' case - this is because this is where the code
3166 * ends up when handling linear 16-bit data.
3168 gray16
= (png_uint_16
)((rc
*red
+ gc
*green
+ bc
*blue
+ 16384) >>
3170 *(dp
++) = (png_byte
)((gray16
>> 8) & 0xff);
3171 *(dp
++) = (png_byte
)(gray16
& 0xff);
3173 if (have_alpha
!= 0)
3182 row_info
->channels
= (png_byte
)(row_info
->channels
- 2);
3183 row_info
->color_type
= (png_byte
)(row_info
->color_type
&
3184 ~PNG_COLOR_MASK_COLOR
);
3185 row_info
->pixel_depth
= (png_byte
)(row_info
->channels
*
3186 row_info
->bit_depth
);
3187 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
, row_width
);
3193 #if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
3194 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
3195 /* Replace any alpha or transparency with the supplied background color.
3196 * "background" is already in the screen gamma, while "background_1" is
3197 * at a gamma of 1.0. Paletted files have already been taken care of.
3200 png_do_compose(png_row_infop row_info
, png_bytep row
, png_structrp png_ptr
)
3202 #ifdef PNG_READ_GAMMA_SUPPORTED
3203 png_const_bytep gamma_table
= png_ptr
->gamma_table
;
3204 png_const_bytep gamma_from_1
= png_ptr
->gamma_from_1
;
3205 png_const_bytep gamma_to_1
= png_ptr
->gamma_to_1
;
3206 png_const_uint_16pp gamma_16
= png_ptr
->gamma_16_table
;
3207 png_const_uint_16pp gamma_16_from_1
= png_ptr
->gamma_16_from_1
;
3208 png_const_uint_16pp gamma_16_to_1
= png_ptr
->gamma_16_to_1
;
3209 int gamma_shift
= png_ptr
->gamma_shift
;
3210 int optimize
= (png_ptr
->flags
& PNG_FLAG_OPTIMIZE_ALPHA
) != 0;
3215 png_uint_32 row_width
= row_info
->width
;
3218 png_debug(1, "in png_do_compose");
3220 switch (row_info
->color_type
)
3222 case PNG_COLOR_TYPE_GRAY
:
3224 switch (row_info
->bit_depth
)
3230 for (i
= 0; i
< row_width
; i
++)
3232 if ((png_uint_16
)((*sp
>> shift
) & 0x01)
3233 == png_ptr
->trans_color
.gray
)
3235 unsigned int tmp
= *sp
& (0x7f7f >> (7 - shift
));
3237 (unsigned int)(png_ptr
->background
.gray
<< shift
);
3238 *sp
= (png_byte
)(tmp
& 0xff);
3255 #ifdef PNG_READ_GAMMA_SUPPORTED
3256 if (gamma_table
!= NULL
)
3260 for (i
= 0; i
< row_width
; i
++)
3262 if ((png_uint_16
)((*sp
>> shift
) & 0x03)
3263 == png_ptr
->trans_color
.gray
)
3265 unsigned int tmp
= *sp
& (0x3f3f >> (6 - shift
));
3267 (unsigned int)png_ptr
->background
.gray
<< shift
;
3268 *sp
= (png_byte
)(tmp
& 0xff);
3273 unsigned int p
= (*sp
>> shift
) & 0x03;
3274 unsigned int g
= (gamma_table
[p
| (p
<< 2) |
3275 (p
<< 4) | (p
<< 6)] >> 6) & 0x03;
3276 unsigned int tmp
= *sp
& (0x3f3f >> (6 - shift
));
3277 tmp
|= (unsigned int)(g
<< shift
);
3278 *sp
= (png_byte
)(tmp
& 0xff);
3297 for (i
= 0; i
< row_width
; i
++)
3299 if ((png_uint_16
)((*sp
>> shift
) & 0x03)
3300 == png_ptr
->trans_color
.gray
)
3302 unsigned int tmp
= *sp
& (0x3f3f >> (6 - shift
));
3304 (unsigned int)png_ptr
->background
.gray
<< shift
;
3305 *sp
= (png_byte
)(tmp
& 0xff);
3323 #ifdef PNG_READ_GAMMA_SUPPORTED
3324 if (gamma_table
!= NULL
)
3328 for (i
= 0; i
< row_width
; i
++)
3330 if ((png_uint_16
)((*sp
>> shift
) & 0x0f)
3331 == png_ptr
->trans_color
.gray
)
3333 unsigned int tmp
= *sp
& (0x0f0f >> (4 - shift
));
3335 (unsigned int)(png_ptr
->background
.gray
<< shift
);
3336 *sp
= (png_byte
)(tmp
& 0xff);
3341 unsigned int p
= (*sp
>> shift
) & 0x0f;
3342 unsigned int g
= (gamma_table
[p
| (p
<< 4)] >> 4) &
3344 unsigned int tmp
= *sp
& (0x0f0f >> (4 - shift
));
3345 tmp
|= (unsigned int)(g
<< shift
);
3346 *sp
= (png_byte
)(tmp
& 0xff);
3365 for (i
= 0; i
< row_width
; i
++)
3367 if ((png_uint_16
)((*sp
>> shift
) & 0x0f)
3368 == png_ptr
->trans_color
.gray
)
3370 unsigned int tmp
= *sp
& (0x0f0f >> (4 - shift
));
3372 (unsigned int)(png_ptr
->background
.gray
<< shift
);
3373 *sp
= (png_byte
)(tmp
& 0xff);
3391 #ifdef PNG_READ_GAMMA_SUPPORTED
3392 if (gamma_table
!= NULL
)
3395 for (i
= 0; i
< row_width
; i
++, sp
++)
3397 if (*sp
== png_ptr
->trans_color
.gray
)
3398 *sp
= (png_byte
)png_ptr
->background
.gray
;
3401 *sp
= gamma_table
[*sp
];
3408 for (i
= 0; i
< row_width
; i
++, sp
++)
3410 if (*sp
== png_ptr
->trans_color
.gray
)
3411 *sp
= (png_byte
)png_ptr
->background
.gray
;
3419 #ifdef PNG_READ_GAMMA_SUPPORTED
3420 if (gamma_16
!= NULL
)
3423 for (i
= 0; i
< row_width
; i
++, sp
+= 2)
3427 v
= (png_uint_16
)(((*sp
) << 8) + *(sp
+ 1));
3429 if (v
== png_ptr
->trans_color
.gray
)
3431 /* Background is already in screen gamma */
3432 *sp
= (png_byte
)((png_ptr
->background
.gray
>> 8)
3434 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.gray
3440 v
= gamma_16
[*(sp
+ 1) >> gamma_shift
][*sp
];
3441 *sp
= (png_byte
)((v
>> 8) & 0xff);
3442 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3450 for (i
= 0; i
< row_width
; i
++, sp
+= 2)
3454 v
= (png_uint_16
)(((*sp
) << 8) + *(sp
+ 1));
3456 if (v
== png_ptr
->trans_color
.gray
)
3458 *sp
= (png_byte
)((png_ptr
->background
.gray
>> 8)
3460 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.gray
3474 case PNG_COLOR_TYPE_RGB
:
3476 if (row_info
->bit_depth
== 8)
3478 #ifdef PNG_READ_GAMMA_SUPPORTED
3479 if (gamma_table
!= NULL
)
3482 for (i
= 0; i
< row_width
; i
++, sp
+= 3)
3484 if (*sp
== png_ptr
->trans_color
.red
&&
3485 *(sp
+ 1) == png_ptr
->trans_color
.green
&&
3486 *(sp
+ 2) == png_ptr
->trans_color
.blue
)
3488 *sp
= (png_byte
)png_ptr
->background
.red
;
3489 *(sp
+ 1) = (png_byte
)png_ptr
->background
.green
;
3490 *(sp
+ 2) = (png_byte
)png_ptr
->background
.blue
;
3495 *sp
= gamma_table
[*sp
];
3496 *(sp
+ 1) = gamma_table
[*(sp
+ 1)];
3497 *(sp
+ 2) = gamma_table
[*(sp
+ 2)];
3505 for (i
= 0; i
< row_width
; i
++, sp
+= 3)
3507 if (*sp
== png_ptr
->trans_color
.red
&&
3508 *(sp
+ 1) == png_ptr
->trans_color
.green
&&
3509 *(sp
+ 2) == png_ptr
->trans_color
.blue
)
3511 *sp
= (png_byte
)png_ptr
->background
.red
;
3512 *(sp
+ 1) = (png_byte
)png_ptr
->background
.green
;
3513 *(sp
+ 2) = (png_byte
)png_ptr
->background
.blue
;
3518 else /* if (row_info->bit_depth == 16) */
3520 #ifdef PNG_READ_GAMMA_SUPPORTED
3521 if (gamma_16
!= NULL
)
3524 for (i
= 0; i
< row_width
; i
++, sp
+= 6)
3526 png_uint_16 r
= (png_uint_16
)(((*sp
) << 8) + *(sp
+ 1));
3528 png_uint_16 g
= (png_uint_16
)(((*(sp
+ 2)) << 8)
3531 png_uint_16 b
= (png_uint_16
)(((*(sp
+ 4)) << 8)
3534 if (r
== png_ptr
->trans_color
.red
&&
3535 g
== png_ptr
->trans_color
.green
&&
3536 b
== png_ptr
->trans_color
.blue
)
3538 /* Background is already in screen gamma */
3539 *sp
= (png_byte
)((png_ptr
->background
.red
>> 8) & 0xff);
3540 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.red
& 0xff);
3541 *(sp
+ 2) = (png_byte
)((png_ptr
->background
.green
>> 8)
3543 *(sp
+ 3) = (png_byte
)(png_ptr
->background
.green
3545 *(sp
+ 4) = (png_byte
)((png_ptr
->background
.blue
>> 8)
3547 *(sp
+ 5) = (png_byte
)(png_ptr
->background
.blue
& 0xff);
3552 png_uint_16 v
= gamma_16
[*(sp
+ 1) >> gamma_shift
][*sp
];
3553 *sp
= (png_byte
)((v
>> 8) & 0xff);
3554 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3556 v
= gamma_16
[*(sp
+ 3) >> gamma_shift
][*(sp
+ 2)];
3557 *(sp
+ 2) = (png_byte
)((v
>> 8) & 0xff);
3558 *(sp
+ 3) = (png_byte
)(v
& 0xff);
3560 v
= gamma_16
[*(sp
+ 5) >> gamma_shift
][*(sp
+ 4)];
3561 *(sp
+ 4) = (png_byte
)((v
>> 8) & 0xff);
3562 *(sp
+ 5) = (png_byte
)(v
& 0xff);
3571 for (i
= 0; i
< row_width
; i
++, sp
+= 6)
3573 png_uint_16 r
= (png_uint_16
)(((*sp
) << 8) + *(sp
+ 1));
3575 png_uint_16 g
= (png_uint_16
)(((*(sp
+ 2)) << 8)
3578 png_uint_16 b
= (png_uint_16
)(((*(sp
+ 4)) << 8)
3581 if (r
== png_ptr
->trans_color
.red
&&
3582 g
== png_ptr
->trans_color
.green
&&
3583 b
== png_ptr
->trans_color
.blue
)
3585 *sp
= (png_byte
)((png_ptr
->background
.red
>> 8) & 0xff);
3586 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.red
& 0xff);
3587 *(sp
+ 2) = (png_byte
)((png_ptr
->background
.green
>> 8)
3589 *(sp
+ 3) = (png_byte
)(png_ptr
->background
.green
3591 *(sp
+ 4) = (png_byte
)((png_ptr
->background
.blue
>> 8)
3593 *(sp
+ 5) = (png_byte
)(png_ptr
->background
.blue
& 0xff);
3601 case PNG_COLOR_TYPE_GRAY_ALPHA
:
3603 if (row_info
->bit_depth
== 8)
3605 #ifdef PNG_READ_GAMMA_SUPPORTED
3606 if (gamma_to_1
!= NULL
&& gamma_from_1
!= NULL
&&
3607 gamma_table
!= NULL
)
3610 for (i
= 0; i
< row_width
; i
++, sp
+= 2)
3612 png_uint_16 a
= *(sp
+ 1);
3615 *sp
= gamma_table
[*sp
];
3619 /* Background is already in screen gamma */
3620 *sp
= (png_byte
)png_ptr
->background
.gray
;
3627 v
= gamma_to_1
[*sp
];
3628 png_composite(w
, v
, a
, png_ptr
->background_1
.gray
);
3630 w
= gamma_from_1
[w
];
3639 for (i
= 0; i
< row_width
; i
++, sp
+= 2)
3641 png_byte a
= *(sp
+ 1);
3644 *sp
= (png_byte
)png_ptr
->background
.gray
;
3647 png_composite(*sp
, *sp
, a
, png_ptr
->background
.gray
);
3651 else /* if (png_ptr->bit_depth == 16) */
3653 #ifdef PNG_READ_GAMMA_SUPPORTED
3654 if (gamma_16
!= NULL
&& gamma_16_from_1
!= NULL
&&
3655 gamma_16_to_1
!= NULL
)
3658 for (i
= 0; i
< row_width
; i
++, sp
+= 4)
3660 png_uint_16 a
= (png_uint_16
)(((*(sp
+ 2)) << 8)
3663 if (a
== (png_uint_16
)0xffff)
3667 v
= gamma_16
[*(sp
+ 1) >> gamma_shift
][*sp
];
3668 *sp
= (png_byte
)((v
>> 8) & 0xff);
3669 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3674 /* Background is already in screen gamma */
3675 *sp
= (png_byte
)((png_ptr
->background
.gray
>> 8)
3677 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.gray
& 0xff);
3682 png_uint_16 g
, v
, w
;
3684 g
= gamma_16_to_1
[*(sp
+ 1) >> gamma_shift
][*sp
];
3685 png_composite_16(v
, g
, a
, png_ptr
->background_1
.gray
);
3689 w
= gamma_16_from_1
[(v
& 0xff) >>
3690 gamma_shift
][v
>> 8];
3691 *sp
= (png_byte
)((w
>> 8) & 0xff);
3692 *(sp
+ 1) = (png_byte
)(w
& 0xff);
3700 for (i
= 0; i
< row_width
; i
++, sp
+= 4)
3702 png_uint_16 a
= (png_uint_16
)(((*(sp
+ 2)) << 8)
3707 *sp
= (png_byte
)((png_ptr
->background
.gray
>> 8)
3709 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.gray
& 0xff);
3712 else if (a
< 0xffff)
3716 g
= (png_uint_16
)(((*sp
) << 8) + *(sp
+ 1));
3717 png_composite_16(v
, g
, a
, png_ptr
->background
.gray
);
3718 *sp
= (png_byte
)((v
>> 8) & 0xff);
3719 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3727 case PNG_COLOR_TYPE_RGB_ALPHA
:
3729 if (row_info
->bit_depth
== 8)
3731 #ifdef PNG_READ_GAMMA_SUPPORTED
3732 if (gamma_to_1
!= NULL
&& gamma_from_1
!= NULL
&&
3733 gamma_table
!= NULL
)
3736 for (i
= 0; i
< row_width
; i
++, sp
+= 4)
3738 png_byte a
= *(sp
+ 3);
3742 *sp
= gamma_table
[*sp
];
3743 *(sp
+ 1) = gamma_table
[*(sp
+ 1)];
3744 *(sp
+ 2) = gamma_table
[*(sp
+ 2)];
3749 /* Background is already in screen gamma */
3750 *sp
= (png_byte
)png_ptr
->background
.red
;
3751 *(sp
+ 1) = (png_byte
)png_ptr
->background
.green
;
3752 *(sp
+ 2) = (png_byte
)png_ptr
->background
.blue
;
3759 v
= gamma_to_1
[*sp
];
3760 png_composite(w
, v
, a
, png_ptr
->background_1
.red
);
3761 if (optimize
== 0) w
= gamma_from_1
[w
];
3764 v
= gamma_to_1
[*(sp
+ 1)];
3765 png_composite(w
, v
, a
, png_ptr
->background_1
.green
);
3766 if (optimize
== 0) w
= gamma_from_1
[w
];
3769 v
= gamma_to_1
[*(sp
+ 2)];
3770 png_composite(w
, v
, a
, png_ptr
->background_1
.blue
);
3771 if (optimize
== 0) w
= gamma_from_1
[w
];
3780 for (i
= 0; i
< row_width
; i
++, sp
+= 4)
3782 png_byte a
= *(sp
+ 3);
3786 *sp
= (png_byte
)png_ptr
->background
.red
;
3787 *(sp
+ 1) = (png_byte
)png_ptr
->background
.green
;
3788 *(sp
+ 2) = (png_byte
)png_ptr
->background
.blue
;
3793 png_composite(*sp
, *sp
, a
, png_ptr
->background
.red
);
3795 png_composite(*(sp
+ 1), *(sp
+ 1), a
,
3796 png_ptr
->background
.green
);
3798 png_composite(*(sp
+ 2), *(sp
+ 2), a
,
3799 png_ptr
->background
.blue
);
3804 else /* if (row_info->bit_depth == 16) */
3806 #ifdef PNG_READ_GAMMA_SUPPORTED
3807 if (gamma_16
!= NULL
&& gamma_16_from_1
!= NULL
&&
3808 gamma_16_to_1
!= NULL
)
3811 for (i
= 0; i
< row_width
; i
++, sp
+= 8)
3813 png_uint_16 a
= (png_uint_16
)(((png_uint_16
)(*(sp
+ 6))
3814 << 8) + (png_uint_16
)(*(sp
+ 7)));
3816 if (a
== (png_uint_16
)0xffff)
3820 v
= gamma_16
[*(sp
+ 1) >> gamma_shift
][*sp
];
3821 *sp
= (png_byte
)((v
>> 8) & 0xff);
3822 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3824 v
= gamma_16
[*(sp
+ 3) >> gamma_shift
][*(sp
+ 2)];
3825 *(sp
+ 2) = (png_byte
)((v
>> 8) & 0xff);
3826 *(sp
+ 3) = (png_byte
)(v
& 0xff);
3828 v
= gamma_16
[*(sp
+ 5) >> gamma_shift
][*(sp
+ 4)];
3829 *(sp
+ 4) = (png_byte
)((v
>> 8) & 0xff);
3830 *(sp
+ 5) = (png_byte
)(v
& 0xff);
3835 /* Background is already in screen gamma */
3836 *sp
= (png_byte
)((png_ptr
->background
.red
>> 8) & 0xff);
3837 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.red
& 0xff);
3838 *(sp
+ 2) = (png_byte
)((png_ptr
->background
.green
>> 8)
3840 *(sp
+ 3) = (png_byte
)(png_ptr
->background
.green
3842 *(sp
+ 4) = (png_byte
)((png_ptr
->background
.blue
>> 8)
3844 *(sp
+ 5) = (png_byte
)(png_ptr
->background
.blue
& 0xff);
3851 v
= gamma_16_to_1
[*(sp
+ 1) >> gamma_shift
][*sp
];
3852 png_composite_16(w
, v
, a
, png_ptr
->background_1
.red
);
3854 w
= gamma_16_from_1
[((w
& 0xff) >> gamma_shift
)][w
>>
3856 *sp
= (png_byte
)((w
>> 8) & 0xff);
3857 *(sp
+ 1) = (png_byte
)(w
& 0xff);
3859 v
= gamma_16_to_1
[*(sp
+ 3) >> gamma_shift
][*(sp
+ 2)];
3860 png_composite_16(w
, v
, a
, png_ptr
->background_1
.green
);
3862 w
= gamma_16_from_1
[((w
& 0xff) >> gamma_shift
)][w
>>
3865 *(sp
+ 2) = (png_byte
)((w
>> 8) & 0xff);
3866 *(sp
+ 3) = (png_byte
)(w
& 0xff);
3868 v
= gamma_16_to_1
[*(sp
+ 5) >> gamma_shift
][*(sp
+ 4)];
3869 png_composite_16(w
, v
, a
, png_ptr
->background_1
.blue
);
3871 w
= gamma_16_from_1
[((w
& 0xff) >> gamma_shift
)][w
>>
3874 *(sp
+ 4) = (png_byte
)((w
>> 8) & 0xff);
3875 *(sp
+ 5) = (png_byte
)(w
& 0xff);
3884 for (i
= 0; i
< row_width
; i
++, sp
+= 8)
3886 png_uint_16 a
= (png_uint_16
)(((png_uint_16
)(*(sp
+ 6))
3887 << 8) + (png_uint_16
)(*(sp
+ 7)));
3891 *sp
= (png_byte
)((png_ptr
->background
.red
>> 8) & 0xff);
3892 *(sp
+ 1) = (png_byte
)(png_ptr
->background
.red
& 0xff);
3893 *(sp
+ 2) = (png_byte
)((png_ptr
->background
.green
>> 8)
3895 *(sp
+ 3) = (png_byte
)(png_ptr
->background
.green
3897 *(sp
+ 4) = (png_byte
)((png_ptr
->background
.blue
>> 8)
3899 *(sp
+ 5) = (png_byte
)(png_ptr
->background
.blue
& 0xff);
3902 else if (a
< 0xffff)
3906 png_uint_16 r
= (png_uint_16
)(((*sp
) << 8) + *(sp
+ 1));
3907 png_uint_16 g
= (png_uint_16
)(((*(sp
+ 2)) << 8)
3909 png_uint_16 b
= (png_uint_16
)(((*(sp
+ 4)) << 8)
3912 png_composite_16(v
, r
, a
, png_ptr
->background
.red
);
3913 *sp
= (png_byte
)((v
>> 8) & 0xff);
3914 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3916 png_composite_16(v
, g
, a
, png_ptr
->background
.green
);
3917 *(sp
+ 2) = (png_byte
)((v
>> 8) & 0xff);
3918 *(sp
+ 3) = (png_byte
)(v
& 0xff);
3920 png_composite_16(v
, b
, a
, png_ptr
->background
.blue
);
3921 *(sp
+ 4) = (png_byte
)((v
>> 8) & 0xff);
3922 *(sp
+ 5) = (png_byte
)(v
& 0xff);
3934 #endif /* READ_BACKGROUND || READ_ALPHA_MODE */
3936 #ifdef PNG_READ_GAMMA_SUPPORTED
3937 /* Gamma correct the image, avoiding the alpha channel. Make sure
3938 * you do this after you deal with the transparency issue on grayscale
3939 * or RGB images. If your bit depth is 8, use gamma_table, if it
3940 * is 16, use gamma_16_table and gamma_shift. Build these with
3941 * build_gamma_table().
3944 png_do_gamma(png_row_infop row_info
, png_bytep row
, png_structrp png_ptr
)
3946 png_const_bytep gamma_table
= png_ptr
->gamma_table
;
3947 png_const_uint_16pp gamma_16_table
= png_ptr
->gamma_16_table
;
3948 int gamma_shift
= png_ptr
->gamma_shift
;
3952 png_uint_32 row_width
=row_info
->width
;
3954 png_debug(1, "in png_do_gamma");
3956 if (((row_info
->bit_depth
<= 8 && gamma_table
!= NULL
) ||
3957 (row_info
->bit_depth
== 16 && gamma_16_table
!= NULL
)))
3959 switch (row_info
->color_type
)
3961 case PNG_COLOR_TYPE_RGB
:
3963 if (row_info
->bit_depth
== 8)
3966 for (i
= 0; i
< row_width
; i
++)
3968 *sp
= gamma_table
[*sp
];
3970 *sp
= gamma_table
[*sp
];
3972 *sp
= gamma_table
[*sp
];
3977 else /* if (row_info->bit_depth == 16) */
3980 for (i
= 0; i
< row_width
; i
++)
3984 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
3985 *sp
= (png_byte
)((v
>> 8) & 0xff);
3986 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3989 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
3990 *sp
= (png_byte
)((v
>> 8) & 0xff);
3991 *(sp
+ 1) = (png_byte
)(v
& 0xff);
3994 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
3995 *sp
= (png_byte
)((v
>> 8) & 0xff);
3996 *(sp
+ 1) = (png_byte
)(v
& 0xff);
4003 case PNG_COLOR_TYPE_RGB_ALPHA
:
4005 if (row_info
->bit_depth
== 8)
4008 for (i
= 0; i
< row_width
; i
++)
4010 *sp
= gamma_table
[*sp
];
4013 *sp
= gamma_table
[*sp
];
4016 *sp
= gamma_table
[*sp
];
4023 else /* if (row_info->bit_depth == 16) */
4026 for (i
= 0; i
< row_width
; i
++)
4028 png_uint_16 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
4029 *sp
= (png_byte
)((v
>> 8) & 0xff);
4030 *(sp
+ 1) = (png_byte
)(v
& 0xff);
4033 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
4034 *sp
= (png_byte
)((v
>> 8) & 0xff);
4035 *(sp
+ 1) = (png_byte
)(v
& 0xff);
4038 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
4039 *sp
= (png_byte
)((v
>> 8) & 0xff);
4040 *(sp
+ 1) = (png_byte
)(v
& 0xff);
4047 case PNG_COLOR_TYPE_GRAY_ALPHA
:
4049 if (row_info
->bit_depth
== 8)
4052 for (i
= 0; i
< row_width
; i
++)
4054 *sp
= gamma_table
[*sp
];
4059 else /* if (row_info->bit_depth == 16) */
4062 for (i
= 0; i
< row_width
; i
++)
4064 png_uint_16 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
4065 *sp
= (png_byte
)((v
>> 8) & 0xff);
4066 *(sp
+ 1) = (png_byte
)(v
& 0xff);
4073 case PNG_COLOR_TYPE_GRAY
:
4075 if (row_info
->bit_depth
== 2)
4078 for (i
= 0; i
< row_width
; i
+= 4)
4086 ((((int)gamma_table
[a
|(a
>>2)|(a
>>4)|(a
>>6)]) ) & 0xc0)|
4087 ((((int)gamma_table
[(b
<<2)|b
|(b
>>2)|(b
>>4)])>>2) & 0x30)|
4088 ((((int)gamma_table
[(c
<<4)|(c
<<2)|c
|(c
>>2)])>>4) & 0x0c)|
4089 ((((int)gamma_table
[(d
<<6)|(d
<<4)|(d
<<2)|d
])>>6) ));
4094 if (row_info
->bit_depth
== 4)
4097 for (i
= 0; i
< row_width
; i
+= 2)
4099 int msb
= *sp
& 0xf0;
4100 int lsb
= *sp
& 0x0f;
4102 *sp
= (png_byte
)((((int)gamma_table
[msb
| (msb
>> 4)]) & 0xf0)
4103 | (((int)gamma_table
[(lsb
<< 4) | lsb
]) >> 4));
4108 else if (row_info
->bit_depth
== 8)
4111 for (i
= 0; i
< row_width
; i
++)
4113 *sp
= gamma_table
[*sp
];
4118 else if (row_info
->bit_depth
== 16)
4121 for (i
= 0; i
< row_width
; i
++)
4123 png_uint_16 v
= gamma_16_table
[*(sp
+ 1) >> gamma_shift
][*sp
];
4124 *sp
= (png_byte
)((v
>> 8) & 0xff);
4125 *(sp
+ 1) = (png_byte
)(v
& 0xff);
4139 #ifdef PNG_READ_ALPHA_MODE_SUPPORTED
4140 /* Encode the alpha channel to the output gamma (the input channel is always
4141 * linear.) Called only with color types that have an alpha channel. Needs the
4145 png_do_encode_alpha(png_row_infop row_info
, png_bytep row
, png_structrp png_ptr
)
4147 png_uint_32 row_width
= row_info
->width
;
4149 png_debug(1, "in png_do_encode_alpha");
4151 if ((row_info
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0)
4153 if (row_info
->bit_depth
== 8)
4155 png_bytep table
= png_ptr
->gamma_from_1
;
4159 int step
= (row_info
->color_type
& PNG_COLOR_MASK_COLOR
) ? 4 : 2;
4161 /* The alpha channel is the last component: */
4164 for (; row_width
> 0; --row_width
, row
+= step
)
4171 else if (row_info
->bit_depth
== 16)
4173 png_uint_16pp table
= png_ptr
->gamma_16_from_1
;
4174 int gamma_shift
= png_ptr
->gamma_shift
;
4178 int step
= (row_info
->color_type
& PNG_COLOR_MASK_COLOR
) ? 8 : 4;
4180 /* The alpha channel is the last component: */
4183 for (; row_width
> 0; --row_width
, row
+= step
)
4187 v
= table
[*(row
+ 1) >> gamma_shift
][*row
];
4188 *row
= (png_byte
)((v
>> 8) & 0xff);
4189 *(row
+ 1) = (png_byte
)(v
& 0xff);
4197 /* Only get to here if called with a weird row_info; no harm has been done,
4198 * so just issue a warning.
4200 png_warning(png_ptr
, "png_do_encode_alpha: unexpected call");
4204 #ifdef PNG_READ_EXPAND_SUPPORTED
4205 /* Expands a palette row to an RGB or RGBA row depending
4206 * upon whether you supply trans and num_trans.
4209 png_do_expand_palette(png_structrp png_ptr
, png_row_infop row_info
,
4210 png_bytep row
, png_const_colorp palette
, png_const_bytep trans_alpha
,
4216 png_uint_32 row_width
=row_info
->width
;
4218 png_debug(1, "in png_do_expand_palette");
4220 if (row_info
->color_type
== PNG_COLOR_TYPE_PALETTE
)
4222 if (row_info
->bit_depth
< 8)
4224 switch (row_info
->bit_depth
)
4228 sp
= row
+ (size_t)((row_width
- 1) >> 3);
4229 dp
= row
+ (size_t)row_width
- 1;
4230 shift
= 7 - (int)((row_width
+ 7) & 0x07);
4231 for (i
= 0; i
< row_width
; i
++)
4233 if ((*sp
>> shift
) & 0x01)
4255 sp
= row
+ (size_t)((row_width
- 1) >> 2);
4256 dp
= row
+ (size_t)row_width
- 1;
4257 shift
= (int)((3 - ((row_width
+ 3) & 0x03)) << 1);
4258 for (i
= 0; i
< row_width
; i
++)
4260 value
= (*sp
>> shift
) & 0x03;
4261 *dp
= (png_byte
)value
;
4278 sp
= row
+ (size_t)((row_width
- 1) >> 1);
4279 dp
= row
+ (size_t)row_width
- 1;
4280 shift
= (int)((row_width
& 0x01) << 2);
4281 for (i
= 0; i
< row_width
; i
++)
4283 value
= (*sp
>> shift
) & 0x0f;
4284 *dp
= (png_byte
)value
;
4302 row_info
->bit_depth
= 8;
4303 row_info
->pixel_depth
= 8;
4304 row_info
->rowbytes
= row_width
;
4307 if (row_info
->bit_depth
== 8)
4312 sp
= row
+ (size_t)row_width
- 1;
4313 dp
= row
+ ((size_t)row_width
<< 2) - 1;
4316 #ifdef PNG_ARM_NEON_INTRINSICS_AVAILABLE
4317 if (png_ptr
->riffled_palette
!= NULL
)
4319 /* The RGBA optimization works with png_ptr->bit_depth == 8
4320 * but sometimes row_info->bit_depth has been changed to 8.
4321 * In these cases, the palette hasn't been riffled.
4323 i
= png_do_expand_palette_rgba8_neon(png_ptr
, row_info
, row
,
4330 for (; i
< row_width
; i
++)
4332 if ((int)(*sp
) >= num_trans
)
4335 *dp
-- = trans_alpha
[*sp
];
4336 *dp
-- = palette
[*sp
].blue
;
4337 *dp
-- = palette
[*sp
].green
;
4338 *dp
-- = palette
[*sp
].red
;
4341 row_info
->bit_depth
= 8;
4342 row_info
->pixel_depth
= 32;
4343 row_info
->rowbytes
= row_width
* 4;
4344 row_info
->color_type
= 6;
4345 row_info
->channels
= 4;
4350 sp
= row
+ (size_t)row_width
- 1;
4351 dp
= row
+ (size_t)(row_width
* 3) - 1;
4353 #ifdef PNG_ARM_NEON_INTRINSICS_AVAILABLE
4354 i
= png_do_expand_palette_rgb8_neon(png_ptr
, row_info
, row
,
4360 for (; i
< row_width
; i
++)
4362 *dp
-- = palette
[*sp
].blue
;
4363 *dp
-- = palette
[*sp
].green
;
4364 *dp
-- = palette
[*sp
].red
;
4368 row_info
->bit_depth
= 8;
4369 row_info
->pixel_depth
= 24;
4370 row_info
->rowbytes
= row_width
* 3;
4371 row_info
->color_type
= 2;
4372 row_info
->channels
= 3;
4379 /* If the bit depth < 8, it is expanded to 8. Also, if the already
4380 * expanded transparency value is supplied, an alpha channel is built.
4383 png_do_expand(png_row_infop row_info
, png_bytep row
,
4384 png_const_color_16p trans_color
)
4389 png_uint_32 row_width
=row_info
->width
;
4391 png_debug(1, "in png_do_expand");
4393 if (row_info
->color_type
== PNG_COLOR_TYPE_GRAY
)
4395 unsigned int gray
= trans_color
!= NULL
? trans_color
->gray
: 0;
4397 if (row_info
->bit_depth
< 8)
4399 switch (row_info
->bit_depth
)
4403 gray
= (gray
& 0x01) * 0xff;
4404 sp
= row
+ (size_t)((row_width
- 1) >> 3);
4405 dp
= row
+ (size_t)row_width
- 1;
4406 shift
= 7 - (int)((row_width
+ 7) & 0x07);
4407 for (i
= 0; i
< row_width
; i
++)
4409 if ((*sp
>> shift
) & 0x01)
4431 gray
= (gray
& 0x03) * 0x55;
4432 sp
= row
+ (size_t)((row_width
- 1) >> 2);
4433 dp
= row
+ (size_t)row_width
- 1;
4434 shift
= (int)((3 - ((row_width
+ 3) & 0x03)) << 1);
4435 for (i
= 0; i
< row_width
; i
++)
4437 value
= (*sp
>> shift
) & 0x03;
4438 *dp
= (png_byte
)(value
| (value
<< 2) | (value
<< 4) |
4456 gray
= (gray
& 0x0f) * 0x11;
4457 sp
= row
+ (size_t)((row_width
- 1) >> 1);
4458 dp
= row
+ (size_t)row_width
- 1;
4459 shift
= (int)((1 - ((row_width
+ 1) & 0x01)) << 2);
4460 for (i
= 0; i
< row_width
; i
++)
4462 value
= (*sp
>> shift
) & 0x0f;
4463 *dp
= (png_byte
)(value
| (value
<< 4));
4482 row_info
->bit_depth
= 8;
4483 row_info
->pixel_depth
= 8;
4484 row_info
->rowbytes
= row_width
;
4487 if (trans_color
!= NULL
)
4489 if (row_info
->bit_depth
== 8)
4492 sp
= row
+ (size_t)row_width
- 1;
4493 dp
= row
+ ((size_t)row_width
<< 1) - 1;
4495 for (i
= 0; i
< row_width
; i
++)
4497 if ((*sp
& 0xffU
) == gray
)
4507 else if (row_info
->bit_depth
== 16)
4509 unsigned int gray_high
= (gray
>> 8) & 0xff;
4510 unsigned int gray_low
= gray
& 0xff;
4511 sp
= row
+ row_info
->rowbytes
- 1;
4512 dp
= row
+ (row_info
->rowbytes
<< 1) - 1;
4513 for (i
= 0; i
< row_width
; i
++)
4515 if ((*(sp
- 1) & 0xffU
) == gray_high
&&
4516 (*(sp
) & 0xffU
) == gray_low
)
4533 row_info
->color_type
= PNG_COLOR_TYPE_GRAY_ALPHA
;
4534 row_info
->channels
= 2;
4535 row_info
->pixel_depth
= (png_byte
)(row_info
->bit_depth
<< 1);
4536 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
,
4540 else if (row_info
->color_type
== PNG_COLOR_TYPE_RGB
&&
4541 trans_color
!= NULL
)
4543 if (row_info
->bit_depth
== 8)
4545 png_byte red
= (png_byte
)(trans_color
->red
& 0xff);
4546 png_byte green
= (png_byte
)(trans_color
->green
& 0xff);
4547 png_byte blue
= (png_byte
)(trans_color
->blue
& 0xff);
4548 sp
= row
+ (size_t)row_info
->rowbytes
- 1;
4549 dp
= row
+ ((size_t)row_width
<< 2) - 1;
4550 for (i
= 0; i
< row_width
; i
++)
4552 if (*(sp
- 2) == red
&& *(sp
- 1) == green
&& *(sp
) == blue
)
4563 else if (row_info
->bit_depth
== 16)
4565 png_byte red_high
= (png_byte
)((trans_color
->red
>> 8) & 0xff);
4566 png_byte green_high
= (png_byte
)((trans_color
->green
>> 8) & 0xff);
4567 png_byte blue_high
= (png_byte
)((trans_color
->blue
>> 8) & 0xff);
4568 png_byte red_low
= (png_byte
)(trans_color
->red
& 0xff);
4569 png_byte green_low
= (png_byte
)(trans_color
->green
& 0xff);
4570 png_byte blue_low
= (png_byte
)(trans_color
->blue
& 0xff);
4571 sp
= row
+ row_info
->rowbytes
- 1;
4572 dp
= row
+ ((size_t)row_width
<< 3) - 1;
4573 for (i
= 0; i
< row_width
; i
++)
4575 if (*(sp
- 5) == red_high
&&
4576 *(sp
- 4) == red_low
&&
4577 *(sp
- 3) == green_high
&&
4578 *(sp
- 2) == green_low
&&
4579 *(sp
- 1) == blue_high
&&
4600 row_info
->color_type
= PNG_COLOR_TYPE_RGB_ALPHA
;
4601 row_info
->channels
= 4;
4602 row_info
->pixel_depth
= (png_byte
)(row_info
->bit_depth
<< 2);
4603 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
, row_width
);
4608 #ifdef PNG_READ_EXPAND_16_SUPPORTED
4609 /* If the bit depth is 8 and the color type is not a palette type expand the
4610 * whole row to 16 bits. Has no effect otherwise.
4613 png_do_expand_16(png_row_infop row_info
, png_bytep row
)
4615 if (row_info
->bit_depth
== 8 &&
4616 row_info
->color_type
!= PNG_COLOR_TYPE_PALETTE
)
4618 /* The row have a sequence of bytes containing [0..255] and we need
4619 * to turn it into another row containing [0..65535], to do this we
4622 * (input / 255) * 65535
4624 * Which happens to be exactly input * 257 and this can be achieved
4625 * simply by byte replication in place (copying backwards).
4627 png_byte
*sp
= row
+ row_info
->rowbytes
; /* source, last byte + 1 */
4628 png_byte
*dp
= sp
+ row_info
->rowbytes
; /* destination, end + 1 */
4631 dp
[-2] = dp
[-1] = *--sp
; dp
-= 2;
4634 row_info
->rowbytes
*= 2;
4635 row_info
->bit_depth
= 16;
4636 row_info
->pixel_depth
= (png_byte
)(row_info
->channels
* 16);
4641 #ifdef PNG_READ_QUANTIZE_SUPPORTED
4643 png_do_quantize(png_row_infop row_info
, png_bytep row
,
4644 png_const_bytep palette_lookup
, png_const_bytep quantize_lookup
)
4648 png_uint_32 row_width
=row_info
->width
;
4650 png_debug(1, "in png_do_quantize");
4652 if (row_info
->bit_depth
== 8)
4654 if (row_info
->color_type
== PNG_COLOR_TYPE_RGB
&& palette_lookup
)
4659 for (i
= 0; i
< row_width
; i
++)
4665 /* This looks real messy, but the compiler will reduce
4666 * it down to a reasonable formula. For example, with
4667 * 5 bits per color, we get:
4668 * p = (((r >> 3) & 0x1f) << 10) |
4669 * (((g >> 3) & 0x1f) << 5) |
4670 * ((b >> 3) & 0x1f);
4672 p
= (((r
>> (8 - PNG_QUANTIZE_RED_BITS
)) &
4673 ((1 << PNG_QUANTIZE_RED_BITS
) - 1)) <<
4674 (PNG_QUANTIZE_GREEN_BITS
+ PNG_QUANTIZE_BLUE_BITS
)) |
4675 (((g
>> (8 - PNG_QUANTIZE_GREEN_BITS
)) &
4676 ((1 << PNG_QUANTIZE_GREEN_BITS
) - 1)) <<
4677 (PNG_QUANTIZE_BLUE_BITS
)) |
4678 ((b
>> (8 - PNG_QUANTIZE_BLUE_BITS
)) &
4679 ((1 << PNG_QUANTIZE_BLUE_BITS
) - 1));
4681 *dp
++ = palette_lookup
[p
];
4684 row_info
->color_type
= PNG_COLOR_TYPE_PALETTE
;
4685 row_info
->channels
= 1;
4686 row_info
->pixel_depth
= row_info
->bit_depth
;
4687 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
, row_width
);
4690 else if (row_info
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
&&
4691 palette_lookup
!= NULL
)
4696 for (i
= 0; i
< row_width
; i
++)
4703 p
= (((r
>> (8 - PNG_QUANTIZE_RED_BITS
)) &
4704 ((1 << PNG_QUANTIZE_RED_BITS
) - 1)) <<
4705 (PNG_QUANTIZE_GREEN_BITS
+ PNG_QUANTIZE_BLUE_BITS
)) |
4706 (((g
>> (8 - PNG_QUANTIZE_GREEN_BITS
)) &
4707 ((1 << PNG_QUANTIZE_GREEN_BITS
) - 1)) <<
4708 (PNG_QUANTIZE_BLUE_BITS
)) |
4709 ((b
>> (8 - PNG_QUANTIZE_BLUE_BITS
)) &
4710 ((1 << PNG_QUANTIZE_BLUE_BITS
) - 1));
4712 *dp
++ = palette_lookup
[p
];
4715 row_info
->color_type
= PNG_COLOR_TYPE_PALETTE
;
4716 row_info
->channels
= 1;
4717 row_info
->pixel_depth
= row_info
->bit_depth
;
4718 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
, row_width
);
4721 else if (row_info
->color_type
== PNG_COLOR_TYPE_PALETTE
&&
4726 for (i
= 0; i
< row_width
; i
++, sp
++)
4728 *sp
= quantize_lookup
[*sp
];
4733 #endif /* READ_QUANTIZE */
4735 /* Transform the row. The order of transformations is significant,
4736 * and is very touchy. If you add a transformation, take care to
4737 * decide how it fits in with the other transformations here.
4740 png_do_read_transformations(png_structrp png_ptr
, png_row_infop row_info
)
4742 png_debug(1, "in png_do_read_transformations");
4744 if (png_ptr
->row_buf
== NULL
)
4746 /* Prior to 1.5.4 this output row/pass where the NULL pointer is, but this
4747 * error is incredibly rare and incredibly easy to debug without this
4750 png_error(png_ptr
, "NULL row buffer");
4753 /* The following is debugging; prior to 1.5.4 the code was never compiled in;
4754 * in 1.5.4 PNG_FLAG_DETECT_UNINITIALIZED was added and the macro
4755 * PNG_WARN_UNINITIALIZED_ROW removed. In 1.6 the new flag is set only for
4756 * all transformations, however in practice the ROW_INIT always gets done on
4757 * demand, if necessary.
4759 if ((png_ptr
->flags
& PNG_FLAG_DETECT_UNINITIALIZED
) != 0 &&
4760 (png_ptr
->flags
& PNG_FLAG_ROW_INIT
) == 0)
4762 /* Application has failed to call either png_read_start_image() or
4763 * png_read_update_info() after setting transforms that expand pixels.
4764 * This check added to libpng-1.2.19 (but not enabled until 1.5.4).
4766 png_error(png_ptr
, "Uninitialized row");
4769 #ifdef PNG_READ_EXPAND_SUPPORTED
4770 if ((png_ptr
->transformations
& PNG_EXPAND
) != 0)
4772 if (row_info
->color_type
== PNG_COLOR_TYPE_PALETTE
)
4774 #ifdef PNG_ARM_NEON_INTRINSICS_AVAILABLE
4775 if ((png_ptr
->num_trans
> 0) && (png_ptr
->bit_depth
== 8))
4777 if (png_ptr
->riffled_palette
== NULL
)
4779 /* Initialize the accelerated palette expansion. */
4780 png_ptr
->riffled_palette
=
4781 (png_bytep
)png_malloc(png_ptr
, 256 * 4);
4782 png_riffle_palette_neon(png_ptr
);
4786 png_do_expand_palette(png_ptr
, row_info
, png_ptr
->row_buf
+ 1,
4787 png_ptr
->palette
, png_ptr
->trans_alpha
, png_ptr
->num_trans
);
4792 if (png_ptr
->num_trans
!= 0 &&
4793 (png_ptr
->transformations
& PNG_EXPAND_tRNS
) != 0)
4794 png_do_expand(row_info
, png_ptr
->row_buf
+ 1,
4795 &(png_ptr
->trans_color
));
4798 png_do_expand(row_info
, png_ptr
->row_buf
+ 1, NULL
);
4803 #ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
4804 if ((png_ptr
->transformations
& PNG_STRIP_ALPHA
) != 0 &&
4805 (png_ptr
->transformations
& PNG_COMPOSE
) == 0 &&
4806 (row_info
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
||
4807 row_info
->color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
))
4808 png_do_strip_channel(row_info
, png_ptr
->row_buf
+ 1,
4809 0 /* at_start == false, because SWAP_ALPHA happens later */);
4812 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
4813 if ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) != 0)
4816 png_do_rgb_to_gray(png_ptr
, row_info
,
4817 png_ptr
->row_buf
+ 1);
4821 png_ptr
->rgb_to_gray_status
=1;
4822 if ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) ==
4823 PNG_RGB_TO_GRAY_WARN
)
4824 png_warning(png_ptr
, "png_do_rgb_to_gray found nongray pixel");
4826 if ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) ==
4827 PNG_RGB_TO_GRAY_ERR
)
4828 png_error(png_ptr
, "png_do_rgb_to_gray found nongray pixel");
4833 /* From Andreas Dilger e-mail to png-implement, 26 March 1998:
4835 * In most cases, the "simple transparency" should be done prior to doing
4836 * gray-to-RGB, or you will have to test 3x as many bytes to check if a
4837 * pixel is transparent. You would also need to make sure that the
4838 * transparency information is upgraded to RGB.
4840 * To summarize, the current flow is:
4841 * - Gray + simple transparency -> compare 1 or 2 gray bytes and composite
4842 * with background "in place" if transparent,
4843 * convert to RGB if necessary
4844 * - Gray + alpha -> composite with gray background and remove alpha bytes,
4845 * convert to RGB if necessary
4847 * To support RGB backgrounds for gray images we need:
4848 * - Gray + simple transparency -> convert to RGB + simple transparency,
4849 * compare 3 or 6 bytes and composite with
4850 * background "in place" if transparent
4851 * (3x compare/pixel compared to doing
4852 * composite with gray bkgrnd)
4853 * - Gray + alpha -> convert to RGB + alpha, composite with background and
4854 * remove alpha bytes (3x float
4855 * operations/pixel compared with composite
4856 * on gray background)
4858 * Greg's change will do this. The reason it wasn't done before is for
4859 * performance, as this increases the per-pixel operations. If we would check
4860 * in advance if the background was gray or RGB, and position the gray-to-RGB
4861 * transform appropriately, then it would save a lot of work/time.
4864 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
4865 /* If gray -> RGB, do so now only if background is non-gray; else do later
4866 * for performance reasons
4868 if ((png_ptr
->transformations
& PNG_GRAY_TO_RGB
) != 0 &&
4869 (png_ptr
->mode
& PNG_BACKGROUND_IS_GRAY
) == 0)
4870 png_do_gray_to_rgb(row_info
, png_ptr
->row_buf
+ 1);
4873 #if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
4874 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
4875 if ((png_ptr
->transformations
& PNG_COMPOSE
) != 0)
4876 png_do_compose(row_info
, png_ptr
->row_buf
+ 1, png_ptr
);
4879 #ifdef PNG_READ_GAMMA_SUPPORTED
4880 if ((png_ptr
->transformations
& PNG_GAMMA
) != 0 &&
4881 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
4882 /* Because RGB_TO_GRAY does the gamma transform. */
4883 (png_ptr
->transformations
& PNG_RGB_TO_GRAY
) == 0 &&
4885 #if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
4886 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
4887 /* Because PNG_COMPOSE does the gamma transform if there is something to
4888 * do (if there is an alpha channel or transparency.)
4890 !((png_ptr
->transformations
& PNG_COMPOSE
) != 0 &&
4891 ((png_ptr
->num_trans
!= 0) ||
4892 (png_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0)) &&
4894 /* Because png_init_read_transformations transforms the palette, unless
4895 * RGB_TO_GRAY will do the transform.
4897 (png_ptr
->color_type
!= PNG_COLOR_TYPE_PALETTE
))
4898 png_do_gamma(row_info
, png_ptr
->row_buf
+ 1, png_ptr
);
4901 #ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
4902 if ((png_ptr
->transformations
& PNG_STRIP_ALPHA
) != 0 &&
4903 (png_ptr
->transformations
& PNG_COMPOSE
) != 0 &&
4904 (row_info
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
||
4905 row_info
->color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
))
4906 png_do_strip_channel(row_info
, png_ptr
->row_buf
+ 1,
4907 0 /* at_start == false, because SWAP_ALPHA happens later */);
4910 #ifdef PNG_READ_ALPHA_MODE_SUPPORTED
4911 if ((png_ptr
->transformations
& PNG_ENCODE_ALPHA
) != 0 &&
4912 (row_info
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0)
4913 png_do_encode_alpha(row_info
, png_ptr
->row_buf
+ 1, png_ptr
);
4916 #ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
4917 if ((png_ptr
->transformations
& PNG_SCALE_16_TO_8
) != 0)
4918 png_do_scale_16_to_8(row_info
, png_ptr
->row_buf
+ 1);
4921 #ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
4922 /* There is no harm in doing both of these because only one has any effect,
4923 * by putting the 'scale' option first if the app asks for scale (either by
4924 * calling the API or in a TRANSFORM flag) this is what happens.
4926 if ((png_ptr
->transformations
& PNG_16_TO_8
) != 0)
4927 png_do_chop(row_info
, png_ptr
->row_buf
+ 1);
4930 #ifdef PNG_READ_QUANTIZE_SUPPORTED
4931 if ((png_ptr
->transformations
& PNG_QUANTIZE
) != 0)
4933 png_do_quantize(row_info
, png_ptr
->row_buf
+ 1,
4934 png_ptr
->palette_lookup
, png_ptr
->quantize_index
);
4936 if (row_info
->rowbytes
== 0)
4937 png_error(png_ptr
, "png_do_quantize returned rowbytes=0");
4939 #endif /* READ_QUANTIZE */
4941 #ifdef PNG_READ_EXPAND_16_SUPPORTED
4942 /* Do the expansion now, after all the arithmetic has been done. Notice
4943 * that previous transformations can handle the PNG_EXPAND_16 flag if this
4944 * is efficient (particularly true in the case of gamma correction, where
4945 * better accuracy results faster!)
4947 if ((png_ptr
->transformations
& PNG_EXPAND_16
) != 0)
4948 png_do_expand_16(row_info
, png_ptr
->row_buf
+ 1);
4951 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
4952 /* NOTE: moved here in 1.5.4 (from much later in this list.) */
4953 if ((png_ptr
->transformations
& PNG_GRAY_TO_RGB
) != 0 &&
4954 (png_ptr
->mode
& PNG_BACKGROUND_IS_GRAY
) != 0)
4955 png_do_gray_to_rgb(row_info
, png_ptr
->row_buf
+ 1);
4958 #ifdef PNG_READ_INVERT_SUPPORTED
4959 if ((png_ptr
->transformations
& PNG_INVERT_MONO
) != 0)
4960 png_do_invert(row_info
, png_ptr
->row_buf
+ 1);
4963 #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
4964 if ((png_ptr
->transformations
& PNG_INVERT_ALPHA
) != 0)
4965 png_do_read_invert_alpha(row_info
, png_ptr
->row_buf
+ 1);
4968 #ifdef PNG_READ_SHIFT_SUPPORTED
4969 if ((png_ptr
->transformations
& PNG_SHIFT
) != 0)
4970 png_do_unshift(row_info
, png_ptr
->row_buf
+ 1,
4974 #ifdef PNG_READ_PACK_SUPPORTED
4975 if ((png_ptr
->transformations
& PNG_PACK
) != 0)
4976 png_do_unpack(row_info
, png_ptr
->row_buf
+ 1);
4979 #ifdef PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED
4980 /* Added at libpng-1.5.10 */
4981 if (row_info
->color_type
== PNG_COLOR_TYPE_PALETTE
&&
4982 png_ptr
->num_palette_max
>= 0)
4983 png_do_check_palette_indexes(png_ptr
, row_info
);
4986 #ifdef PNG_READ_BGR_SUPPORTED
4987 if ((png_ptr
->transformations
& PNG_BGR
) != 0)
4988 png_do_bgr(row_info
, png_ptr
->row_buf
+ 1);
4991 #ifdef PNG_READ_PACKSWAP_SUPPORTED
4992 if ((png_ptr
->transformations
& PNG_PACKSWAP
) != 0)
4993 png_do_packswap(row_info
, png_ptr
->row_buf
+ 1);
4996 #ifdef PNG_READ_FILLER_SUPPORTED
4997 if ((png_ptr
->transformations
& PNG_FILLER
) != 0)
4998 png_do_read_filler(row_info
, png_ptr
->row_buf
+ 1,
4999 (png_uint_32
)png_ptr
->filler
, png_ptr
->flags
);
5002 #ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
5003 if ((png_ptr
->transformations
& PNG_SWAP_ALPHA
) != 0)
5004 png_do_read_swap_alpha(row_info
, png_ptr
->row_buf
+ 1);
5007 #ifdef PNG_READ_16BIT_SUPPORTED
5008 #ifdef PNG_READ_SWAP_SUPPORTED
5009 if ((png_ptr
->transformations
& PNG_SWAP_BYTES
) != 0)
5010 png_do_swap(row_info
, png_ptr
->row_buf
+ 1);
5014 #ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
5015 if ((png_ptr
->transformations
& PNG_USER_TRANSFORM
) != 0)
5017 if (png_ptr
->read_user_transform_fn
!= NULL
)
5018 (*(png_ptr
->read_user_transform_fn
)) /* User read transform function */
5019 (png_ptr
, /* png_ptr */
5020 row_info
, /* row_info: */
5021 /* png_uint_32 width; width of row */
5022 /* size_t rowbytes; number of bytes in row */
5023 /* png_byte color_type; color type of pixels */
5024 /* png_byte bit_depth; bit depth of samples */
5025 /* png_byte channels; number of channels (1-4) */
5026 /* png_byte pixel_depth; bits per pixel (depth*channels) */
5027 png_ptr
->row_buf
+ 1); /* start of pixel data for row */
5028 #ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED
5029 if (png_ptr
->user_transform_depth
!= 0)
5030 row_info
->bit_depth
= png_ptr
->user_transform_depth
;
5032 if (png_ptr
->user_transform_channels
!= 0)
5033 row_info
->channels
= png_ptr
->user_transform_channels
;
5035 row_info
->pixel_depth
= (png_byte
)(row_info
->bit_depth
*
5036 row_info
->channels
);
5038 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
, row_info
->width
);
5043 #endif /* READ_TRANSFORMS */