blob: 238f5afe7e88d1322b7e9a8c0f2f85c9a71d555c [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngrtran.c - transforms the data in a row for PNG readers
3 *
xNombred07bb0d2020-03-10 20:17:12 +01004 * 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.
The Android Open Source Project893912b2009-03-03 19:30:05 -08008 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -04009 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
12 *
The Android Open Source Project893912b2009-03-03 19:30:05 -080013 * 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
16 * in pngtrans.c.
17 */
18
Chris Craikb50c2172013-07-29 15:28:30 -070019#include "pngpriv.h"
20
xNombred07bb0d2020-03-10 20:17:12 +010021#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>
26# else
27# include <arm_neon.h>
28# endif
29# endif
30#endif
31
Patrick Scott5f6bd842010-06-28 16:55:16 -040032#ifdef PNG_READ_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080033
34/* Set the action on getting a CRC error for an ancillary or critical chunk. */
35void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -070036png_set_crc_action(png_structrp png_ptr, int crit_action, int ancil_action)
The Android Open Source Project893912b2009-03-03 19:30:05 -080037{
The Android Open Source Project4215dd12009-03-09 11:52:12 -070038 png_debug(1, "in png_set_crc_action");
Chris Craikb50c2172013-07-29 15:28:30 -070039
Patrick Scotta0bb96c2009-07-22 11:50:02 -040040 if (png_ptr == NULL)
41 return;
Patrick Scott5f6bd842010-06-28 16:55:16 -040042
43 /* Tell libpng how we react to CRC errors in critical chunks */
The Android Open Source Project893912b2009-03-03 19:30:05 -080044 switch (crit_action)
45 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -040046 case PNG_CRC_NO_CHANGE: /* Leave setting as is */
The Android Open Source Project893912b2009-03-03 19:30:05 -080047 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040048
49 case PNG_CRC_WARN_USE: /* Warn/use data */
The Android Open Source Project893912b2009-03-03 19:30:05 -080050 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
51 png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE;
52 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040053
54 case PNG_CRC_QUIET_USE: /* Quiet/use data */
The Android Open Source Project893912b2009-03-03 19:30:05 -080055 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
56 png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE |
57 PNG_FLAG_CRC_CRITICAL_IGNORE;
58 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040059
60 case PNG_CRC_WARN_DISCARD: /* Not a valid action for critical data */
The Android Open Source Project4215dd12009-03-09 11:52:12 -070061 png_warning(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +020062 "Can't discard critical data on CRC error");
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -040063 /* FALLTHROUGH */
Patrick Scotta0bb96c2009-07-22 11:50:02 -040064 case PNG_CRC_ERROR_QUIT: /* Error/quit */
65
The Android Open Source Project893912b2009-03-03 19:30:05 -080066 case PNG_CRC_DEFAULT:
67 default:
68 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
69 break;
70 }
71
Patrick Scott5f6bd842010-06-28 16:55:16 -040072 /* Tell libpng how we react to CRC errors in ancillary chunks */
The Android Open Source Project893912b2009-03-03 19:30:05 -080073 switch (ancil_action)
74 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -040075 case PNG_CRC_NO_CHANGE: /* Leave setting as is */
The Android Open Source Project893912b2009-03-03 19:30:05 -080076 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040077
78 case PNG_CRC_WARN_USE: /* Warn/use data */
The Android Open Source Project893912b2009-03-03 19:30:05 -080079 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
80 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE;
81 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040082
83 case PNG_CRC_QUIET_USE: /* Quiet/use data */
The Android Open Source Project893912b2009-03-03 19:30:05 -080084 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
85 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE |
86 PNG_FLAG_CRC_ANCILLARY_NOWARN;
87 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040088
89 case PNG_CRC_ERROR_QUIT: /* Error/quit */
The Android Open Source Project893912b2009-03-03 19:30:05 -080090 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
91 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_NOWARN;
92 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040093
94 case PNG_CRC_WARN_DISCARD: /* Warn/discard data */
95
The Android Open Source Project893912b2009-03-03 19:30:05 -080096 case PNG_CRC_DEFAULT:
97 default:
98 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
99 break;
100 }
101}
102
Chris Craikb50c2172013-07-29 15:28:30 -0700103#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
Matt Sarett9b1fe632015-11-25 10:21:17 -0500106 * to have been read in all cases; the need_IHDR parameter allows for this
107 * check too.
Chris Craikb50c2172013-07-29 15:28:30 -0700108 */
109static int
110png_rtran_ok(png_structrp png_ptr, int need_IHDR)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800111{
Chris Craikb50c2172013-07-29 15:28:30 -0700112 if (png_ptr != NULL)
113 {
Matt Sarett9b1fe632015-11-25 10:21:17 -0500114 if ((png_ptr->flags & PNG_FLAG_ROW_INIT) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700115 png_app_error(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200116 "invalid after png_start_read_image or png_read_update_info");
Chris Craikb50c2172013-07-29 15:28:30 -0700117
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");
120
121 else
122 {
123 /* Turn on failure to initialize correctly for all transforms. */
124 png_ptr->flags |= PNG_FLAG_DETECT_UNINITIALIZED;
125
126 return 1; /* Ok */
127 }
128 }
129
130 return 0; /* no png_error possible! */
131}
132#endif
133
134#ifdef PNG_READ_BACKGROUND_SUPPORTED
135/* Handle alpha and tRNS via a background color */
136void PNGFAPI
137png_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)
140{
141 png_debug(1, "in png_set_background_fixed");
142
Matt Sarett9b1fe632015-11-25 10:21:17 -0500143 if (png_rtran_ok(png_ptr, 0) == 0 || background_color == NULL)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400144 return;
Chris Craikb50c2172013-07-29 15:28:30 -0700145
The Android Open Source Project893912b2009-03-03 19:30:05 -0800146 if (background_gamma_code == PNG_BACKGROUND_GAMMA_UNKNOWN)
147 {
148 png_warning(png_ptr, "Application must supply a known background gamma");
149 return;
150 }
151
Chris Craikb50c2172013-07-29 15:28:30 -0700152 png_ptr->transformations |= PNG_COMPOSE | PNG_STRIP_ALPHA;
153 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
154 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
155
156 png_ptr->background = *background_color;
157 png_ptr->background_gamma = background_gamma;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800158 png_ptr->background_gamma_type = (png_byte)(background_gamma_code);
Matt Sarett9b1fe632015-11-25 10:21:17 -0500159 if (need_expand != 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700160 png_ptr->transformations |= PNG_BACKGROUND_EXPAND;
161 else
162 png_ptr->transformations &= ~PNG_BACKGROUND_EXPAND;
163}
164
165# ifdef PNG_FLOATING_POINT_SUPPORTED
166void PNGAPI
167png_set_background(png_structrp png_ptr,
168 png_const_color_16p background_color, int background_gamma_code,
169 int need_expand, double background_gamma)
170{
171 png_set_background_fixed(png_ptr, background_color, background_gamma_code,
172 need_expand, png_fixed(png_ptr, background_gamma, "png_set_background"));
173}
Alex Naidis7a055fd2016-10-01 12:23:07 +0200174# endif /* FLOATING_POINT */
Chris Craikb50c2172013-07-29 15:28:30 -0700175#endif /* READ_BACKGROUND */
176
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.
180 */
181#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
182void PNGAPI
183png_set_scale_16(png_structrp png_ptr)
184{
185 png_debug(1, "in png_set_scale_16");
186
Matt Sarett9b1fe632015-11-25 10:21:17 -0500187 if (png_rtran_ok(png_ptr, 0) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700188 return;
189
190 png_ptr->transformations |= PNG_SCALE_16_TO_8;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800191}
192#endif
193
Chris Craikb50c2172013-07-29 15:28:30 -0700194#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
195/* Chop 16-bit depth files to 8-bit depth */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800196void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700197png_set_strip_16(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800198{
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700199 png_debug(1, "in png_set_strip_16");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400200
Matt Sarett9b1fe632015-11-25 10:21:17 -0500201 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400202 return;
Chris Craikb50c2172013-07-29 15:28:30 -0700203
The Android Open Source Project893912b2009-03-03 19:30:05 -0800204 png_ptr->transformations |= PNG_16_TO_8;
205}
206#endif
207
Patrick Scott5f6bd842010-06-28 16:55:16 -0400208#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800209void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700210png_set_strip_alpha(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800211{
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700212 png_debug(1, "in png_set_strip_alpha");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400213
Matt Sarett9b1fe632015-11-25 10:21:17 -0500214 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400215 return;
Chris Craikb50c2172013-07-29 15:28:30 -0700216
217 png_ptr->transformations |= PNG_STRIP_ALPHA;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800218}
219#endif
220
Chris Craikb50c2172013-07-29 15:28:30 -0700221#if defined(PNG_READ_ALPHA_MODE_SUPPORTED) || defined(PNG_READ_GAMMA_SUPPORTED)
222static png_fixed_point
223translate_gamma_flags(png_structrp png_ptr, png_fixed_point output_gamma,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200224 int is_screen)
Chris Craikb50c2172013-07-29 15:28:30 -0700225{
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!
230 */
231 if (output_gamma == PNG_DEFAULT_sRGB ||
232 output_gamma == PNG_FP_1 / PNG_DEFAULT_sRGB)
233 {
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!)
236 */
237# ifdef PNG_READ_sRGB_SUPPORTED
238 png_ptr->flags |= PNG_FLAG_ASSUME_sRGB;
239# else
240 PNG_UNUSED(png_ptr)
241# endif
Matt Sarett9b1fe632015-11-25 10:21:17 -0500242 if (is_screen != 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700243 output_gamma = PNG_GAMMA_sRGB;
244 else
245 output_gamma = PNG_GAMMA_sRGB_INVERSE;
246 }
247
248 else if (output_gamma == PNG_GAMMA_MAC_18 ||
249 output_gamma == PNG_FP_1 / PNG_GAMMA_MAC_18)
250 {
Matt Sarett9b1fe632015-11-25 10:21:17 -0500251 if (is_screen != 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700252 output_gamma = PNG_GAMMA_MAC_OLD;
253 else
254 output_gamma = PNG_GAMMA_MAC_INVERSE;
255 }
256
257 return output_gamma;
258}
259
260# ifdef PNG_FLOATING_POINT_SUPPORTED
261static png_fixed_point
262convert_gamma_value(png_structrp png_ptr, double output_gamma)
263{
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.
270 */
271 if (output_gamma > 0 && output_gamma < 128)
272 output_gamma *= PNG_FP_1;
273
274 /* This preserves -1 and -2 exactly: */
275 output_gamma = floor(output_gamma + .5);
276
277 if (output_gamma > PNG_FP_MAX || output_gamma < PNG_FP_MIN)
278 png_fixed_error(png_ptr, "gamma value");
279
280 return (png_fixed_point)output_gamma;
281}
282# endif
283#endif /* READ_ALPHA_MODE || READ_GAMMA */
284
285#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
286void PNGFAPI
287png_set_alpha_mode_fixed(png_structrp png_ptr, int mode,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200288 png_fixed_point output_gamma)
Chris Craikb50c2172013-07-29 15:28:30 -0700289{
290 int compose = 0;
291 png_fixed_point file_gamma;
292
293 png_debug(1, "in png_set_alpha_mode");
294
Matt Sarett9b1fe632015-11-25 10:21:17 -0500295 if (png_rtran_ok(png_ptr, 0) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700296 return;
297
298 output_gamma = translate_gamma_flags(png_ptr, output_gamma, 1/*screen*/);
299
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
Matt Sarett11466862016-02-19 13:41:30 -0500304 * values are reasonable this may have to be changed:
305 *
xNombred07bb0d2020-03-10 20:17:12 +0100306 * 1.6.x: changed from 0.07..3 to 0.01..100 (to accommodate the optimal 16-bit
Matt Sarett11466862016-02-19 13:41:30 -0500307 * gamma of 36, and its reciprocal.)
Chris Craikb50c2172013-07-29 15:28:30 -0700308 */
Matt Sarett11466862016-02-19 13:41:30 -0500309 if (output_gamma < 1000 || output_gamma > 10000000)
Chris Craikb50c2172013-07-29 15:28:30 -0700310 png_error(png_ptr, "output gamma out of expected range");
311
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:
314 */
315 file_gamma = png_reciprocal(output_gamma);
316
317 /* There are really 8 possibilities here, composed of any combination
318 * of:
319 *
320 * premultiply the color channels
321 * do not encode non-opaque pixels
322 * encode the alpha as well as the color channels
323 *
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.
327 *
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.
332 */
333 switch (mode)
334 {
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;
339 break;
340
341 case PNG_ALPHA_ASSOCIATED: /* color channels premultiplied */
342 compose = 1;
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;
347 break;
348
349 case PNG_ALPHA_OPTIMIZED: /* associated, non-opaque pixels linear */
350 compose = 1;
351 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
352 png_ptr->flags |= PNG_FLAG_OPTIMIZE_ALPHA;
353 /* output_gamma records the encoding of opaque pixels! */
354 break;
355
356 case PNG_ALPHA_BROKEN: /* associated, non-linear, alpha encoded */
357 compose = 1;
358 png_ptr->transformations |= PNG_ENCODE_ALPHA;
359 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
360 break;
361
362 default:
363 png_error(png_ptr, "invalid alpha mode");
364 }
365
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
368 * be ignored.)
369 */
370 if (png_ptr->colorspace.gamma == 0)
371 {
372 png_ptr->colorspace.gamma = file_gamma;
373 png_ptr->colorspace.flags |= PNG_COLORSPACE_HAVE_GAMMA;
374 }
375
376 /* But always set the output gamma: */
377 png_ptr->screen_gamma = output_gamma;
378
379 /* Finally, if pre-multiplying, set the background fields to achieve the
380 * desired result.
381 */
Matt Sarett9b1fe632015-11-25 10:21:17 -0500382 if (compose != 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700383 {
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;
389
Matt Sarett9b1fe632015-11-25 10:21:17 -0500390 if ((png_ptr->transformations & PNG_COMPOSE) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700391 png_error(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200392 "conflicting calls to set alpha mode and background");
Chris Craikb50c2172013-07-29 15:28:30 -0700393
394 png_ptr->transformations |= PNG_COMPOSE;
395 }
396}
397
398# ifdef PNG_FLOATING_POINT_SUPPORTED
399void PNGAPI
400png_set_alpha_mode(png_structrp png_ptr, int mode, double output_gamma)
401{
402 png_set_alpha_mode_fixed(png_ptr, mode, convert_gamma_value(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200403 output_gamma));
Chris Craikb50c2172013-07-29 15:28:30 -0700404}
405# endif
406#endif
407
408#ifdef PNG_READ_QUANTIZE_SUPPORTED
409/* Dither file to 8-bit. Supply a palette, the current number
The Android Open Source Project893912b2009-03-03 19:30:05 -0800410 * of elements in the palette, the maximum number of elements
411 * allowed, and a histogram if possible. If the current number
Matt Sarett9b1fe632015-11-25 10:21:17 -0500412 * of colors is greater than the maximum number, the palette will be
Chris Craikb50c2172013-07-29 15:28:30 -0700413 * 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
The Android Open Source Project893912b2009-03-03 19:30:05 -0800415 * simply are reducing the number of colors in a paletted image.
416 */
417
418typedef struct png_dsort_struct
419{
Chris Craikb50c2172013-07-29 15:28:30 -0700420 struct png_dsort_struct * next;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800421 png_byte left;
422 png_byte right;
423} png_dsort;
Chris Craikb50c2172013-07-29 15:28:30 -0700424typedef png_dsort * png_dsortp;
425typedef png_dsort * * png_dsortpp;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800426
427void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700428png_set_quantize(png_structrp png_ptr, png_colorp palette,
429 int num_palette, int maximum_colors, png_const_uint_16p histogram,
430 int full_quantize)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800431{
Chris Craikb50c2172013-07-29 15:28:30 -0700432 png_debug(1, "in png_set_quantize");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400433
Matt Sarett9b1fe632015-11-25 10:21:17 -0500434 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400435 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800436
Chris Craikb50c2172013-07-29 15:28:30 -0700437 png_ptr->transformations |= PNG_QUANTIZE;
438
Matt Sarett9b1fe632015-11-25 10:21:17 -0500439 if (full_quantize == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800440 {
441 int i;
442
Chris Craikb50c2172013-07-29 15:28:30 -0700443 png_ptr->quantize_index = (png_bytep)png_malloc(png_ptr,
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400444 (png_alloc_size_t)((png_uint_32)num_palette * (sizeof (png_byte))));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800445 for (i = 0; i < num_palette; i++)
Chris Craikb50c2172013-07-29 15:28:30 -0700446 png_ptr->quantize_index[i] = (png_byte)i;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800447 }
448
449 if (num_palette > maximum_colors)
450 {
451 if (histogram != NULL)
452 {
453 /* This is easy enough, just throw out the least used colors.
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400454 * Perhaps not the best solution, but good enough.
455 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800456
457 int i;
458
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400459 /* Initialize an array to sort colors */
Chris Craikb50c2172013-07-29 15:28:30 -0700460 png_ptr->quantize_sort = (png_bytep)png_malloc(png_ptr,
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400461 (png_alloc_size_t)((png_uint_32)num_palette * (sizeof (png_byte))));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800462
Chris Craikb50c2172013-07-29 15:28:30 -0700463 /* Initialize the quantize_sort array */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800464 for (i = 0; i < num_palette; i++)
Chris Craikb50c2172013-07-29 15:28:30 -0700465 png_ptr->quantize_sort[i] = (png_byte)i;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800466
467 /* Find the least used palette entries by starting a
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400468 * 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
471 * least used.
472 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800473
474 for (i = num_palette - 1; i >= maximum_colors; i--)
475 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400476 int done; /* To stop early if the list is pre-sorted */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800477 int j;
478
479 done = 1;
480 for (j = 0; j < i; j++)
481 {
Chris Craikb50c2172013-07-29 15:28:30 -0700482 if (histogram[png_ptr->quantize_sort[j]]
483 < histogram[png_ptr->quantize_sort[j + 1]])
The Android Open Source Project893912b2009-03-03 19:30:05 -0800484 {
485 png_byte t;
486
Chris Craikb50c2172013-07-29 15:28:30 -0700487 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;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800490 done = 0;
491 }
492 }
Chris Craikb50c2172013-07-29 15:28:30 -0700493
Matt Sarett9b1fe632015-11-25 10:21:17 -0500494 if (done != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800495 break;
496 }
497
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400498 /* Swap the palette around, and set up a table, if necessary */
Matt Sarett9b1fe632015-11-25 10:21:17 -0500499 if (full_quantize != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800500 {
501 int j = num_palette;
502
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400503 /* Put all the useful colors within the max, but don't
504 * move the others.
505 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800506 for (i = 0; i < maximum_colors; i++)
507 {
Chris Craikb50c2172013-07-29 15:28:30 -0700508 if ((int)png_ptr->quantize_sort[i] >= maximum_colors)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800509 {
510 do
511 j--;
Chris Craikb50c2172013-07-29 15:28:30 -0700512 while ((int)png_ptr->quantize_sort[j] >= maximum_colors);
513
The Android Open Source Project893912b2009-03-03 19:30:05 -0800514 palette[i] = palette[j];
515 }
516 }
517 }
518 else
519 {
520 int j = num_palette;
521
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400522 /* Move all the used colors inside the max limit, and
523 * develop a translation table.
524 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800525 for (i = 0; i < maximum_colors; i++)
526 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400527 /* Only move the colors we need to */
Chris Craikb50c2172013-07-29 15:28:30 -0700528 if ((int)png_ptr->quantize_sort[i] >= maximum_colors)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800529 {
530 png_color tmp_color;
531
532 do
533 j--;
Chris Craikb50c2172013-07-29 15:28:30 -0700534 while ((int)png_ptr->quantize_sort[j] >= maximum_colors);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800535
536 tmp_color = palette[j];
537 palette[j] = palette[i];
538 palette[i] = tmp_color;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400539 /* Indicate where the color went */
Chris Craikb50c2172013-07-29 15:28:30 -0700540 png_ptr->quantize_index[j] = (png_byte)i;
541 png_ptr->quantize_index[i] = (png_byte)j;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800542 }
543 }
544
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400545 /* Find closest color for those colors we are not using */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800546 for (i = 0; i < num_palette; i++)
547 {
Chris Craikb50c2172013-07-29 15:28:30 -0700548 if ((int)png_ptr->quantize_index[i] >= maximum_colors)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800549 {
550 int min_d, k, min_k, d_index;
551
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400552 /* Find the closest color to one we threw out */
Chris Craikb50c2172013-07-29 15:28:30 -0700553 d_index = png_ptr->quantize_index[i];
The Android Open Source Project893912b2009-03-03 19:30:05 -0800554 min_d = PNG_COLOR_DIST(palette[d_index], palette[0]);
555 for (k = 1, min_k = 0; k < maximum_colors; k++)
556 {
557 int d;
558
559 d = PNG_COLOR_DIST(palette[d_index], palette[k]);
560
561 if (d < min_d)
562 {
563 min_d = d;
564 min_k = k;
565 }
566 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400567 /* Point to closest color */
Chris Craikb50c2172013-07-29 15:28:30 -0700568 png_ptr->quantize_index[i] = (png_byte)min_k;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800569 }
570 }
571 }
Chris Craikb50c2172013-07-29 15:28:30 -0700572 png_free(png_ptr, png_ptr->quantize_sort);
573 png_ptr->quantize_sort = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800574 }
575 else
576 {
577 /* This is much harder to do simply (and quickly). Perhaps
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400578 * 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]
584 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800585 int i;
586 int max_d;
587 int num_new_palette;
588 png_dsortp t;
589 png_dsortpp hash;
590
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700591 t = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800592
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400593 /* Initialize palette index arrays */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800594 png_ptr->index_to_palette = (png_bytep)png_malloc(png_ptr,
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400595 (png_alloc_size_t)((png_uint_32)num_palette *
596 (sizeof (png_byte))));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800597 png_ptr->palette_to_index = (png_bytep)png_malloc(png_ptr,
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400598 (png_alloc_size_t)((png_uint_32)num_palette *
599 (sizeof (png_byte))));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800600
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400601 /* Initialize the sort array */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800602 for (i = 0; i < num_palette; i++)
603 {
604 png_ptr->index_to_palette[i] = (png_byte)i;
605 png_ptr->palette_to_index[i] = (png_byte)i;
606 }
607
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400608 hash = (png_dsortpp)png_calloc(png_ptr, (png_alloc_size_t)(769 *
Chris Craikb50c2172013-07-29 15:28:30 -0700609 (sizeof (png_dsortp))));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800610
611 num_new_palette = num_palette;
612
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400613 /* 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.
618 *
619 * I have not done extensive checking on this number.
620 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800621 max_d = 96;
622
623 while (num_new_palette > maximum_colors)
624 {
625 for (i = 0; i < num_new_palette - 1; i++)
626 {
627 int j;
628
629 for (j = i + 1; j < num_new_palette; j++)
630 {
631 int d;
632
633 d = PNG_COLOR_DIST(palette[i], palette[j]);
634
635 if (d <= max_d)
636 {
637
638 t = (png_dsortp)png_malloc_warn(png_ptr,
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400639 (png_alloc_size_t)(sizeof (png_dsort)));
Chris Craikb50c2172013-07-29 15:28:30 -0700640
The Android Open Source Project893912b2009-03-03 19:30:05 -0800641 if (t == NULL)
642 break;
Chris Craikb50c2172013-07-29 15:28:30 -0700643
The Android Open Source Project893912b2009-03-03 19:30:05 -0800644 t->next = hash[d];
645 t->left = (png_byte)i;
646 t->right = (png_byte)j;
647 hash[d] = t;
648 }
649 }
650 if (t == NULL)
651 break;
652 }
653
654 if (t != NULL)
655 for (i = 0; i <= max_d; i++)
656 {
657 if (hash[i] != NULL)
658 {
659 png_dsortp p;
660
661 for (p = hash[i]; p; p = p->next)
662 {
663 if ((int)png_ptr->index_to_palette[p->left]
Chris Craikb50c2172013-07-29 15:28:30 -0700664 < num_new_palette &&
665 (int)png_ptr->index_to_palette[p->right]
666 < num_new_palette)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800667 {
668 int j, next_j;
669
670 if (num_new_palette & 0x01)
671 {
672 j = p->left;
673 next_j = p->right;
674 }
675 else
676 {
677 j = p->right;
678 next_j = p->left;
679 }
680
681 num_new_palette--;
682 palette[png_ptr->index_to_palette[j]]
Chris Craikb50c2172013-07-29 15:28:30 -0700683 = palette[num_new_palette];
Matt Sarett9b1fe632015-11-25 10:21:17 -0500684 if (full_quantize == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800685 {
686 int k;
687
688 for (k = 0; k < num_palette; k++)
689 {
Chris Craikb50c2172013-07-29 15:28:30 -0700690 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];
694
695 if ((int)png_ptr->quantize_index[k] ==
696 num_new_palette)
697 png_ptr->quantize_index[k] =
698 png_ptr->index_to_palette[j];
The Android Open Source Project893912b2009-03-03 19:30:05 -0800699 }
700 }
701
702 png_ptr->index_to_palette[png_ptr->palette_to_index
Chris Craikb50c2172013-07-29 15:28:30 -0700703 [num_new_palette]] = png_ptr->index_to_palette[j];
704
The Android Open Source Project893912b2009-03-03 19:30:05 -0800705 png_ptr->palette_to_index[png_ptr->index_to_palette[j]]
Chris Craikb50c2172013-07-29 15:28:30 -0700706 = png_ptr->palette_to_index[num_new_palette];
The Android Open Source Project893912b2009-03-03 19:30:05 -0800707
Patrick Scott5f6bd842010-06-28 16:55:16 -0400708 png_ptr->index_to_palette[j] =
709 (png_byte)num_new_palette;
Chris Craikb50c2172013-07-29 15:28:30 -0700710
Patrick Scott5f6bd842010-06-28 16:55:16 -0400711 png_ptr->palette_to_index[num_new_palette] =
712 (png_byte)j;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800713 }
714 if (num_new_palette <= maximum_colors)
715 break;
716 }
717 if (num_new_palette <= maximum_colors)
718 break;
719 }
720 }
721
722 for (i = 0; i < 769; i++)
723 {
724 if (hash[i] != NULL)
725 {
726 png_dsortp p = hash[i];
727 while (p)
728 {
729 t = p->next;
730 png_free(png_ptr, p);
731 p = t;
732 }
733 }
734 hash[i] = 0;
735 }
736 max_d += 96;
737 }
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);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700741 png_ptr->palette_to_index = NULL;
742 png_ptr->index_to_palette = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800743 }
744 num_palette = maximum_colors;
745 }
746 if (png_ptr->palette == NULL)
747 {
748 png_ptr->palette = palette;
749 }
750 png_ptr->num_palette = (png_uint_16)num_palette;
751
Matt Sarett9b1fe632015-11-25 10:21:17 -0500752 if (full_quantize != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800753 {
754 int i;
755 png_bytep distance;
Chris Craikb50c2172013-07-29 15:28:30 -0700756 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);
xNombred07bb0d2020-03-10 20:17:12 +0100761 size_t num_entries = ((size_t)1 << total_bits);
Patrick Scott5f6bd842010-06-28 16:55:16 -0400762
Chris Craikb50c2172013-07-29 15:28:30 -0700763 png_ptr->palette_lookup = (png_bytep)png_calloc(png_ptr,
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400764 (png_alloc_size_t)(num_entries * (sizeof (png_byte))));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800765
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400766 distance = (png_bytep)png_malloc(png_ptr, (png_alloc_size_t)(num_entries *
Chris Craikb50c2172013-07-29 15:28:30 -0700767 (sizeof (png_byte))));
768
769 memset(distance, 0xff, num_entries * (sizeof (png_byte)));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800770
771 for (i = 0; i < num_palette; i++)
772 {
773 int ir, ig, ib;
Chris Craikb50c2172013-07-29 15:28:30 -0700774 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));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800777
778 for (ir = 0; ir < num_red; ir++)
779 {
780 /* int dr = abs(ir - r); */
781 int dr = ((ir > r) ? ir - r : r - ir);
Chris Craikb50c2172013-07-29 15:28:30 -0700782 int index_r = (ir << (PNG_QUANTIZE_BLUE_BITS +
783 PNG_QUANTIZE_GREEN_BITS));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800784
785 for (ig = 0; ig < num_green; ig++)
786 {
787 /* int dg = abs(ig - g); */
788 int dg = ((ig > g) ? ig - g : g - ig);
789 int dt = dr + dg;
790 int dm = ((dr > dg) ? dr : dg);
Chris Craikb50c2172013-07-29 15:28:30 -0700791 int index_g = index_r | (ig << PNG_QUANTIZE_BLUE_BITS);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800792
793 for (ib = 0; ib < num_blue; ib++)
794 {
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;
800
801 if (d < (int)distance[d_index])
802 {
803 distance[d_index] = (png_byte)d;
804 png_ptr->palette_lookup[d_index] = (png_byte)i;
805 }
806 }
807 }
808 }
809 }
810
811 png_free(png_ptr, distance);
812 }
813}
Matt Sarett9b1fe632015-11-25 10:21:17 -0500814#endif /* READ_QUANTIZE */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800815
Chris Craikb50c2172013-07-29 15:28:30 -0700816#ifdef PNG_READ_GAMMA_SUPPORTED
817void PNGFAPI
818png_set_gamma_fixed(png_structrp png_ptr, png_fixed_point scrn_gamma,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200819 png_fixed_point file_gamma)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800820{
Chris Craikb50c2172013-07-29 15:28:30 -0700821 png_debug(1, "in png_set_gamma_fixed");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400822
Matt Sarett9b1fe632015-11-25 10:21:17 -0500823 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400824 return;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400825
Chris Craikb50c2172013-07-29 15:28:30 -0700826 /* 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*/);
829
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.
836 *
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
839 * libpng-1.6.0.
840 */
841 if (file_gamma <= 0)
842 png_error(png_ptr, "invalid file gamma in png_set_gamma");
843
844 if (scrn_gamma <= 0)
845 png_error(png_ptr, "invalid screen gamma in png_set_gamma");
846
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.
850 */
851 png_ptr->colorspace.gamma = file_gamma;
852 png_ptr->colorspace.flags |= PNG_COLORSPACE_HAVE_GAMMA;
853 png_ptr->screen_gamma = scrn_gamma;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800854}
Chris Craikb50c2172013-07-29 15:28:30 -0700855
856# ifdef PNG_FLOATING_POINT_SUPPORTED
857void PNGAPI
858png_set_gamma(png_structrp png_ptr, double scrn_gamma, double file_gamma)
859{
860 png_set_gamma_fixed(png_ptr, convert_gamma_value(png_ptr, scrn_gamma),
Alex Naidis7a055fd2016-10-01 12:23:07 +0200861 convert_gamma_value(png_ptr, file_gamma));
Chris Craikb50c2172013-07-29 15:28:30 -0700862}
Matt Sarett9b1fe632015-11-25 10:21:17 -0500863# endif /* FLOATING_POINT */
Chris Craikb50c2172013-07-29 15:28:30 -0700864#endif /* READ_GAMMA */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800865
Patrick Scott5f6bd842010-06-28 16:55:16 -0400866#ifdef PNG_READ_EXPAND_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800867/* Expand paletted images to RGB, expand grayscale images of
868 * less than 8-bit depth to 8-bit depth, and expand tRNS chunks
869 * to alpha channels.
870 */
871void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700872png_set_expand(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800873{
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700874 png_debug(1, "in png_set_expand");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400875
Matt Sarett9b1fe632015-11-25 10:21:17 -0500876 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400877 return;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400878
The Android Open Source Project893912b2009-03-03 19:30:05 -0800879 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800880}
881
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
890 * functions.
891 *
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.
894 *
Patrick Scott5f6bd842010-06-28 16:55:16 -0400895 * 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().
The Android Open Source Project893912b2009-03-03 19:30:05 -0800898 */
899
900/* Expand paletted images to RGB. */
901void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700902png_set_palette_to_rgb(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800903{
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700904 png_debug(1, "in png_set_palette_to_rgb");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400905
Matt Sarett9b1fe632015-11-25 10:21:17 -0500906 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400907 return;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400908
The Android Open Source Project893912b2009-03-03 19:30:05 -0800909 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800910}
911
The Android Open Source Project893912b2009-03-03 19:30:05 -0800912/* Expand grayscale images of less than 8-bit depth to 8 bits. */
913void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700914png_set_expand_gray_1_2_4_to_8(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800915{
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700916 png_debug(1, "in png_set_expand_gray_1_2_4_to_8");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400917
Matt Sarett9b1fe632015-11-25 10:21:17 -0500918 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400919 return;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400920
The Android Open Source Project893912b2009-03-03 19:30:05 -0800921 png_ptr->transformations |= PNG_EXPAND;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800922}
The Android Open Source Project893912b2009-03-03 19:30:05 -0800923
Chris Craikb50c2172013-07-29 15:28:30 -0700924/* Expand tRNS chunks to alpha channels. */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800925void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700926png_set_tRNS_to_alpha(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800927{
Chris Craikb50c2172013-07-29 15:28:30 -0700928 png_debug(1, "in png_set_tRNS_to_alpha");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400929
Matt Sarett9b1fe632015-11-25 10:21:17 -0500930 if (png_rtran_ok(png_ptr, 0) == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400931 return;
Patrick Scott5f6bd842010-06-28 16:55:16 -0400932
The Android Open Source Project893912b2009-03-03 19:30:05 -0800933 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
934}
Matt Sarett9b1fe632015-11-25 10:21:17 -0500935#endif /* READ_EXPAND */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800936
Chris Craikb50c2172013-07-29 15:28:30 -0700937#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.)
940 */
941void PNGAPI
942png_set_expand_16(png_structrp png_ptr)
943{
944 png_debug(1, "in png_set_expand_16");
945
Matt Sarett9b1fe632015-11-25 10:21:17 -0500946 if (png_rtran_ok(png_ptr, 0) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700947 return;
948
949 png_ptr->transformations |= (PNG_EXPAND_16 | PNG_EXPAND | PNG_EXPAND_tRNS);
950}
951#endif
952
Patrick Scott5f6bd842010-06-28 16:55:16 -0400953#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800954void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -0700955png_set_gray_to_rgb(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800956{
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700957 png_debug(1, "in png_set_gray_to_rgb");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400958
Matt Sarett9b1fe632015-11-25 10:21:17 -0500959 if (png_rtran_ok(png_ptr, 0) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700960 return;
961
962 /* Because rgb must be 8 bits or more: */
963 png_set_expand_gray_1_2_4_to_8(png_ptr);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800964 png_ptr->transformations |= PNG_GRAY_TO_RGB;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800965}
966#endif
967
Patrick Scott5f6bd842010-06-28 16:55:16 -0400968#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -0700969void PNGFAPI
970png_set_rgb_to_gray_fixed(png_structrp png_ptr, int error_action,
971 png_fixed_point red, png_fixed_point green)
972{
973 png_debug(1, "in png_set_rgb_to_gray");
974
975 /* Need the IHDR here because of the check on color_type below. */
976 /* TODO: fix this */
Matt Sarett9b1fe632015-11-25 10:21:17 -0500977 if (png_rtran_ok(png_ptr, 1) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -0700978 return;
979
Matt Sarett9b1fe632015-11-25 10:21:17 -0500980 switch (error_action)
Chris Craikb50c2172013-07-29 15:28:30 -0700981 {
982 case PNG_ERROR_ACTION_NONE:
983 png_ptr->transformations |= PNG_RGB_TO_GRAY;
984 break;
985
986 case PNG_ERROR_ACTION_WARN:
987 png_ptr->transformations |= PNG_RGB_TO_GRAY_WARN;
988 break;
989
990 case PNG_ERROR_ACTION_ERROR:
991 png_ptr->transformations |= PNG_RGB_TO_GRAY_ERR;
992 break;
993
994 default:
995 png_error(png_ptr, "invalid error action to rgb_to_gray");
Chris Craikb50c2172013-07-29 15:28:30 -0700996 }
997
998 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
999#ifdef PNG_READ_EXPAND_SUPPORTED
1000 png_ptr->transformations |= PNG_EXPAND;
1001#else
1002 {
1003 /* Make this an error in 1.6 because otherwise the application may assume
1004 * that it just worked and get a memory overwrite.
1005 */
1006 png_error(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001007 "Cannot do RGB_TO_GRAY without EXPAND_SUPPORTED");
Chris Craikb50c2172013-07-29 15:28:30 -07001008
1009 /* png_ptr->transformations &= ~PNG_RGB_TO_GRAY; */
1010 }
1011#endif
1012 {
1013 if (red >= 0 && green >= 0 && red + green <= PNG_FP_1)
1014 {
1015 png_uint_16 red_int, green_int;
1016
1017 /* NOTE: this calculation does not round, but this behavior is retained
Matt Sarett9b1fe632015-11-25 10:21:17 -05001018 * for consistency; the inaccuracy is very small. The code here always
Chris Craikb50c2172013-07-29 15:28:30 -07001019 * overwrites the coefficients, regardless of whether they have been
1020 * defaulted or set already.
1021 */
1022 red_int = (png_uint_16)(((png_uint_32)red*32768)/100000);
1023 green_int = (png_uint_16)(((png_uint_32)green*32768)/100000);
1024
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;
1028 }
1029
1030 else
1031 {
1032 if (red >= 0 && green >= 0)
1033 png_app_warning(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001034 "ignoring out of range rgb_to_gray coefficients");
Chris Craikb50c2172013-07-29 15:28:30 -07001035
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.
1041 */
1042 if (png_ptr->rgb_to_gray_red_coeff == 0 &&
Alex Naidis7a055fd2016-10-01 12:23:07 +02001043 png_ptr->rgb_to_gray_green_coeff == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001044 {
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; */
1048 }
1049 }
1050 }
1051}
1052
Patrick Scott5f6bd842010-06-28 16:55:16 -04001053#ifdef PNG_FLOATING_POINT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001054/* 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.
1056 */
1057
1058void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -07001059png_set_rgb_to_gray(png_structrp png_ptr, int error_action, double red,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001060 double green)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001061{
Chris Craikb50c2172013-07-29 15:28:30 -07001062 png_set_rgb_to_gray_fixed(png_ptr, error_action,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001063 png_fixed(png_ptr, red, "rgb to gray red coefficient"),
Chris Craikb50c2172013-07-29 15:28:30 -07001064 png_fixed(png_ptr, green, "rgb to gray green coefficient"));
The Android Open Source Project893912b2009-03-03 19:30:05 -08001065}
Chris Craikb50c2172013-07-29 15:28:30 -07001066#endif /* FLOATING POINT */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001067
Chris Craikb50c2172013-07-29 15:28:30 -07001068#endif /* RGB_TO_GRAY */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001069
1070#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001071 defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001072void PNGAPI
Chris Craikb50c2172013-07-29 15:28:30 -07001073png_set_read_user_transform_fn(png_structrp png_ptr, png_user_transform_ptr
1074 read_user_transform_fn)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001075{
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001076 png_debug(1, "in png_set_read_user_transform_fn");
Patrick Scott5f6bd842010-06-28 16:55:16 -04001077
Patrick Scott5f6bd842010-06-28 16:55:16 -04001078#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001079 png_ptr->transformations |= PNG_USER_TRANSFORM;
1080 png_ptr->read_user_transform_fn = read_user_transform_fn;
1081#endif
Chris Craikb50c2172013-07-29 15:28:30 -07001082}
The Android Open Source Project893912b2009-03-03 19:30:05 -08001083#endif
Chris Craikb50c2172013-07-29 15:28:30 -07001084
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.
1090 */
1091static int /* PRIVATE */
1092png_gamma_threshold(png_fixed_point screen_gamma, png_fixed_point file_gamma)
1093{
1094 /* PNG_GAMMA_THRESHOLD is the threshold for performing gamma
1095 * correction as a difference of the overall transform from 1.0
1096 *
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.
1100 */
1101 png_fixed_point gtest;
1102 return !png_muldiv(&gtest, screen_gamma, file_gamma, PNG_FP_1) ||
1103 png_gamma_significant(gtest);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001104}
1105#endif
1106
1107/* Initialize everything needed for the read. This includes modifying
1108 * the palette.
1109 */
Chris Craikb50c2172013-07-29 15:28:30 -07001110
Matt Sarett9b1fe632015-11-25 10:21:17 -05001111/* For the moment 'png_init_palette_transformations' and
Chris Craikb50c2172013-07-29 15:28:30 -07001112 * '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'.
1115 */
1116static void /* PRIVATE */
1117png_init_palette_transformations(png_structrp png_ptr)
1118{
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.
1123 *
1124 * STRIP_ALPHA has already been handled in the caller (by setting num_trans
1125 * to 0.)
1126 */
1127 int input_has_alpha = 0;
1128 int input_has_transparency = 0;
1129
1130 if (png_ptr->num_trans > 0)
1131 {
1132 int i;
1133
1134 /* Ignore if all the entries are opaque (unlikely!) */
1135 for (i=0; i<png_ptr->num_trans; ++i)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301136 {
Chris Craikb50c2172013-07-29 15:28:30 -07001137 if (png_ptr->trans_alpha[i] == 255)
1138 continue;
1139 else if (png_ptr->trans_alpha[i] == 0)
1140 input_has_transparency = 1;
1141 else
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301142 {
1143 input_has_transparency = 1;
Chris Craikb50c2172013-07-29 15:28:30 -07001144 input_has_alpha = 1;
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301145 break;
1146 }
1147 }
Chris Craikb50c2172013-07-29 15:28:30 -07001148 }
1149
1150 /* If no alpha we can optimize. */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001151 if (input_has_alpha == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001152 {
1153 /* Any alpha means background and associative alpha processing is
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301154 * required, however if the alpha is 0 or 1 throughout OPTIMIZE_ALPHA
Chris Craikb50c2172013-07-29 15:28:30 -07001155 * and ENCODE_ALPHA are irrelevant.
1156 */
1157 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
1158 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1159
Matt Sarett9b1fe632015-11-25 10:21:17 -05001160 if (input_has_transparency == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001161 png_ptr->transformations &= ~(PNG_COMPOSE | PNG_BACKGROUND_EXPAND);
1162 }
1163
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.
1168 */
1169
1170 /* The following code cannot be entered in the alpha pre-multiplication case
1171 * because PNG_BACKGROUND_EXPAND is cancelled below.
1172 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001173 if ((png_ptr->transformations & PNG_BACKGROUND_EXPAND) != 0 &&
1174 (png_ptr->transformations & PNG_EXPAND) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001175 {
1176 {
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;
1183
1184#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
xNombred07bb0d2020-03-10 20:17:12 +01001185 if ((png_ptr->transformations & PNG_INVERT_ALPHA) != 0)
1186 {
1187 if ((png_ptr->transformations & PNG_EXPAND_tRNS) == 0)
1188 {
1189 /* Invert the alpha channel (in tRNS) unless the pixels are
1190 * going to be expanded, in which case leave it for later
1191 */
1192 int i, istop = png_ptr->num_trans;
Chris Craikb50c2172013-07-29 15:28:30 -07001193
xNombred07bb0d2020-03-10 20:17:12 +01001194 for (i = 0; i < istop; i++)
1195 png_ptr->trans_alpha[i] =
1196 (png_byte)(255 - png_ptr->trans_alpha[i]);
1197 }
1198 }
Matt Sarett9b1fe632015-11-25 10:21:17 -05001199#endif /* READ_INVERT_ALPHA */
Chris Craikb50c2172013-07-29 15:28:30 -07001200 }
1201 } /* background expand and (therefore) no alpha association. */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001202#endif /* READ_EXPAND && READ_BACKGROUND */
Chris Craikb50c2172013-07-29 15:28:30 -07001203}
1204
1205static void /* PRIVATE */
1206png_init_rgb_transformations(png_structrp png_ptr)
1207{
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.
1211 */
1212 int input_has_alpha = (png_ptr->color_type & PNG_COLOR_MASK_ALPHA) != 0;
1213 int input_has_transparency = png_ptr->num_trans > 0;
1214
1215 /* If no alpha we can optimize. */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001216 if (input_has_alpha == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001217 {
1218 /* Any alpha means background and associative alpha processing is
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301219 * required, however if the alpha is 0 or 1 throughout OPTIMIZE_ALPHA
Chris Craikb50c2172013-07-29 15:28:30 -07001220 * and ENCODE_ALPHA are irrelevant.
1221 */
1222# ifdef PNG_READ_ALPHA_MODE_SUPPORTED
1223 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
1224 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1225# endif
1226
Matt Sarett9b1fe632015-11-25 10:21:17 -05001227 if (input_has_transparency == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001228 png_ptr->transformations &= ~(PNG_COMPOSE | PNG_BACKGROUND_EXPAND);
1229 }
1230
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.
1235 */
1236
1237 /* The following code cannot be entered in the alpha pre-multiplication case
1238 * because PNG_BACKGROUND_EXPAND is cancelled below.
1239 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001240 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)
Chris Craikb50c2172013-07-29 15:28:30 -07001243 /* i.e., GRAY or GRAY_ALPHA */
1244 {
1245 {
1246 /* Expand background and tRNS chunks */
1247 int gray = png_ptr->background.gray;
1248 int trans_gray = png_ptr->trans_color.gray;
1249
1250 switch (png_ptr->bit_depth)
1251 {
1252 case 1:
1253 gray *= 0xff;
1254 trans_gray *= 0xff;
1255 break;
1256
1257 case 2:
1258 gray *= 0x55;
1259 trans_gray *= 0x55;
1260 break;
1261
1262 case 4:
1263 gray *= 0x11;
1264 trans_gray *= 0x11;
1265 break;
1266
1267 default:
1268
1269 case 8:
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -04001270 /* FALLTHROUGH */ /* (Already 8 bits) */
Chris Craikb50c2172013-07-29 15:28:30 -07001271
1272 case 16:
1273 /* Already a full 16 bits */
1274 break;
1275 }
1276
1277 png_ptr->background.red = png_ptr->background.green =
1278 png_ptr->background.blue = (png_uint_16)gray;
1279
Matt Sarett9b1fe632015-11-25 10:21:17 -05001280 if ((png_ptr->transformations & PNG_EXPAND_tRNS) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001281 {
1282 png_ptr->trans_color.red = png_ptr->trans_color.green =
1283 png_ptr->trans_color.blue = (png_uint_16)trans_gray;
1284 }
1285 }
1286 } /* background expand and (therefore) no alpha association. */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001287#endif /* READ_EXPAND && READ_BACKGROUND */
Chris Craikb50c2172013-07-29 15:28:30 -07001288}
1289
The Android Open Source Project893912b2009-03-03 19:30:05 -08001290void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001291png_init_read_transformations(png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001292{
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001293 png_debug(1, "in png_init_read_transformations");
Patrick Scott5f6bd842010-06-28 16:55:16 -04001294
Chris Craikb50c2172013-07-29 15:28:30 -07001295 /* 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.
1298 *
1299 * First do updates that do not depend on the details of the PNG image data
1300 * being processed.
1301 */
1302
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.)
1309 */
1310 {
1311 /* The following temporary indicates if overall gamma correction is
1312 * required.
1313 */
1314 int gamma_correction = 0;
1315
1316 if (png_ptr->colorspace.gamma != 0) /* has been set */
1317 {
1318 if (png_ptr->screen_gamma != 0) /* screen set too */
1319 gamma_correction = png_gamma_threshold(png_ptr->colorspace.gamma,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001320 png_ptr->screen_gamma);
Chris Craikb50c2172013-07-29 15:28:30 -07001321
1322 else
1323 /* Assume the output matches the input; a long time default behavior
1324 * of libpng, although the standard has nothing to say about this.
1325 */
1326 png_ptr->screen_gamma = png_reciprocal(png_ptr->colorspace.gamma);
1327 }
1328
1329 else if (png_ptr->screen_gamma != 0)
1330 /* The converse - assume the file matches the screen, note that this
xNombred07bb0d2020-03-10 20:17:12 +01001331 * perhaps undesirable default can (from 1.5.4) be changed by calling
Chris Craikb50c2172013-07-29 15:28:30 -07001332 * png_set_alpha_mode (even if the alpha handling mode isn't required
1333 * or isn't changed from the default.)
1334 */
1335 png_ptr->colorspace.gamma = png_reciprocal(png_ptr->screen_gamma);
1336
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,
1341 * prior to 1.5.4
1342 */
1343 png_ptr->screen_gamma = png_ptr->colorspace.gamma = PNG_FP_1;
1344
1345 /* We have a gamma value now. */
1346 png_ptr->colorspace.flags |= PNG_COLORSPACE_HAVE_GAMMA;
1347
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
1354 * row loop.
1355 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001356 if (gamma_correction != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001357 png_ptr->transformations |= PNG_GAMMA;
1358
1359 else
1360 png_ptr->transformations &= ~PNG_GAMMA;
1361 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001362#endif
1363
Chris Craikb50c2172013-07-29 15:28:30 -07001364 /* Certain transformations have the effect of preventing other
Matt Sarett9b1fe632015-11-25 10:21:17 -05001365 * transformations that happen afterward in png_do_read_transformations;
Chris Craikb50c2172013-07-29 15:28:30 -07001366 * resolve the interdependencies here. From the code of
1367 * png_do_read_transformations the order is:
1368 *
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
1373 * 5) PNG_COMPOSE
1374 * 6) PNG_GAMMA
1375 * 7) PNG_STRIP_ALPHA (if compose)
1376 * 8) PNG_ENCODE_ALPHA
1377 * 9) PNG_SCALE_16_TO_8
1378 * 10) PNG_16_TO_8
1379 * 11) PNG_QUANTIZE (converts to palette)
1380 * 12) PNG_EXPAND_16
1381 * 13) PNG_GRAY_TO_RGB iff PNG_BACKGROUND_IS_GRAY
1382 * 14) PNG_INVERT_MONO
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301383 * 15) PNG_INVERT_ALPHA
1384 * 16) PNG_SHIFT
1385 * 17) PNG_PACK
1386 * 18) PNG_BGR
1387 * 19) PNG_PACKSWAP
1388 * 20) PNG_FILLER (includes PNG_ADD_ALPHA)
Chris Craikb50c2172013-07-29 15:28:30 -07001389 * 21) PNG_SWAP_ALPHA
1390 * 22) PNG_SWAP_BYTES
1391 * 23) PNG_USER_TRANSFORM [must be last]
1392 */
1393#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05001394 if ((png_ptr->transformations & PNG_STRIP_ALPHA) != 0 &&
1395 (png_ptr->transformations & PNG_COMPOSE) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001396 {
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:
1401 */
1402 png_ptr->transformations &= ~(PNG_BACKGROUND_EXPAND | PNG_ENCODE_ALPHA |
1403 PNG_EXPAND_tRNS);
1404 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1405
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:
1412 */
1413 png_ptr->num_trans = 0;
1414 }
1415#endif /* STRIP_ALPHA supported, no COMPOSE */
1416
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.
1420 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001421 if (png_gamma_significant(png_ptr->screen_gamma) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001422 {
1423 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
1424 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1425 }
1426#endif
1427
1428#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
1429 /* Make sure the coefficients for the rgb to gray conversion are set
1430 * appropriately.
1431 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001432 if ((png_ptr->transformations & PNG_RGB_TO_GRAY) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001433 png_colorspace_set_rgb_coefficients(png_ptr);
1434#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001435
Patrick Scott5f6bd842010-06-28 16:55:16 -04001436#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001437#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.
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001440 *
1441 * Note: if PNG_BACKGROUND_EXPAND is set and color_type is either RGB or
The Android Open Source Project893912b2009-03-03 19:30:05 -08001442 * 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.
Chris Craikb50c2172013-07-29 15:28:30 -07001447 *
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.
The Android Open Source Project893912b2009-03-03 19:30:05 -08001452 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001453 if ((png_ptr->transformations & PNG_BACKGROUND_EXPAND) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001454 {
Chris Craikb50c2172013-07-29 15:28:30 -07001455 /* PNG_BACKGROUND_EXPAND: the background is in the file color space, so if
1456 * the file was grayscale the background value is gray.
1457 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001458 if ((png_ptr->color_type & PNG_COLOR_MASK_COLOR) == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001459 png_ptr->mode |= PNG_BACKGROUND_IS_GRAY;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001460 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001461
Matt Sarett9b1fe632015-11-25 10:21:17 -05001462 else if ((png_ptr->transformations & PNG_COMPOSE) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001463 {
Chris Craikb50c2172013-07-29 15:28:30 -07001464 /* 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.
1468 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001469 if ((png_ptr->transformations & PNG_GRAY_TO_RGB) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001470 {
Chris Craikb50c2172013-07-29 15:28:30 -07001471 if (png_ptr->background.red == png_ptr->background.green &&
1472 png_ptr->background.red == png_ptr->background.blue)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001473 {
Chris Craikb50c2172013-07-29 15:28:30 -07001474 png_ptr->mode |= PNG_BACKGROUND_IS_GRAY;
1475 png_ptr->background.gray = png_ptr->background.red;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001476 }
1477 }
Chris Craikb50c2172013-07-29 15:28:30 -07001478 }
Matt Sarett9b1fe632015-11-25 10:21:17 -05001479#endif /* READ_EXPAND && READ_BACKGROUND */
1480#endif /* READ_GRAY_TO_RGB */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001481
Chris Craikb50c2172013-07-29 15:28:30 -07001482 /* 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.
1487 *
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
1491 * updated.
1492 */
1493 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1494 png_init_palette_transformations(png_ptr);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001495
Chris Craikb50c2172013-07-29 15:28:30 -07001496 else
1497 png_init_rgb_transformations(png_ptr);
1498
1499#if defined(PNG_READ_BACKGROUND_SUPPORTED) && \
1500 defined(PNG_READ_EXPAND_16_SUPPORTED)
Matt Sarett9b1fe632015-11-25 10:21:17 -05001501 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)
Chris Craikb50c2172013-07-29 15:28:30 -07001505 {
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.
1509 *
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.)
1512 *
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!
1515 */
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);
1521# undef CHOP
1522 }
Matt Sarett9b1fe632015-11-25 10:21:17 -05001523#endif /* READ_BACKGROUND && READ_EXPAND_16 */
Chris Craikb50c2172013-07-29 15:28:30 -07001524
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))
Matt Sarett9b1fe632015-11-25 10:21:17 -05001528 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)
Chris Craikb50c2172013-07-29 15:28:30 -07001532 {
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.
1536 *
1537 * TODO: fix this too.
1538 */
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);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001544 }
1545#endif
1546
Chris Craikb50c2172013-07-29 15:28:30 -07001547 /* 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.)
1553 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001554
Chris Craikb50c2172013-07-29 15:28:30 -07001555#ifdef PNG_READ_GAMMA_SUPPORTED
1556# ifdef PNG_READ_BACKGROUND_SUPPORTED
1557 /* Includes ALPHA_MODE */
1558 png_ptr->background_1 = png_ptr->background;
1559# endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001560
Chris Craikb50c2172013-07-29 15:28:30 -07001561 /* 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.
1569 *
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
1572 * tables.
1573 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001574 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
Chris Craikb50c2172013-07-29 15:28:30 -07001581# ifdef PNG_READ_BACKGROUND_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05001582 || (png_ptr->background_gamma_type == PNG_BACKGROUND_GAMMA_UNIQUE &&
1583 png_gamma_significant(png_ptr->background_gamma) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001584# endif
Matt Sarett9b1fe632015-11-25 10:21:17 -05001585 )) || ((png_ptr->transformations & PNG_ENCODE_ALPHA) != 0 &&
1586 png_gamma_significant(png_ptr->screen_gamma) != 0))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001587 {
Chris Craikb50c2172013-07-29 15:28:30 -07001588 png_build_gamma_table(png_ptr, png_ptr->bit_depth);
Patrick Scott5f6bd842010-06-28 16:55:16 -04001589
1590#ifdef PNG_READ_BACKGROUND_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05001591 if ((png_ptr->transformations & PNG_COMPOSE) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001592 {
Chris Craikb50c2172013-07-29 15:28:30 -07001593 /* 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
1597 * libpng to date.
1598 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001599 if ((png_ptr->transformations & PNG_RGB_TO_GRAY) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001600 png_warning(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001601 "libpng does not support gamma+background+rgb_to_gray");
Chris Craikb50c2172013-07-29 15:28:30 -07001602
Matt Sarett9b1fe632015-11-25 10:21:17 -05001603 if ((png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001604 {
Chris Craikb50c2172013-07-29 15:28:30 -07001605 /* 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.
1607 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001608 png_color back, back_1;
1609 png_colorp palette = png_ptr->palette;
1610 int num_palette = png_ptr->num_palette;
1611 int i;
1612 if (png_ptr->background_gamma_type == PNG_BACKGROUND_GAMMA_FILE)
1613 {
Chris Craikb50c2172013-07-29 15:28:30 -07001614
The Android Open Source Project893912b2009-03-03 19:30:05 -08001615 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];
1618
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];
1622 }
1623 else
1624 {
Chris Craikb50c2172013-07-29 15:28:30 -07001625 png_fixed_point g, gs;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001626
1627 switch (png_ptr->background_gamma_type)
1628 {
1629 case PNG_BACKGROUND_GAMMA_SCREEN:
1630 g = (png_ptr->screen_gamma);
Chris Craikb50c2172013-07-29 15:28:30 -07001631 gs = PNG_FP_1;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001632 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001633
The Android Open Source Project893912b2009-03-03 19:30:05 -08001634 case PNG_BACKGROUND_GAMMA_FILE:
Chris Craikb50c2172013-07-29 15:28:30 -07001635 g = png_reciprocal(png_ptr->colorspace.gamma);
1636 gs = png_reciprocal2(png_ptr->colorspace.gamma,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001637 png_ptr->screen_gamma);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001638 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001639
The Android Open Source Project893912b2009-03-03 19:30:05 -08001640 case PNG_BACKGROUND_GAMMA_UNIQUE:
Chris Craikb50c2172013-07-29 15:28:30 -07001641 g = png_reciprocal(png_ptr->background_gamma);
1642 gs = png_reciprocal2(png_ptr->background_gamma,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001643 png_ptr->screen_gamma);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001644 break;
1645 default:
Chris Craikb50c2172013-07-29 15:28:30 -07001646 g = PNG_FP_1; /* back_1 */
1647 gs = PNG_FP_1; /* back */
1648 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001649 }
1650
Matt Sarett9b1fe632015-11-25 10:21:17 -05001651 if (png_gamma_significant(gs) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001652 {
1653 back.red = png_gamma_8bit_correct(png_ptr->background.red,
1654 gs);
1655 back.green = png_gamma_8bit_correct(png_ptr->background.green,
1656 gs);
1657 back.blue = png_gamma_8bit_correct(png_ptr->background.blue,
1658 gs);
1659 }
1660
1661 else
The Android Open Source Project893912b2009-03-03 19:30:05 -08001662 {
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;
1666 }
Chris Craikb50c2172013-07-29 15:28:30 -07001667
Matt Sarett9b1fe632015-11-25 10:21:17 -05001668 if (png_gamma_significant(g) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001669 {
Chris Craikb50c2172013-07-29 15:28:30 -07001670 back_1.red = png_gamma_8bit_correct(png_ptr->background.red,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001671 g);
Chris Craikb50c2172013-07-29 15:28:30 -07001672 back_1.green = png_gamma_8bit_correct(
Alex Naidis7a055fd2016-10-01 12:23:07 +02001673 png_ptr->background.green, g);
Chris Craikb50c2172013-07-29 15:28:30 -07001674 back_1.blue = png_gamma_8bit_correct(png_ptr->background.blue,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001675 g);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001676 }
1677
Chris Craikb50c2172013-07-29 15:28:30 -07001678 else
1679 {
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;
1683 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001684 }
Chris Craikb50c2172013-07-29 15:28:30 -07001685
The Android Open Source Project893912b2009-03-03 19:30:05 -08001686 for (i = 0; i < num_palette; i++)
1687 {
Chris Craikb50c2172013-07-29 15:28:30 -07001688 if (i < (int)png_ptr->num_trans &&
1689 png_ptr->trans_alpha[i] != 0xff)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001690 {
Chris Craikb50c2172013-07-29 15:28:30 -07001691 if (png_ptr->trans_alpha[i] == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001692 {
1693 palette[i] = back;
1694 }
Chris Craikb50c2172013-07-29 15:28:30 -07001695 else /* if (png_ptr->trans_alpha[i] != 0xff) */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001696 {
1697 png_byte v, w;
1698
1699 v = png_ptr->gamma_to_1[palette[i].red];
Chris Craikb50c2172013-07-29 15:28:30 -07001700 png_composite(w, v, png_ptr->trans_alpha[i], back_1.red);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001701 palette[i].red = png_ptr->gamma_from_1[w];
1702
1703 v = png_ptr->gamma_to_1[palette[i].green];
Chris Craikb50c2172013-07-29 15:28:30 -07001704 png_composite(w, v, png_ptr->trans_alpha[i], back_1.green);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001705 palette[i].green = png_ptr->gamma_from_1[w];
1706
1707 v = png_ptr->gamma_to_1[palette[i].blue];
Chris Craikb50c2172013-07-29 15:28:30 -07001708 png_composite(w, v, png_ptr->trans_alpha[i], back_1.blue);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001709 palette[i].blue = png_ptr->gamma_from_1[w];
1710 }
1711 }
1712 else
1713 {
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];
1717 }
1718 }
Chris Craikb50c2172013-07-29 15:28:30 -07001719
1720 /* Prevent the transformations being done again.
1721 *
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.
Patrick Scott5f6bd842010-06-28 16:55:16 -04001725 */
Chris Craikb50c2172013-07-29 15:28:30 -07001726 png_ptr->transformations &= ~(PNG_COMPOSE | PNG_GAMMA);
1727 } /* color_type == PNG_COLOR_TYPE_PALETTE */
1728
The Android Open Source Project893912b2009-03-03 19:30:05 -08001729 /* if (png_ptr->background_gamma_type!=PNG_BACKGROUND_GAMMA_UNKNOWN) */
Chris Craikb50c2172013-07-29 15:28:30 -07001730 else /* color_type != PNG_COLOR_TYPE_PALETTE */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001731 {
Chris Craikb50c2172013-07-29 15:28:30 -07001732 int gs_sig, g_sig;
1733 png_fixed_point g = PNG_FP_1; /* Correction to linear */
1734 png_fixed_point gs = PNG_FP_1; /* Correction to screen */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001735
1736 switch (png_ptr->background_gamma_type)
1737 {
1738 case PNG_BACKGROUND_GAMMA_SCREEN:
Chris Craikb50c2172013-07-29 15:28:30 -07001739 g = png_ptr->screen_gamma;
1740 /* gs = PNG_FP_1; */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001741 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001742
The Android Open Source Project893912b2009-03-03 19:30:05 -08001743 case PNG_BACKGROUND_GAMMA_FILE:
Chris Craikb50c2172013-07-29 15:28:30 -07001744 g = png_reciprocal(png_ptr->colorspace.gamma);
1745 gs = png_reciprocal2(png_ptr->colorspace.gamma,
Alex Naidis7a055fd2016-10-01 12:23:07 +02001746 png_ptr->screen_gamma);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001747 break;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001748
The Android Open Source Project893912b2009-03-03 19:30:05 -08001749 case PNG_BACKGROUND_GAMMA_UNIQUE:
Chris Craikb50c2172013-07-29 15:28:30 -07001750 g = png_reciprocal(png_ptr->background_gamma);
1751 gs = png_reciprocal2(png_ptr->background_gamma,
1752 png_ptr->screen_gamma);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001753 break;
Chris Craikb50c2172013-07-29 15:28:30 -07001754
1755 default:
1756 png_error(png_ptr, "invalid background gamma type");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001757 }
1758
Chris Craikb50c2172013-07-29 15:28:30 -07001759 g_sig = png_gamma_significant(g);
1760 gs_sig = png_gamma_significant(gs);
1761
Matt Sarett9b1fe632015-11-25 10:21:17 -05001762 if (g_sig != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001763 png_ptr->background_1.gray = png_gamma_correct(png_ptr,
1764 png_ptr->background.gray, g);
1765
Matt Sarett9b1fe632015-11-25 10:21:17 -05001766 if (gs_sig != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001767 png_ptr->background.gray = png_gamma_correct(png_ptr,
1768 png_ptr->background.gray, gs);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001769
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))
1773 {
1774 /* RGB or RGBA with color background */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001775 if (g_sig != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001776 {
1777 png_ptr->background_1.red = png_gamma_correct(png_ptr,
1778 png_ptr->background.red, g);
1779
1780 png_ptr->background_1.green = png_gamma_correct(png_ptr,
1781 png_ptr->background.green, g);
1782
1783 png_ptr->background_1.blue = png_gamma_correct(png_ptr,
1784 png_ptr->background.blue, g);
1785 }
1786
Matt Sarett9b1fe632015-11-25 10:21:17 -05001787 if (gs_sig != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001788 {
1789 png_ptr->background.red = png_gamma_correct(png_ptr,
1790 png_ptr->background.red, gs);
1791
1792 png_ptr->background.green = png_gamma_correct(png_ptr,
1793 png_ptr->background.green, gs);
1794
1795 png_ptr->background.blue = png_gamma_correct(png_ptr,
1796 png_ptr->background.blue, gs);
1797 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001798 }
Chris Craikb50c2172013-07-29 15:28:30 -07001799
The Android Open Source Project893912b2009-03-03 19:30:05 -08001800 else
1801 {
1802 /* GRAY, GRAY ALPHA, RGB, or RGBA with gray background */
1803 png_ptr->background_1.red = png_ptr->background_1.green
Chris Craikb50c2172013-07-29 15:28:30 -07001804 = png_ptr->background_1.blue = png_ptr->background_1.gray;
1805
The Android Open Source Project893912b2009-03-03 19:30:05 -08001806 png_ptr->background.red = png_ptr->background.green
Chris Craikb50c2172013-07-29 15:28:30 -07001807 = png_ptr->background.blue = png_ptr->background.gray;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001808 }
Chris Craikb50c2172013-07-29 15:28:30 -07001809
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 */
1814
The Android Open Source Project893912b2009-03-03 19:30:05 -08001815 else
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001816 /* Transformation does not include PNG_BACKGROUND */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001817#endif /* READ_BACKGROUND */
Chris Craikb50c2172013-07-29 15:28:30 -07001818 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)
1823#endif
1824 )
The Android Open Source Project893912b2009-03-03 19:30:05 -08001825 {
1826 png_colorp palette = png_ptr->palette;
1827 int num_palette = png_ptr->num_palette;
1828 int i;
1829
Chris Craikb50c2172013-07-29 15:28:30 -07001830 /* NOTE: there are other transformations that should probably be in
1831 * here too.
1832 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001833 for (i = 0; i < num_palette; i++)
1834 {
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];
1838 }
1839
Patrick Scott5f6bd842010-06-28 16:55:16 -04001840 /* Done the gamma correction. */
1841 png_ptr->transformations &= ~PNG_GAMMA;
Chris Craikb50c2172013-07-29 15:28:30 -07001842 } /* color_type == PALETTE && !PNG_BACKGROUND transformation */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001843 }
Patrick Scott5f6bd842010-06-28 16:55:16 -04001844#ifdef PNG_READ_BACKGROUND_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001845 else
1846#endif
Matt Sarett9b1fe632015-11-25 10:21:17 -05001847#endif /* READ_GAMMA */
Chris Craikb50c2172013-07-29 15:28:30 -07001848
Patrick Scott5f6bd842010-06-28 16:55:16 -04001849#ifdef PNG_READ_BACKGROUND_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001850 /* No GAMMA transformation (see the hanging else 4 lines above) */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001851 if ((png_ptr->transformations & PNG_COMPOSE) != 0 &&
Chris Craikb50c2172013-07-29 15:28:30 -07001852 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001853 {
1854 int i;
1855 int istop = (int)png_ptr->num_trans;
1856 png_color back;
1857 png_colorp palette = png_ptr->palette;
1858
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;
1862
1863 for (i = 0; i < istop; i++)
1864 {
Chris Craikb50c2172013-07-29 15:28:30 -07001865 if (png_ptr->trans_alpha[i] == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001866 {
1867 palette[i] = back;
1868 }
Chris Craikb50c2172013-07-29 15:28:30 -07001869
1870 else if (png_ptr->trans_alpha[i] != 0xff)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001871 {
1872 /* The png_composite() macro is defined in png.h */
1873 png_composite(palette[i].red, palette[i].red,
Chris Craikb50c2172013-07-29 15:28:30 -07001874 png_ptr->trans_alpha[i], back.red);
1875
The Android Open Source Project893912b2009-03-03 19:30:05 -08001876 png_composite(palette[i].green, palette[i].green,
Chris Craikb50c2172013-07-29 15:28:30 -07001877 png_ptr->trans_alpha[i], back.green);
1878
The Android Open Source Project893912b2009-03-03 19:30:05 -08001879 png_composite(palette[i].blue, palette[i].blue,
Chris Craikb50c2172013-07-29 15:28:30 -07001880 png_ptr->trans_alpha[i], back.blue);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001881 }
1882 }
1883
Chris Craikb50c2172013-07-29 15:28:30 -07001884 png_ptr->transformations &= ~PNG_COMPOSE;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001885 }
Matt Sarett9b1fe632015-11-25 10:21:17 -05001886#endif /* READ_BACKGROUND */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001887
Patrick Scott5f6bd842010-06-28 16:55:16 -04001888#ifdef PNG_READ_SHIFT_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05001889 if ((png_ptr->transformations & PNG_SHIFT) != 0 &&
1890 (png_ptr->transformations & PNG_EXPAND) == 0 &&
Chris Craikb50c2172013-07-29 15:28:30 -07001891 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001892 {
Chris Craikb50c2172013-07-29 15:28:30 -07001893 int i;
1894 int istop = png_ptr->num_palette;
1895 int shift = 8 - png_ptr->sig_bit.red;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001896
Chris Craikb50c2172013-07-29 15:28:30 -07001897 png_ptr->transformations &= ~PNG_SHIFT;
1898
xNombred07bb0d2020-03-10 20:17:12 +01001899 /* significant bits can be in the range 1 to 7 for a meaningful result, if
Chris Craikb50c2172013-07-29 15:28:30 -07001900 * the number of significant bits is 0 then no shift is done (this is an
1901 * error condition which is silently ignored.)
1902 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301903 if (shift > 0 && shift < 8)
1904 for (i=0; i<istop; ++i)
1905 {
1906 int component = png_ptr->palette[i].red;
Chris Craikb50c2172013-07-29 15:28:30 -07001907
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301908 component >>= shift;
1909 png_ptr->palette[i].red = (png_byte)component;
1910 }
Chris Craikb50c2172013-07-29 15:28:30 -07001911
1912 shift = 8 - png_ptr->sig_bit.green;
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301913 if (shift > 0 && shift < 8)
1914 for (i=0; i<istop; ++i)
1915 {
1916 int component = png_ptr->palette[i].green;
Chris Craikb50c2172013-07-29 15:28:30 -07001917
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301918 component >>= shift;
1919 png_ptr->palette[i].green = (png_byte)component;
1920 }
Chris Craikb50c2172013-07-29 15:28:30 -07001921
1922 shift = 8 - png_ptr->sig_bit.blue;
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301923 if (shift > 0 && shift < 8)
1924 for (i=0; i<istop; ++i)
1925 {
1926 int component = png_ptr->palette[i].blue;
Chris Craikb50c2172013-07-29 15:28:30 -07001927
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301928 component >>= shift;
1929 png_ptr->palette[i].blue = (png_byte)component;
1930 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001931 }
Alex Naidis7a055fd2016-10-01 12:23:07 +02001932#endif /* READ_SHIFT */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001933}
1934
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.
1938 */
1939void /* PRIVATE */
Chris Craikb50c2172013-07-29 15:28:30 -07001940png_read_transform_info(png_structrp png_ptr, png_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001941{
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001942 png_debug(1, "in png_read_transform_info");
Patrick Scott5f6bd842010-06-28 16:55:16 -04001943
1944#ifdef PNG_READ_EXPAND_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05001945 if ((png_ptr->transformations & PNG_EXPAND) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001946 {
1947 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1948 {
Chris Craikb50c2172013-07-29 15:28:30 -07001949 /* 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.)
1952 */
1953 if (png_ptr->num_trans > 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001954 info_ptr->color_type = PNG_COLOR_TYPE_RGB_ALPHA;
Chris Craikb50c2172013-07-29 15:28:30 -07001955
The Android Open Source Project893912b2009-03-03 19:30:05 -08001956 else
1957 info_ptr->color_type = PNG_COLOR_TYPE_RGB;
Chris Craikb50c2172013-07-29 15:28:30 -07001958
The Android Open Source Project893912b2009-03-03 19:30:05 -08001959 info_ptr->bit_depth = 8;
1960 info_ptr->num_trans = 0;
Sireesh Tripurarib478e662014-05-09 15:15:10 +05301961
1962 if (png_ptr->palette == NULL)
1963 png_error (png_ptr, "Palette is NULL in indexed image");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001964 }
1965 else
1966 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05001967 if (png_ptr->num_trans != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001968 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05001969 if ((png_ptr->transformations & PNG_EXPAND_tRNS) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07001970 info_ptr->color_type |= PNG_COLOR_MASK_ALPHA;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001971 }
1972 if (info_ptr->bit_depth < 8)
1973 info_ptr->bit_depth = 8;
Chris Craikb50c2172013-07-29 15:28:30 -07001974
The Android Open Source Project893912b2009-03-03 19:30:05 -08001975 info_ptr->num_trans = 0;
1976 }
1977 }
1978#endif
1979
Chris Craikb50c2172013-07-29 15:28:30 -07001980#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
1983 * the screen space!
1984 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05001985 if ((png_ptr->transformations & PNG_COMPOSE) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001986 info_ptr->background = png_ptr->background;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001987#endif
1988
Patrick Scott5f6bd842010-06-28 16:55:16 -04001989#ifdef PNG_READ_GAMMA_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001990 /* 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.
1994 *
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.
1998 */
1999 info_ptr->colorspace.gamma = png_ptr->colorspace.gamma;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002000#endif
2001
Chris Craikb50c2172013-07-29 15:28:30 -07002002 if (info_ptr->bit_depth == 16)
2003 {
2004# ifdef PNG_READ_16BIT_SUPPORTED
2005# ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002006 if ((png_ptr->transformations & PNG_SCALE_16_TO_8) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002007 info_ptr->bit_depth = 8;
2008# endif
2009
2010# ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002011 if ((png_ptr->transformations & PNG_16_TO_8) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002012 info_ptr->bit_depth = 8;
2013# endif
2014
2015# else
Matt Sarett9b1fe632015-11-25 10:21:17 -05002016 /* No 16-bit support: force chopping 16-bit input down to 8, in this case
Chris Craikb50c2172013-07-29 15:28:30 -07002017 * the app program can chose if both APIs are available by setting the
2018 * correct scaling to use.
2019 */
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.
2024 */
2025 png_ptr->transformations |= PNG_16_TO_8;
2026 info_ptr->bit_depth = 8;
2027# else
2028
2029# ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
2030 png_ptr->transformations |= PNG_SCALE_16_TO_8;
2031 info_ptr->bit_depth = 8;
2032# else
2033
2034 CONFIGURATION ERROR: you must enable at least one 16 to 8 method
2035# endif
2036# endif
Matt Sarett9b1fe632015-11-25 10:21:17 -05002037#endif /* !READ_16BIT */
Chris Craikb50c2172013-07-29 15:28:30 -07002038 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002039
Patrick Scott5f6bd842010-06-28 16:55:16 -04002040#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002041 if ((png_ptr->transformations & PNG_GRAY_TO_RGB) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002042 info_ptr->color_type = (png_byte)(info_ptr->color_type |
2043 PNG_COLOR_MASK_COLOR);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002044#endif
2045
Patrick Scott5f6bd842010-06-28 16:55:16 -04002046#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002047 if ((png_ptr->transformations & PNG_RGB_TO_GRAY) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002048 info_ptr->color_type = (png_byte)(info_ptr->color_type &
2049 ~PNG_COLOR_MASK_COLOR);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002050#endif
2051
Chris Craikb50c2172013-07-29 15:28:30 -07002052#ifdef PNG_READ_QUANTIZE_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002053 if ((png_ptr->transformations & PNG_QUANTIZE) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002054 {
2055 if (((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002056 (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)) &&
Matt Sarett9b1fe632015-11-25 10:21:17 -05002057 png_ptr->palette_lookup != 0 && info_ptr->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002058 {
2059 info_ptr->color_type = PNG_COLOR_TYPE_PALETTE;
2060 }
2061 }
2062#endif
2063
Chris Craikb50c2172013-07-29 15:28:30 -07002064#ifdef PNG_READ_EXPAND_16_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002065 if ((png_ptr->transformations & PNG_EXPAND_16) != 0 &&
2066 info_ptr->bit_depth == 8 &&
2067 info_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
Chris Craikb50c2172013-07-29 15:28:30 -07002068 {
2069 info_ptr->bit_depth = 16;
2070 }
2071#endif
2072
Patrick Scott5f6bd842010-06-28 16:55:16 -04002073#ifdef PNG_READ_PACK_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002074 if ((png_ptr->transformations & PNG_PACK) != 0 &&
2075 (info_ptr->bit_depth < 8))
The Android Open Source Project893912b2009-03-03 19:30:05 -08002076 info_ptr->bit_depth = 8;
2077#endif
2078
2079 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
2080 info_ptr->channels = 1;
Chris Craikb50c2172013-07-29 15:28:30 -07002081
Matt Sarett9b1fe632015-11-25 10:21:17 -05002082 else if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002083 info_ptr->channels = 3;
Chris Craikb50c2172013-07-29 15:28:30 -07002084
The Android Open Source Project893912b2009-03-03 19:30:05 -08002085 else
2086 info_ptr->channels = 1;
2087
Patrick Scott5f6bd842010-06-28 16:55:16 -04002088#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002089 if ((png_ptr->transformations & PNG_STRIP_ALPHA) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002090 {
2091 info_ptr->color_type = (png_byte)(info_ptr->color_type &
2092 ~PNG_COLOR_MASK_ALPHA);
2093 info_ptr->num_trans = 0;
2094 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002095#endif
2096
Matt Sarett9b1fe632015-11-25 10:21:17 -05002097 if ((info_ptr->color_type & PNG_COLOR_MASK_ALPHA) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002098 info_ptr->channels++;
2099
Patrick Scott5f6bd842010-06-28 16:55:16 -04002100#ifdef PNG_READ_FILLER_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002101 /* STRIP_ALPHA and FILLER allowed: MASK_ALPHA bit stripped above */
Matt Sarett9b1fe632015-11-25 10:21:17 -05002102 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))
The Android Open Source Project893912b2009-03-03 19:30:05 -08002105 {
2106 info_ptr->channels++;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002107 /* If adding a true alpha channel not just filler */
Matt Sarett9b1fe632015-11-25 10:21:17 -05002108 if ((png_ptr->transformations & PNG_ADD_ALPHA) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002109 info_ptr->color_type |= PNG_COLOR_MASK_ALPHA;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002110 }
2111#endif
2112
2113#if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED) && \
2114defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
Matt Sarett9b1fe632015-11-25 10:21:17 -05002115 if ((png_ptr->transformations & PNG_USER_TRANSFORM) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002116 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05002117 if (png_ptr->user_transform_depth != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002118 info_ptr->bit_depth = png_ptr->user_transform_depth;
Chris Craikb50c2172013-07-29 15:28:30 -07002119
Matt Sarett9b1fe632015-11-25 10:21:17 -05002120 if (png_ptr->user_transform_channels != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002121 info_ptr->channels = png_ptr->user_transform_channels;
Chris Craikb50c2172013-07-29 15:28:30 -07002122 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002123#endif
2124
2125 info_ptr->pixel_depth = (png_byte)(info_ptr->channels *
Chris Craikb50c2172013-07-29 15:28:30 -07002126 info_ptr->bit_depth);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002127
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002128 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, info_ptr->width);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002129
Chris Craikb50c2172013-07-29 15:28:30 -07002130 /* 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
2134 * right itself.
2135 */
2136 png_ptr->info_rowbytes = info_ptr->rowbytes;
2137
Patrick Scott5f6bd842010-06-28 16:55:16 -04002138#ifndef PNG_READ_EXPAND_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002139 if (png_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002140 return;
2141#endif
2142}
2143
Patrick Scott5f6bd842010-06-28 16:55:16 -04002144#ifdef PNG_READ_PACK_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002145/* 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.
2150 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302151static void
The Android Open Source Project893912b2009-03-03 19:30:05 -08002152png_do_unpack(png_row_infop row_info, png_bytep row)
2153{
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002154 png_debug(1, "in png_do_unpack");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002155
The Android Open Source Project893912b2009-03-03 19:30:05 -08002156 if (row_info->bit_depth < 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002157 {
2158 png_uint_32 i;
2159 png_uint_32 row_width=row_info->width;
2160
2161 switch (row_info->bit_depth)
2162 {
2163 case 1:
2164 {
xNombred07bb0d2020-03-10 20:17:12 +01002165 png_bytep sp = row + (size_t)((row_width - 1) >> 3);
2166 png_bytep dp = row + (size_t)row_width - 1;
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -04002167 png_uint_32 shift = 7U - ((row_width + 7U) & 0x07);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002168 for (i = 0; i < row_width; i++)
2169 {
2170 *dp = (png_byte)((*sp >> shift) & 0x01);
Chris Craikb50c2172013-07-29 15:28:30 -07002171
The Android Open Source Project893912b2009-03-03 19:30:05 -08002172 if (shift == 7)
2173 {
2174 shift = 0;
2175 sp--;
2176 }
Chris Craikb50c2172013-07-29 15:28:30 -07002177
The Android Open Source Project893912b2009-03-03 19:30:05 -08002178 else
2179 shift++;
2180
2181 dp--;
2182 }
2183 break;
2184 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002185
The Android Open Source Project893912b2009-03-03 19:30:05 -08002186 case 2:
2187 {
2188
xNombred07bb0d2020-03-10 20:17:12 +01002189 png_bytep sp = row + (size_t)((row_width - 1) >> 2);
2190 png_bytep dp = row + (size_t)row_width - 1;
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -04002191 png_uint_32 shift = ((3U - ((row_width + 3U) & 0x03)) << 1);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002192 for (i = 0; i < row_width; i++)
2193 {
2194 *dp = (png_byte)((*sp >> shift) & 0x03);
Chris Craikb50c2172013-07-29 15:28:30 -07002195
The Android Open Source Project893912b2009-03-03 19:30:05 -08002196 if (shift == 6)
2197 {
2198 shift = 0;
2199 sp--;
2200 }
Chris Craikb50c2172013-07-29 15:28:30 -07002201
The Android Open Source Project893912b2009-03-03 19:30:05 -08002202 else
2203 shift += 2;
2204
2205 dp--;
2206 }
2207 break;
2208 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002209
The Android Open Source Project893912b2009-03-03 19:30:05 -08002210 case 4:
2211 {
xNombred07bb0d2020-03-10 20:17:12 +01002212 png_bytep sp = row + (size_t)((row_width - 1) >> 1);
2213 png_bytep dp = row + (size_t)row_width - 1;
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -04002214 png_uint_32 shift = ((1U - ((row_width + 1U) & 0x01)) << 2);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002215 for (i = 0; i < row_width; i++)
2216 {
2217 *dp = (png_byte)((*sp >> shift) & 0x0f);
Chris Craikb50c2172013-07-29 15:28:30 -07002218
The Android Open Source Project893912b2009-03-03 19:30:05 -08002219 if (shift == 4)
2220 {
2221 shift = 0;
2222 sp--;
2223 }
Chris Craikb50c2172013-07-29 15:28:30 -07002224
The Android Open Source Project893912b2009-03-03 19:30:05 -08002225 else
2226 shift = 4;
2227
2228 dp--;
2229 }
2230 break;
2231 }
Chris Craikb50c2172013-07-29 15:28:30 -07002232
2233 default:
2234 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002235 }
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;
2239 }
2240}
2241#endif
2242
Patrick Scott5f6bd842010-06-28 16:55:16 -04002243#ifdef PNG_READ_SHIFT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002244/* 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.
2248 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302249static void
Chris Craikb50c2172013-07-29 15:28:30 -07002250png_do_unshift(png_row_infop row_info, png_bytep row,
2251 png_const_color_8p sig_bits)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002252{
Chris Craikb50c2172013-07-29 15:28:30 -07002253 int color_type;
2254
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002255 png_debug(1, "in png_do_unshift");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002256
Chris Craikb50c2172013-07-29 15:28:30 -07002257 /* The palette case has already been handled in the _init routine. */
2258 color_type = row_info->color_type;
2259
2260 if (color_type != PNG_COLOR_TYPE_PALETTE)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002261 {
2262 int shift[4];
2263 int channels = 0;
Chris Craikb50c2172013-07-29 15:28:30 -07002264 int bit_depth = row_info->bit_depth;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002265
Matt Sarett9b1fe632015-11-25 10:21:17 -05002266 if ((color_type & PNG_COLOR_MASK_COLOR) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002267 {
Chris Craikb50c2172013-07-29 15:28:30 -07002268 shift[channels++] = bit_depth - sig_bits->red;
2269 shift[channels++] = bit_depth - sig_bits->green;
2270 shift[channels++] = bit_depth - sig_bits->blue;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002271 }
Chris Craikb50c2172013-07-29 15:28:30 -07002272
The Android Open Source Project893912b2009-03-03 19:30:05 -08002273 else
2274 {
Chris Craikb50c2172013-07-29 15:28:30 -07002275 shift[channels++] = bit_depth - sig_bits->gray;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002276 }
2277
Matt Sarett9b1fe632015-11-25 10:21:17 -05002278 if ((color_type & PNG_COLOR_MASK_ALPHA) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002279 {
Chris Craikb50c2172013-07-29 15:28:30 -07002280 shift[channels++] = bit_depth - sig_bits->alpha;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002281 }
2282
The Android Open Source Project893912b2009-03-03 19:30:05 -08002283 {
Chris Craikb50c2172013-07-29 15:28:30 -07002284 int c, have_shift;
2285
2286 for (c = have_shift = 0; c < channels; ++c)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002287 {
Chris Craikb50c2172013-07-29 15:28:30 -07002288 /* A shift of more than the bit depth is an error condition but it
2289 * gets ignored here.
2290 */
2291 if (shift[c] <= 0 || shift[c] >= bit_depth)
2292 shift[c] = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002293
Chris Craikb50c2172013-07-29 15:28:30 -07002294 else
2295 have_shift = 1;
2296 }
2297
Matt Sarett9b1fe632015-11-25 10:21:17 -05002298 if (have_shift == 0)
Chris Craikb50c2172013-07-29 15:28:30 -07002299 return;
2300 }
2301
2302 switch (bit_depth)
2303 {
2304 default:
2305 /* Must be 1bpp gray: should not be here! */
2306 /* NOTREACHED */
2307 break;
2308
2309 case 2:
2310 /* Must be 2bpp gray */
2311 /* assert(channels == 1 && shift[0] == 1) */
2312 {
2313 png_bytep bp = row;
2314 png_bytep bp_end = bp + row_info->rowbytes;
2315
2316 while (bp < bp_end)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002317 {
Chris Craikb50c2172013-07-29 15:28:30 -07002318 int b = (*bp >> 1) & 0x55;
2319 *bp++ = (png_byte)b;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002320 }
2321 break;
2322 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002323
The Android Open Source Project893912b2009-03-03 19:30:05 -08002324 case 4:
Chris Craikb50c2172013-07-29 15:28:30 -07002325 /* Must be 4bpp gray */
2326 /* assert(channels == 1) */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002327 {
2328 png_bytep bp = row;
Chris Craikb50c2172013-07-29 15:28:30 -07002329 png_bytep bp_end = bp + row_info->rowbytes;
2330 int gray_shift = shift[0];
2331 int mask = 0xf >> gray_shift;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002332
Chris Craikb50c2172013-07-29 15:28:30 -07002333 mask |= mask << 4;
2334
2335 while (bp < bp_end)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002336 {
Chris Craikb50c2172013-07-29 15:28:30 -07002337 int b = (*bp >> gray_shift) & mask;
2338 *bp++ = (png_byte)b;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002339 }
2340 break;
2341 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002342
The Android Open Source Project893912b2009-03-03 19:30:05 -08002343 case 8:
Chris Craikb50c2172013-07-29 15:28:30 -07002344 /* Single byte components, G, GA, RGB, RGBA */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002345 {
2346 png_bytep bp = row;
Chris Craikb50c2172013-07-29 15:28:30 -07002347 png_bytep bp_end = bp + row_info->rowbytes;
2348 int channel = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002349
Chris Craikb50c2172013-07-29 15:28:30 -07002350 while (bp < bp_end)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002351 {
Chris Craikb50c2172013-07-29 15:28:30 -07002352 int b = *bp >> shift[channel];
2353 if (++channel >= channels)
2354 channel = 0;
2355 *bp++ = (png_byte)b;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002356 }
2357 break;
2358 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002359
Chris Craikb50c2172013-07-29 15:28:30 -07002360#ifdef PNG_READ_16BIT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002361 case 16:
Chris Craikb50c2172013-07-29 15:28:30 -07002362 /* Double byte components, G, GA, RGB, RGBA */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002363 {
2364 png_bytep bp = row;
Chris Craikb50c2172013-07-29 15:28:30 -07002365 png_bytep bp_end = bp + row_info->rowbytes;
2366 int channel = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002367
Chris Craikb50c2172013-07-29 15:28:30 -07002368 while (bp < bp_end)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002369 {
Chris Craikb50c2172013-07-29 15:28:30 -07002370 int value = (bp[0] << 8) + bp[1];
2371
2372 value >>= shift[channel];
2373 if (++channel >= channels)
2374 channel = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002375 *bp++ = (png_byte)(value >> 8);
Matt Sarett9b1fe632015-11-25 10:21:17 -05002376 *bp++ = (png_byte)value;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002377 }
2378 break;
2379 }
Chris Craikb50c2172013-07-29 15:28:30 -07002380#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002381 }
2382 }
2383}
2384#endif
2385
Chris Craikb50c2172013-07-29 15:28:30 -07002386#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
2387/* Scale rows of bit depth 16 down to 8 accurately */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302388static void
Chris Craikb50c2172013-07-29 15:28:30 -07002389png_do_scale_16_to_8(png_row_infop row_info, png_bytep row)
2390{
2391 png_debug(1, "in png_do_scale_16_to_8");
2392
2393 if (row_info->bit_depth == 16)
2394 {
2395 png_bytep sp = row; /* source */
2396 png_bytep dp = row; /* destination */
2397 png_bytep ep = sp + row_info->rowbytes; /* end+1 */
2398
2399 while (sp < ep)
2400 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05002401 /* 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
Chris Craikb50c2172013-07-29 15:28:30 -07002403 * specification) is:
2404 *
2405 * (V * 255) / 65535
2406 *
2407 * This reduces to round(V / 257), or floor((V + 128.5)/257)
2408 *
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
2411 * is:
2412 *
2413 * error = floor(((V-vhi.vhi) + 128.5) / 257)
2414 * = floor(((vlo-vhi) + 128.5) / 257)
2415 *
2416 * This can be approximated using integer arithmetic (and a signed
2417 * shift):
2418 *
2419 * error = (vlo-vhi+128) >> 8;
2420 *
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
Matt Sarett9b1fe632015-11-25 10:21:17 -05002423 * 0. This gives 128 errors. The exact answer (correct for all 16-bit
Chris Craikb50c2172013-07-29 15:28:30 -07002424 * input values) is:
2425 *
2426 * error = (vlo-vhi+128)*65535 >> 24;
2427 *
2428 * An alternative arithmetic calculation which also gives no errors is:
2429 *
2430 * (V * 255 + 32895) >> 16
2431 */
2432
2433 png_int_32 tmp = *sp++; /* must be signed! */
2434 tmp += (((int)*sp++ - tmp + 128) * 65535) >> 24;
2435 *dp++ = (png_byte)tmp;
2436 }
2437
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;
2441 }
2442}
2443#endif
2444
2445#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302446static void
Chris Craikb50c2172013-07-29 15:28:30 -07002447/* Simply discard the low byte. This was the default behavior prior
2448 * to libpng-1.5.4.
2449 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002450png_do_chop(png_row_infop row_info, png_bytep row)
2451{
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002452 png_debug(1, "in png_do_chop");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002453
The Android Open Source Project893912b2009-03-03 19:30:05 -08002454 if (row_info->bit_depth == 16)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002455 {
Chris Craikb50c2172013-07-29 15:28:30 -07002456 png_bytep sp = row; /* source */
2457 png_bytep dp = row; /* destination */
2458 png_bytep ep = sp + row_info->rowbytes; /* end+1 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002459
Chris Craikb50c2172013-07-29 15:28:30 -07002460 while (sp < ep)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002461 {
Chris Craikb50c2172013-07-29 15:28:30 -07002462 *dp++ = *sp;
2463 sp += 2; /* skip low byte */
The Android Open Source Project893912b2009-03-03 19:30:05 -08002464 }
Chris Craikb50c2172013-07-29 15:28:30 -07002465
The Android Open Source Project893912b2009-03-03 19:30:05 -08002466 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;
2469 }
2470}
2471#endif
2472
Patrick Scott5f6bd842010-06-28 16:55:16 -04002473#ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302474static void
The Android Open Source Project893912b2009-03-03 19:30:05 -08002475png_do_read_swap_alpha(png_row_infop row_info, png_bytep row)
2476{
xNombred07bb0d2020-03-10 20:17:12 +01002477 png_uint_32 row_width = row_info->width;
2478
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002479 png_debug(1, "in png_do_read_swap_alpha");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002480
xNombred07bb0d2020-03-10 20:17:12 +01002481 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002482 {
xNombred07bb0d2020-03-10 20:17:12 +01002483 /* This converts from RGBA to ARGB */
2484 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002485 {
xNombred07bb0d2020-03-10 20:17:12 +01002486 png_bytep sp = row + row_info->rowbytes;
2487 png_bytep dp = sp;
2488 png_byte save;
2489 png_uint_32 i;
2490
2491 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002492 {
xNombred07bb0d2020-03-10 20:17:12 +01002493 save = *(--sp);
2494 *(--dp) = *(--sp);
2495 *(--dp) = *(--sp);
2496 *(--dp) = *(--sp);
2497 *(--dp) = save;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002498 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002499 }
Chris Craikb50c2172013-07-29 15:28:30 -07002500
xNombred07bb0d2020-03-10 20:17:12 +01002501#ifdef PNG_READ_16BIT_SUPPORTED
2502 /* This converts from RRGGBBAA to AARRGGBB */
2503 else
The Android Open Source Project893912b2009-03-03 19:30:05 -08002504 {
xNombred07bb0d2020-03-10 20:17:12 +01002505 png_bytep sp = row + row_info->rowbytes;
2506 png_bytep dp = sp;
2507 png_byte save[2];
2508 png_uint_32 i;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002509
xNombred07bb0d2020-03-10 20:17:12 +01002510 for (i = 0; i < row_width; i++)
2511 {
2512 save[0] = *(--sp);
2513 save[1] = *(--sp);
2514 *(--dp) = *(--sp);
2515 *(--dp) = *(--sp);
2516 *(--dp) = *(--sp);
2517 *(--dp) = *(--sp);
2518 *(--dp) = *(--sp);
2519 *(--dp) = *(--sp);
2520 *(--dp) = save[0];
2521 *(--dp) = save[1];
The Android Open Source Project893912b2009-03-03 19:30:05 -08002522 }
xNombred07bb0d2020-03-10 20:17:12 +01002523 }
2524#endif
2525 }
2526
2527 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
2528 {
2529 /* This converts from GA to AG */
2530 if (row_info->bit_depth == 8)
2531 {
2532 png_bytep sp = row + row_info->rowbytes;
2533 png_bytep dp = sp;
2534 png_byte save;
2535 png_uint_32 i;
2536
2537 for (i = 0; i < row_width; i++)
2538 {
2539 save = *(--sp);
2540 *(--dp) = *(--sp);
2541 *(--dp) = save;
2542 }
2543 }
Chris Craikb50c2172013-07-29 15:28:30 -07002544
2545#ifdef PNG_READ_16BIT_SUPPORTED
xNombred07bb0d2020-03-10 20:17:12 +01002546 /* This converts from GGAA to AAGG */
2547 else
2548 {
2549 png_bytep sp = row + row_info->rowbytes;
2550 png_bytep dp = sp;
2551 png_byte save[2];
2552 png_uint_32 i;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002553
xNombred07bb0d2020-03-10 20:17:12 +01002554 for (i = 0; i < row_width; i++)
2555 {
2556 save[0] = *(--sp);
2557 save[1] = *(--sp);
2558 *(--dp) = *(--sp);
2559 *(--dp) = *(--sp);
2560 *(--dp) = save[0];
2561 *(--dp) = save[1];
The Android Open Source Project893912b2009-03-03 19:30:05 -08002562 }
2563 }
xNombred07bb0d2020-03-10 20:17:12 +01002564#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002565 }
2566}
2567#endif
2568
Patrick Scott5f6bd842010-06-28 16:55:16 -04002569#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302570static void
The Android Open Source Project893912b2009-03-03 19:30:05 -08002571png_do_read_invert_alpha(png_row_infop row_info, png_bytep row)
2572{
Chris Craikb50c2172013-07-29 15:28:30 -07002573 png_uint_32 row_width;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002574 png_debug(1, "in png_do_read_invert_alpha");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002575
Chris Craikb50c2172013-07-29 15:28:30 -07002576 row_width = row_info->width;
2577 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002578 {
Chris Craikb50c2172013-07-29 15:28:30 -07002579 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002580 {
2581 /* This inverts the alpha channel in RGBA */
Chris Craikb50c2172013-07-29 15:28:30 -07002582 png_bytep sp = row + row_info->rowbytes;
2583 png_bytep dp = sp;
2584 png_uint_32 i;
2585
2586 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002587 {
Chris Craikb50c2172013-07-29 15:28:30 -07002588 *(--dp) = (png_byte)(255 - *(--sp));
The Android Open Source Project893912b2009-03-03 19:30:05 -08002589
Chris Craikb50c2172013-07-29 15:28:30 -07002590/* This does nothing:
2591 *(--dp) = *(--sp);
2592 *(--dp) = *(--sp);
2593 *(--dp) = *(--sp);
2594 We can replace it with:
The Android Open Source Project893912b2009-03-03 19:30:05 -08002595*/
Chris Craikb50c2172013-07-29 15:28:30 -07002596 sp-=3;
2597 dp=sp;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002598 }
2599 }
Chris Craikb50c2172013-07-29 15:28:30 -07002600
2601#ifdef PNG_READ_16BIT_SUPPORTED
2602 /* This inverts the alpha channel in RRGGBBAA */
2603 else
2604 {
2605 png_bytep sp = row + row_info->rowbytes;
2606 png_bytep dp = sp;
2607 png_uint_32 i;
2608
2609 for (i = 0; i < row_width; i++)
2610 {
2611 *(--dp) = (png_byte)(255 - *(--sp));
2612 *(--dp) = (png_byte)(255 - *(--sp));
2613
2614/* This does nothing:
2615 *(--dp) = *(--sp);
2616 *(--dp) = *(--sp);
2617 *(--dp) = *(--sp);
2618 *(--dp) = *(--sp);
2619 *(--dp) = *(--sp);
2620 *(--dp) = *(--sp);
2621 We can replace it with:
2622*/
2623 sp-=6;
2624 dp=sp;
2625 }
2626 }
2627#endif
2628 }
2629 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
2630 {
2631 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002632 {
2633 /* This inverts the alpha channel in GA */
Chris Craikb50c2172013-07-29 15:28:30 -07002634 png_bytep sp = row + row_info->rowbytes;
2635 png_bytep dp = sp;
2636 png_uint_32 i;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002637
Chris Craikb50c2172013-07-29 15:28:30 -07002638 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002639 {
Chris Craikb50c2172013-07-29 15:28:30 -07002640 *(--dp) = (png_byte)(255 - *(--sp));
2641 *(--dp) = *(--sp);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002642 }
2643 }
Chris Craikb50c2172013-07-29 15:28:30 -07002644
2645#ifdef PNG_READ_16BIT_SUPPORTED
2646 else
2647 {
2648 /* This inverts the alpha channel in GGAA */
2649 png_bytep sp = row + row_info->rowbytes;
2650 png_bytep dp = sp;
2651 png_uint_32 i;
2652
2653 for (i = 0; i < row_width; i++)
2654 {
2655 *(--dp) = (png_byte)(255 - *(--sp));
2656 *(--dp) = (png_byte)(255 - *(--sp));
2657/*
2658 *(--dp) = *(--sp);
2659 *(--dp) = *(--sp);
2660*/
2661 sp-=2;
2662 dp=sp;
2663 }
2664 }
2665#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002666 }
2667}
2668#endif
2669
Patrick Scott5f6bd842010-06-28 16:55:16 -04002670#ifdef PNG_READ_FILLER_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08002671/* Add filler channel if we have RGB color */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302672static void
The Android Open Source Project893912b2009-03-03 19:30:05 -08002673png_do_read_filler(png_row_infop row_info, png_bytep row,
Chris Craikb50c2172013-07-29 15:28:30 -07002674 png_uint_32 filler, png_uint_32 flags)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002675{
2676 png_uint_32 i;
2677 png_uint_32 row_width = row_info->width;
2678
Chris Craikb50c2172013-07-29 15:28:30 -07002679#ifdef PNG_READ_16BIT_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05002680 png_byte hi_filler = (png_byte)(filler>>8);
Chris Craikb50c2172013-07-29 15:28:30 -07002681#endif
Matt Sarett9b1fe632015-11-25 10:21:17 -05002682 png_byte lo_filler = (png_byte)filler;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002683
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002684 png_debug(1, "in png_do_read_filler");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002685
The Android Open Source Project893912b2009-03-03 19:30:05 -08002686 if (
The Android Open Source Project893912b2009-03-03 19:30:05 -08002687 row_info->color_type == PNG_COLOR_TYPE_GRAY)
2688 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002689 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002690 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05002691 if ((flags & PNG_FLAG_FILLER_AFTER) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002692 {
Chris Craikb50c2172013-07-29 15:28:30 -07002693 /* This changes the data from G to GX */
xNombred07bb0d2020-03-10 20:17:12 +01002694 png_bytep sp = row + (size_t)row_width;
2695 png_bytep dp = sp + (size_t)row_width;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002696 for (i = 1; i < row_width; i++)
2697 {
2698 *(--dp) = lo_filler;
2699 *(--dp) = *(--sp);
2700 }
2701 *(--dp) = lo_filler;
2702 row_info->channels = 2;
2703 row_info->pixel_depth = 16;
2704 row_info->rowbytes = row_width * 2;
2705 }
Chris Craikb50c2172013-07-29 15:28:30 -07002706
The Android Open Source Project893912b2009-03-03 19:30:05 -08002707 else
2708 {
Chris Craikb50c2172013-07-29 15:28:30 -07002709 /* This changes the data from G to XG */
xNombred07bb0d2020-03-10 20:17:12 +01002710 png_bytep sp = row + (size_t)row_width;
2711 png_bytep dp = sp + (size_t)row_width;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002712 for (i = 0; i < row_width; i++)
2713 {
2714 *(--dp) = *(--sp);
2715 *(--dp) = lo_filler;
2716 }
2717 row_info->channels = 2;
2718 row_info->pixel_depth = 16;
2719 row_info->rowbytes = row_width * 2;
2720 }
2721 }
Chris Craikb50c2172013-07-29 15:28:30 -07002722
2723#ifdef PNG_READ_16BIT_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002724 else if (row_info->bit_depth == 16)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002725 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05002726 if ((flags & PNG_FLAG_FILLER_AFTER) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002727 {
Chris Craikb50c2172013-07-29 15:28:30 -07002728 /* This changes the data from GG to GGXX */
xNombred07bb0d2020-03-10 20:17:12 +01002729 png_bytep sp = row + (size_t)row_width * 2;
2730 png_bytep dp = sp + (size_t)row_width * 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002731 for (i = 1; i < row_width; i++)
2732 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002733 *(--dp) = lo_filler;
Matt Sarett9b1fe632015-11-25 10:21:17 -05002734 *(--dp) = hi_filler;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002735 *(--dp) = *(--sp);
2736 *(--dp) = *(--sp);
2737 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002738 *(--dp) = lo_filler;
Matt Sarett9b1fe632015-11-25 10:21:17 -05002739 *(--dp) = hi_filler;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002740 row_info->channels = 2;
2741 row_info->pixel_depth = 32;
2742 row_info->rowbytes = row_width * 4;
2743 }
Chris Craikb50c2172013-07-29 15:28:30 -07002744
The Android Open Source Project893912b2009-03-03 19:30:05 -08002745 else
2746 {
Chris Craikb50c2172013-07-29 15:28:30 -07002747 /* This changes the data from GG to XXGG */
xNombred07bb0d2020-03-10 20:17:12 +01002748 png_bytep sp = row + (size_t)row_width * 2;
2749 png_bytep dp = sp + (size_t)row_width * 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002750 for (i = 0; i < row_width; i++)
2751 {
2752 *(--dp) = *(--sp);
2753 *(--dp) = *(--sp);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002754 *(--dp) = lo_filler;
Matt Sarett9b1fe632015-11-25 10:21:17 -05002755 *(--dp) = hi_filler;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002756 }
2757 row_info->channels = 2;
2758 row_info->pixel_depth = 32;
2759 row_info->rowbytes = row_width * 4;
2760 }
2761 }
Chris Craikb50c2172013-07-29 15:28:30 -07002762#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002763 } /* COLOR_TYPE == GRAY */
2764 else if (row_info->color_type == PNG_COLOR_TYPE_RGB)
2765 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002766 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002767 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05002768 if ((flags & PNG_FLAG_FILLER_AFTER) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002769 {
Chris Craikb50c2172013-07-29 15:28:30 -07002770 /* This changes the data from RGB to RGBX */
xNombred07bb0d2020-03-10 20:17:12 +01002771 png_bytep sp = row + (size_t)row_width * 3;
2772 png_bytep dp = sp + (size_t)row_width;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002773 for (i = 1; i < row_width; i++)
2774 {
2775 *(--dp) = lo_filler;
2776 *(--dp) = *(--sp);
2777 *(--dp) = *(--sp);
2778 *(--dp) = *(--sp);
2779 }
2780 *(--dp) = lo_filler;
2781 row_info->channels = 4;
2782 row_info->pixel_depth = 32;
2783 row_info->rowbytes = row_width * 4;
2784 }
Chris Craikb50c2172013-07-29 15:28:30 -07002785
The Android Open Source Project893912b2009-03-03 19:30:05 -08002786 else
2787 {
Chris Craikb50c2172013-07-29 15:28:30 -07002788 /* This changes the data from RGB to XRGB */
xNombred07bb0d2020-03-10 20:17:12 +01002789 png_bytep sp = row + (size_t)row_width * 3;
2790 png_bytep dp = sp + (size_t)row_width;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002791 for (i = 0; i < row_width; i++)
2792 {
2793 *(--dp) = *(--sp);
2794 *(--dp) = *(--sp);
2795 *(--dp) = *(--sp);
2796 *(--dp) = lo_filler;
2797 }
2798 row_info->channels = 4;
2799 row_info->pixel_depth = 32;
2800 row_info->rowbytes = row_width * 4;
2801 }
2802 }
Chris Craikb50c2172013-07-29 15:28:30 -07002803
2804#ifdef PNG_READ_16BIT_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002805 else if (row_info->bit_depth == 16)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002806 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05002807 if ((flags & PNG_FLAG_FILLER_AFTER) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002808 {
Chris Craikb50c2172013-07-29 15:28:30 -07002809 /* This changes the data from RRGGBB to RRGGBBXX */
xNombred07bb0d2020-03-10 20:17:12 +01002810 png_bytep sp = row + (size_t)row_width * 6;
2811 png_bytep dp = sp + (size_t)row_width * 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002812 for (i = 1; i < row_width; i++)
2813 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08002814 *(--dp) = lo_filler;
Matt Sarett9b1fe632015-11-25 10:21:17 -05002815 *(--dp) = hi_filler;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002816 *(--dp) = *(--sp);
2817 *(--dp) = *(--sp);
2818 *(--dp) = *(--sp);
2819 *(--dp) = *(--sp);
2820 *(--dp) = *(--sp);
2821 *(--dp) = *(--sp);
2822 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08002823 *(--dp) = lo_filler;
Matt Sarett9b1fe632015-11-25 10:21:17 -05002824 *(--dp) = hi_filler;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002825 row_info->channels = 4;
2826 row_info->pixel_depth = 64;
2827 row_info->rowbytes = row_width * 8;
2828 }
Chris Craikb50c2172013-07-29 15:28:30 -07002829
The Android Open Source Project893912b2009-03-03 19:30:05 -08002830 else
2831 {
Chris Craikb50c2172013-07-29 15:28:30 -07002832 /* This changes the data from RRGGBB to XXRRGGBB */
xNombred07bb0d2020-03-10 20:17:12 +01002833 png_bytep sp = row + (size_t)row_width * 6;
2834 png_bytep dp = sp + (size_t)row_width * 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002835 for (i = 0; i < row_width; i++)
2836 {
2837 *(--dp) = *(--sp);
2838 *(--dp) = *(--sp);
2839 *(--dp) = *(--sp);
2840 *(--dp) = *(--sp);
2841 *(--dp) = *(--sp);
2842 *(--dp) = *(--sp);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002843 *(--dp) = lo_filler;
Matt Sarett9b1fe632015-11-25 10:21:17 -05002844 *(--dp) = hi_filler;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002845 }
Chris Craikb50c2172013-07-29 15:28:30 -07002846
The Android Open Source Project893912b2009-03-03 19:30:05 -08002847 row_info->channels = 4;
2848 row_info->pixel_depth = 64;
2849 row_info->rowbytes = row_width * 8;
2850 }
2851 }
Chris Craikb50c2172013-07-29 15:28:30 -07002852#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08002853 } /* COLOR_TYPE == RGB */
2854}
2855#endif
2856
Patrick Scott5f6bd842010-06-28 16:55:16 -04002857#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002858/* Expand grayscale files to RGB, with or without alpha */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302859static void
The Android Open Source Project893912b2009-03-03 19:30:05 -08002860png_do_gray_to_rgb(png_row_infop row_info, png_bytep row)
2861{
2862 png_uint_32 i;
2863 png_uint_32 row_width = row_info->width;
2864
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002865 png_debug(1, "in png_do_gray_to_rgb");
Patrick Scott5f6bd842010-06-28 16:55:16 -04002866
The Android Open Source Project893912b2009-03-03 19:30:05 -08002867 if (row_info->bit_depth >= 8 &&
Matt Sarett9b1fe632015-11-25 10:21:17 -05002868 (row_info->color_type & PNG_COLOR_MASK_COLOR) == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08002869 {
2870 if (row_info->color_type == PNG_COLOR_TYPE_GRAY)
2871 {
2872 if (row_info->bit_depth == 8)
2873 {
Chris Craikb50c2172013-07-29 15:28:30 -07002874 /* This changes G to RGB */
xNombred07bb0d2020-03-10 20:17:12 +01002875 png_bytep sp = row + (size_t)row_width - 1;
2876 png_bytep dp = sp + (size_t)row_width * 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002877 for (i = 0; i < row_width; i++)
2878 {
2879 *(dp--) = *sp;
2880 *(dp--) = *sp;
2881 *(dp--) = *(sp--);
2882 }
2883 }
Chris Craikb50c2172013-07-29 15:28:30 -07002884
The Android Open Source Project893912b2009-03-03 19:30:05 -08002885 else
2886 {
Chris Craikb50c2172013-07-29 15:28:30 -07002887 /* This changes GG to RRGGBB */
xNombred07bb0d2020-03-10 20:17:12 +01002888 png_bytep sp = row + (size_t)row_width * 2 - 1;
2889 png_bytep dp = sp + (size_t)row_width * 4;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002890 for (i = 0; i < row_width; i++)
2891 {
2892 *(dp--) = *sp;
2893 *(dp--) = *(sp - 1);
2894 *(dp--) = *sp;
2895 *(dp--) = *(sp - 1);
2896 *(dp--) = *(sp--);
2897 *(dp--) = *(sp--);
2898 }
2899 }
2900 }
Chris Craikb50c2172013-07-29 15:28:30 -07002901
The Android Open Source Project893912b2009-03-03 19:30:05 -08002902 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
2903 {
2904 if (row_info->bit_depth == 8)
2905 {
Chris Craikb50c2172013-07-29 15:28:30 -07002906 /* This changes GA to RGBA */
xNombred07bb0d2020-03-10 20:17:12 +01002907 png_bytep sp = row + (size_t)row_width * 2 - 1;
2908 png_bytep dp = sp + (size_t)row_width * 2;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002909 for (i = 0; i < row_width; i++)
2910 {
2911 *(dp--) = *(sp--);
2912 *(dp--) = *sp;
2913 *(dp--) = *sp;
2914 *(dp--) = *(sp--);
2915 }
2916 }
Chris Craikb50c2172013-07-29 15:28:30 -07002917
The Android Open Source Project893912b2009-03-03 19:30:05 -08002918 else
2919 {
Chris Craikb50c2172013-07-29 15:28:30 -07002920 /* This changes GGAA to RRGGBBAA */
xNombred07bb0d2020-03-10 20:17:12 +01002921 png_bytep sp = row + (size_t)row_width * 4 - 1;
2922 png_bytep dp = sp + (size_t)row_width * 4;
The Android Open Source Project893912b2009-03-03 19:30:05 -08002923 for (i = 0; i < row_width; i++)
2924 {
2925 *(dp--) = *(sp--);
2926 *(dp--) = *(sp--);
2927 *(dp--) = *sp;
2928 *(dp--) = *(sp - 1);
2929 *(dp--) = *sp;
2930 *(dp--) = *(sp - 1);
2931 *(dp--) = *(sp--);
2932 *(dp--) = *(sp--);
2933 }
2934 }
2935 }
Chris Craikb50c2172013-07-29 15:28:30 -07002936 row_info->channels = (png_byte)(row_info->channels + 2);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002937 row_info->color_type |= PNG_COLOR_MASK_COLOR;
2938 row_info->pixel_depth = (png_byte)(row_info->channels *
Chris Craikb50c2172013-07-29 15:28:30 -07002939 row_info->bit_depth);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002940 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
The Android Open Source Project893912b2009-03-03 19:30:05 -08002941 }
2942}
2943#endif
2944
Patrick Scott5f6bd842010-06-28 16:55:16 -04002945#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -04002946/* Reduce RGB files to grayscale, with or without alpha
Chris Craikb50c2172013-07-29 15:28:30 -07002947 * 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
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -04002950 * https://web.archive.org/web/20000816232553/www.inforamp.net/
Chris Craikb50c2172013-07-29 15:28:30 -07002951 * ~poynton/notes/colour_and_gamma/ColorFAQ.txt )
The Android Open Source Project4215dd12009-03-09 11:52:12 -07002952 * Charles Poynton poynton at poynton.com
The Android Open Source Project893912b2009-03-03 19:30:05 -08002953 *
2954 * Y = 0.212671 * R + 0.715160 * G + 0.072169 * B
2955 *
The Android Open Source Project893912b2009-03-03 19:30:05 -08002956 * which can be expressed with integers as
2957 *
2958 * Y = (6969 * R + 23434 * G + 2365 * B)/32768
2959 *
Chris Craikb50c2172013-07-29 15:28:30 -07002960 * 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:
The Android Open Source Project893912b2009-03-03 19:30:05 -08002963 *
Chris Craikb50c2172013-07-29 15:28:30 -07002964 * Y = 0.2126*R + 0.7152*G + 0.0722*B
2965 *
2966 * which can be expressed with integers as
2967 *
2968 * Y = (6966 * R + 23436 * G + 2366 * B)/32768
2969 *
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:
2975 *
2976 * Y = (6968 * R + 23435 * G + 2366 * B)/32768
2977 *
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:
2981 *
2982 * Y = (6968 * R + 23434 * G + 2366 * B)/32768
2983 *
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.
2987 *
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.
2992 *
xNombred07bb0d2020-03-10 20:17:12 +01002993 * Other integer coefficients can be used via png_set_rgb_to_gray(). Because
Chris Craikb50c2172013-07-29 15:28:30 -07002994 * 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.
The Android Open Source Project893912b2009-03-03 19:30:05 -08002997 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05302998static int
Chris Craikb50c2172013-07-29 15:28:30 -07002999png_do_rgb_to_gray(png_structrp png_ptr, png_row_infop row_info, png_bytep row)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003000{
The Android Open Source Project893912b2009-03-03 19:30:05 -08003001 int rgb_error = 0;
3002
The Android Open Source Project4215dd12009-03-09 11:52:12 -07003003 png_debug(1, "in png_do_rgb_to_gray");
Patrick Scott5f6bd842010-06-28 16:55:16 -04003004
Matt Sarett9b1fe632015-11-25 10:21:17 -05003005 if ((row_info->color_type & PNG_COLOR_MASK_PALETTE) == 0 &&
3006 (row_info->color_type & PNG_COLOR_MASK_COLOR) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003007 {
xNombred07bb0d2020-03-10 20:17:12 +01003008 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;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003013
Chris Craikb50c2172013-07-29 15:28:30 -07003014 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003015 {
Chris Craikb50c2172013-07-29 15:28:30 -07003016#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.
3021 */
3022 if (png_ptr->gamma_from_1 != NULL && png_ptr->gamma_to_1 != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003023 {
Chris Craikb50c2172013-07-29 15:28:30 -07003024 png_bytep sp = row;
3025 png_bytep dp = row;
3026 png_uint_32 i;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003027
Chris Craikb50c2172013-07-29 15:28:30 -07003028 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003029 {
Chris Craikb50c2172013-07-29 15:28:30 -07003030 png_byte red = *(sp++);
3031 png_byte green = *(sp++);
3032 png_byte blue = *(sp++);
3033
3034 if (red != green || red != blue)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003035 {
Chris Craikb50c2172013-07-29 15:28:30 -07003036 red = png_ptr->gamma_to_1[red];
3037 green = png_ptr->gamma_to_1[green];
3038 blue = png_ptr->gamma_to_1[blue];
3039
3040 rgb_error |= 1;
3041 *(dp++) = png_ptr->gamma_from_1[
3042 (rc*red + gc*green + bc*blue + 16384)>>15];
The Android Open Source Project893912b2009-03-03 19:30:05 -08003043 }
Chris Craikb50c2172013-07-29 15:28:30 -07003044
3045 else
3046 {
3047 /* If there is no overall correction the table will not be
3048 * set.
3049 */
3050 if (png_ptr->gamma_table != NULL)
3051 red = png_ptr->gamma_table[red];
3052
3053 *(dp++) = red;
3054 }
3055
Matt Sarett9b1fe632015-11-25 10:21:17 -05003056 if (have_alpha != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07003057 *(dp++) = *(sp++);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003058 }
3059 }
Chris Craikb50c2172013-07-29 15:28:30 -07003060 else
The Android Open Source Project893912b2009-03-03 19:30:05 -08003061#endif
Chris Craikb50c2172013-07-29 15:28:30 -07003062 {
3063 png_bytep sp = row;
3064 png_bytep dp = row;
3065 png_uint_32 i;
3066
3067 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003068 {
Chris Craikb50c2172013-07-29 15:28:30 -07003069 png_byte red = *(sp++);
3070 png_byte green = *(sp++);
3071 png_byte blue = *(sp++);
3072
3073 if (red != green || red != blue)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003074 {
Chris Craikb50c2172013-07-29 15:28:30 -07003075 rgb_error |= 1;
3076 /* NOTE: this is the historical approach which simply
3077 * truncates the results.
3078 */
3079 *(dp++) = (png_byte)((rc*red + gc*green + bc*blue)>>15);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003080 }
Chris Craikb50c2172013-07-29 15:28:30 -07003081
3082 else
3083 *(dp++) = red;
3084
Matt Sarett9b1fe632015-11-25 10:21:17 -05003085 if (have_alpha != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07003086 *(dp++) = *(sp++);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003087 }
3088 }
3089 }
Chris Craikb50c2172013-07-29 15:28:30 -07003090
3091 else /* RGB bit_depth == 16 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003092 {
Chris Craikb50c2172013-07-29 15:28:30 -07003093#ifdef PNG_READ_GAMMA_SUPPORTED
3094 if (png_ptr->gamma_16_to_1 != NULL && png_ptr->gamma_16_from_1 != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003095 {
Chris Craikb50c2172013-07-29 15:28:30 -07003096 png_bytep sp = row;
3097 png_bytep dp = row;
3098 png_uint_32 i;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003099
Chris Craikb50c2172013-07-29 15:28:30 -07003100 for (i = 0; i < row_width; i++)
3101 {
3102 png_uint_16 red, green, blue, w;
Matt Sarett9b1fe632015-11-25 10:21:17 -05003103 png_byte hi,lo;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003104
Matt Sarett9b1fe632015-11-25 10:21:17 -05003105 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));
Chris Craikb50c2172013-07-29 15:28:30 -07003108
3109 if (red == green && red == blue)
3110 {
3111 if (png_ptr->gamma_16_table != NULL)
Matt Sarett9b1fe632015-11-25 10:21:17 -05003112 w = png_ptr->gamma_16_table[(red & 0xff)
3113 >> png_ptr->gamma_shift][red >> 8];
Chris Craikb50c2172013-07-29 15:28:30 -07003114
The Android Open Source Project893912b2009-03-03 19:30:05 -08003115 else
Chris Craikb50c2172013-07-29 15:28:30 -07003116 w = red;
3117 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08003118
Chris Craikb50c2172013-07-29 15:28:30 -07003119 else
3120 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05003121 png_uint_16 red_1 = png_ptr->gamma_16_to_1[(red & 0xff)
Chris Craikb50c2172013-07-29 15:28:30 -07003122 >> png_ptr->gamma_shift][red>>8];
3123 png_uint_16 green_1 =
Matt Sarett9b1fe632015-11-25 10:21:17 -05003124 png_ptr->gamma_16_to_1[(green & 0xff) >>
Chris Craikb50c2172013-07-29 15:28:30 -07003125 png_ptr->gamma_shift][green>>8];
Matt Sarett9b1fe632015-11-25 10:21:17 -05003126 png_uint_16 blue_1 = png_ptr->gamma_16_to_1[(blue & 0xff)
Chris Craikb50c2172013-07-29 15:28:30 -07003127 >> 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);
Matt Sarett9b1fe632015-11-25 10:21:17 -05003130 w = png_ptr->gamma_16_from_1[(gray16 & 0xff) >>
Chris Craikb50c2172013-07-29 15:28:30 -07003131 png_ptr->gamma_shift][gray16 >> 8];
3132 rgb_error |= 1;
3133 }
3134
3135 *(dp++) = (png_byte)((w>>8) & 0xff);
3136 *(dp++) = (png_byte)(w & 0xff);
3137
Matt Sarett9b1fe632015-11-25 10:21:17 -05003138 if (have_alpha != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07003139 {
3140 *(dp++) = *(sp++);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003141 *(dp++) = *(sp++);
3142 }
3143 }
Chris Craikb50c2172013-07-29 15:28:30 -07003144 }
3145 else
The Android Open Source Project893912b2009-03-03 19:30:05 -08003146#endif
Chris Craikb50c2172013-07-29 15:28:30 -07003147 {
3148 png_bytep sp = row;
3149 png_bytep dp = row;
3150 png_uint_32 i;
3151
3152 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003153 {
Chris Craikb50c2172013-07-29 15:28:30 -07003154 png_uint_16 red, green, blue, gray16;
Matt Sarett9b1fe632015-11-25 10:21:17 -05003155 png_byte hi,lo;
Chris Craikb50c2172013-07-29 15:28:30 -07003156
Matt Sarett9b1fe632015-11-25 10:21:17 -05003157 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));
Chris Craikb50c2172013-07-29 15:28:30 -07003160
3161 if (red != green || red != blue)
3162 rgb_error |= 1;
3163
Matt Sarett9b1fe632015-11-25 10:21:17 -05003164 /* From 1.5.5 in the 16-bit case do the accurate conversion even
Chris Craikb50c2172013-07-29 15:28:30 -07003165 * in the 'fast' case - this is because this is where the code
Matt Sarett9b1fe632015-11-25 10:21:17 -05003166 * ends up when handling linear 16-bit data.
Chris Craikb50c2172013-07-29 15:28:30 -07003167 */
3168 gray16 = (png_uint_16)((rc*red + gc*green + bc*blue + 16384) >>
3169 15);
Matt Sarett9b1fe632015-11-25 10:21:17 -05003170 *(dp++) = (png_byte)((gray16 >> 8) & 0xff);
Chris Craikb50c2172013-07-29 15:28:30 -07003171 *(dp++) = (png_byte)(gray16 & 0xff);
3172
Matt Sarett9b1fe632015-11-25 10:21:17 -05003173 if (have_alpha != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003174 {
Chris Craikb50c2172013-07-29 15:28:30 -07003175 *(dp++) = *(sp++);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003176 *(dp++) = *(sp++);
3177 }
3178 }
3179 }
3180 }
Chris Craikb50c2172013-07-29 15:28:30 -07003181
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);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003185 row_info->pixel_depth = (png_byte)(row_info->channels *
Chris Craikb50c2172013-07-29 15:28:30 -07003186 row_info->bit_depth);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07003187 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003188 }
3189 return rgb_error;
3190}
3191#endif
3192
Chris Craikb50c2172013-07-29 15:28:30 -07003193#if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
3194 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003195/* 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.
3198 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05303199static void
Chris Craikb50c2172013-07-29 15:28:30 -07003200png_do_compose(png_row_infop row_info, png_bytep row, png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003201{
Chris Craikb50c2172013-07-29 15:28:30 -07003202#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;
3211#endif
3212
3213 png_bytep sp;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003214 png_uint_32 i;
Chris Craikb50c2172013-07-29 15:28:30 -07003215 png_uint_32 row_width = row_info->width;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003216 int shift;
3217
Chris Craikb50c2172013-07-29 15:28:30 -07003218 png_debug(1, "in png_do_compose");
Patrick Scott5f6bd842010-06-28 16:55:16 -04003219
xNombred07bb0d2020-03-10 20:17:12 +01003220 switch (row_info->color_type)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003221 {
xNombred07bb0d2020-03-10 20:17:12 +01003222 case PNG_COLOR_TYPE_GRAY:
The Android Open Source Project893912b2009-03-03 19:30:05 -08003223 {
xNombred07bb0d2020-03-10 20:17:12 +01003224 switch (row_info->bit_depth)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003225 {
xNombred07bb0d2020-03-10 20:17:12 +01003226 case 1:
The Android Open Source Project893912b2009-03-03 19:30:05 -08003227 {
xNombred07bb0d2020-03-10 20:17:12 +01003228 sp = row;
3229 shift = 7;
3230 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003231 {
xNombred07bb0d2020-03-10 20:17:12 +01003232 if ((png_uint_16)((*sp >> shift) & 0x01)
3233 == png_ptr->trans_color.gray)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003234 {
xNombred07bb0d2020-03-10 20:17:12 +01003235 unsigned int tmp = *sp & (0x7f7f >> (7 - shift));
3236 tmp |=
3237 (unsigned int)(png_ptr->background.gray << shift);
3238 *sp = (png_byte)(tmp & 0xff);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003239 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04003240
xNombred07bb0d2020-03-10 20:17:12 +01003241 if (shift == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003242 {
xNombred07bb0d2020-03-10 20:17:12 +01003243 shift = 7;
3244 sp++;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003245 }
Chris Craikb50c2172013-07-29 15:28:30 -07003246
The Android Open Source Project893912b2009-03-03 19:30:05 -08003247 else
xNombred07bb0d2020-03-10 20:17:12 +01003248 shift--;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003249 }
xNombred07bb0d2020-03-10 20:17:12 +01003250 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003251 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04003252
xNombred07bb0d2020-03-10 20:17:12 +01003253 case 2:
The Android Open Source Project893912b2009-03-03 19:30:05 -08003254 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04003255#ifdef PNG_READ_GAMMA_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003256 if (gamma_table != NULL)
3257 {
3258 sp = row;
xNombred07bb0d2020-03-10 20:17:12 +01003259 shift = 6;
3260 for (i = 0; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003261 {
xNombred07bb0d2020-03-10 20:17:12 +01003262 if ((png_uint_16)((*sp >> shift) & 0x03)
3263 == png_ptr->trans_color.gray)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003264 {
xNombred07bb0d2020-03-10 20:17:12 +01003265 unsigned int tmp = *sp & (0x3f3f >> (6 - shift));
3266 tmp |=
3267 (unsigned int)png_ptr->background.gray << shift;
3268 *sp = (png_byte)(tmp & 0xff);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003269 }
Chris Craikb50c2172013-07-29 15:28:30 -07003270
The Android Open Source Project893912b2009-03-03 19:30:05 -08003271 else
3272 {
xNombred07bb0d2020-03-10 20:17:12 +01003273 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);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003279 }
xNombred07bb0d2020-03-10 20:17:12 +01003280
3281 if (shift == 0)
3282 {
3283 shift = 6;
3284 sp++;
3285 }
3286
3287 else
3288 shift -= 2;
3289 }
3290 }
3291
3292 else
3293#endif
3294 {
3295 sp = row;
3296 shift = 6;
3297 for (i = 0; i < row_width; i++)
3298 {
3299 if ((png_uint_16)((*sp >> shift) & 0x03)
3300 == png_ptr->trans_color.gray)
3301 {
3302 unsigned int tmp = *sp & (0x3f3f >> (6 - shift));
3303 tmp |=
3304 (unsigned int)png_ptr->background.gray << shift;
3305 *sp = (png_byte)(tmp & 0xff);
3306 }
3307
3308 if (shift == 0)
3309 {
3310 shift = 6;
3311 sp++;
3312 }
3313
3314 else
3315 shift -= 2;
3316 }
3317 }
3318 break;
3319 }
3320
3321 case 4:
3322 {
3323#ifdef PNG_READ_GAMMA_SUPPORTED
3324 if (gamma_table != NULL)
3325 {
3326 sp = row;
3327 shift = 4;
3328 for (i = 0; i < row_width; i++)
3329 {
3330 if ((png_uint_16)((*sp >> shift) & 0x0f)
3331 == png_ptr->trans_color.gray)
3332 {
3333 unsigned int tmp = *sp & (0x0f0f >> (4 - shift));
3334 tmp |=
3335 (unsigned int)(png_ptr->background.gray << shift);
3336 *sp = (png_byte)(tmp & 0xff);
3337 }
3338
3339 else
3340 {
3341 unsigned int p = (*sp >> shift) & 0x0f;
3342 unsigned int g = (gamma_table[p | (p << 4)] >> 4) &
3343 0x0f;
3344 unsigned int tmp = *sp & (0x0f0f >> (4 - shift));
3345 tmp |= (unsigned int)(g << shift);
3346 *sp = (png_byte)(tmp & 0xff);
3347 }
3348
3349 if (shift == 0)
3350 {
3351 shift = 4;
3352 sp++;
3353 }
3354
3355 else
3356 shift -= 4;
3357 }
3358 }
3359
3360 else
3361#endif
3362 {
3363 sp = row;
3364 shift = 4;
3365 for (i = 0; i < row_width; i++)
3366 {
3367 if ((png_uint_16)((*sp >> shift) & 0x0f)
3368 == png_ptr->trans_color.gray)
3369 {
3370 unsigned int tmp = *sp & (0x0f0f >> (4 - shift));
3371 tmp |=
3372 (unsigned int)(png_ptr->background.gray << shift);
3373 *sp = (png_byte)(tmp & 0xff);
3374 }
3375
3376 if (shift == 0)
3377 {
3378 shift = 4;
3379 sp++;
3380 }
3381
3382 else
3383 shift -= 4;
3384 }
3385 }
3386 break;
3387 }
3388
3389 case 8:
3390 {
3391#ifdef PNG_READ_GAMMA_SUPPORTED
3392 if (gamma_table != NULL)
3393 {
3394 sp = row;
3395 for (i = 0; i < row_width; i++, sp++)
3396 {
3397 if (*sp == png_ptr->trans_color.gray)
3398 *sp = (png_byte)png_ptr->background.gray;
3399
3400 else
3401 *sp = gamma_table[*sp];
The Android Open Source Project893912b2009-03-03 19:30:05 -08003402 }
3403 }
3404 else
3405#endif
3406 {
3407 sp = row;
xNombred07bb0d2020-03-10 20:17:12 +01003408 for (i = 0; i < row_width; i++, sp++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003409 {
xNombred07bb0d2020-03-10 20:17:12 +01003410 if (*sp == png_ptr->trans_color.gray)
3411 *sp = (png_byte)png_ptr->background.gray;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003412 }
3413 }
xNombred07bb0d2020-03-10 20:17:12 +01003414 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003415 }
xNombred07bb0d2020-03-10 20:17:12 +01003416
3417 case 16:
The Android Open Source Project893912b2009-03-03 19:30:05 -08003418 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04003419#ifdef PNG_READ_GAMMA_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003420 if (gamma_16 != NULL)
3421 {
3422 sp = row;
Chris Craikb50c2172013-07-29 15:28:30 -07003423 for (i = 0; i < row_width; i++, sp += 2)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003424 {
xNombred07bb0d2020-03-10 20:17:12 +01003425 png_uint_16 v;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003426
xNombred07bb0d2020-03-10 20:17:12 +01003427 v = (png_uint_16)(((*sp) << 8) + *(sp + 1));
Chris Craikb50c2172013-07-29 15:28:30 -07003428
xNombred07bb0d2020-03-10 20:17:12 +01003429 if (v == png_ptr->trans_color.gray)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003430 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -04003431 /* Background is already in screen gamma */
xNombred07bb0d2020-03-10 20:17:12 +01003432 *sp = (png_byte)((png_ptr->background.gray >> 8)
3433 & 0xff);
3434 *(sp + 1) = (png_byte)(png_ptr->background.gray
3435 & 0xff);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003436 }
Chris Craikb50c2172013-07-29 15:28:30 -07003437
The Android Open Source Project893912b2009-03-03 19:30:05 -08003438 else
3439 {
xNombred07bb0d2020-03-10 20:17:12 +01003440 v = gamma_16[*(sp + 1) >> gamma_shift][*sp];
3441 *sp = (png_byte)((v >> 8) & 0xff);
3442 *(sp + 1) = (png_byte)(v & 0xff);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003443 }
3444 }
3445 }
3446 else
3447#endif
3448 {
3449 sp = row;
Chris Craikb50c2172013-07-29 15:28:30 -07003450 for (i = 0; i < row_width; i++, sp += 2)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003451 {
xNombred07bb0d2020-03-10 20:17:12 +01003452 png_uint_16 v;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003453
xNombred07bb0d2020-03-10 20:17:12 +01003454 v = (png_uint_16)(((*sp) << 8) + *(sp + 1));
Chris Craikb50c2172013-07-29 15:28:30 -07003455
xNombred07bb0d2020-03-10 20:17:12 +01003456 if (v == png_ptr->trans_color.gray)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003457 {
Chris Craikb50c2172013-07-29 15:28:30 -07003458 *sp = (png_byte)((png_ptr->background.gray >> 8)
xNombred07bb0d2020-03-10 20:17:12 +01003459 & 0xff);
3460 *(sp + 1) = (png_byte)(png_ptr->background.gray
3461 & 0xff);
The Android Open Source Project893912b2009-03-03 19:30:05 -08003462 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08003463 }
3464 }
xNombred07bb0d2020-03-10 20:17:12 +01003465 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003466 }
xNombred07bb0d2020-03-10 20:17:12 +01003467
3468 default:
3469 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003470 }
xNombred07bb0d2020-03-10 20:17:12 +01003471 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003472 }
xNombred07bb0d2020-03-10 20:17:12 +01003473
3474 case PNG_COLOR_TYPE_RGB:
3475 {
3476 if (row_info->bit_depth == 8)
3477 {
3478#ifdef PNG_READ_GAMMA_SUPPORTED
3479 if (gamma_table != NULL)
3480 {
3481 sp = row;
3482 for (i = 0; i < row_width; i++, sp += 3)
3483 {
3484 if (*sp == png_ptr->trans_color.red &&
3485 *(sp + 1) == png_ptr->trans_color.green &&
3486 *(sp + 2) == png_ptr->trans_color.blue)
3487 {
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;
3491 }
3492
3493 else
3494 {
3495 *sp = gamma_table[*sp];
3496 *(sp + 1) = gamma_table[*(sp + 1)];
3497 *(sp + 2) = gamma_table[*(sp + 2)];
3498 }
3499 }
3500 }
3501 else
3502#endif
3503 {
3504 sp = row;
3505 for (i = 0; i < row_width; i++, sp += 3)
3506 {
3507 if (*sp == png_ptr->trans_color.red &&
3508 *(sp + 1) == png_ptr->trans_color.green &&
3509 *(sp + 2) == png_ptr->trans_color.blue)
3510 {
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;
3514 }
3515 }
3516 }
3517 }
3518 else /* if (row_info->bit_depth == 16) */
3519 {
3520#ifdef PNG_READ_GAMMA_SUPPORTED
3521 if (gamma_16 != NULL)
3522 {
3523 sp = row;
3524 for (i = 0; i < row_width; i++, sp += 6)
3525 {
3526 png_uint_16 r = (png_uint_16)(((*sp) << 8) + *(sp + 1));
3527
3528 png_uint_16 g = (png_uint_16)(((*(sp + 2)) << 8)
3529 + *(sp + 3));
3530
3531 png_uint_16 b = (png_uint_16)(((*(sp + 4)) << 8)
3532 + *(sp + 5));
3533
3534 if (r == png_ptr->trans_color.red &&
3535 g == png_ptr->trans_color.green &&
3536 b == png_ptr->trans_color.blue)
3537 {
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)
3542 & 0xff);
3543 *(sp + 3) = (png_byte)(png_ptr->background.green
3544 & 0xff);
3545 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
3546 & 0xff);
3547 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
3548 }
3549
3550 else
3551 {
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);
3555
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);
3559
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);
3563 }
3564 }
3565 }
3566
3567 else
3568#endif
3569 {
3570 sp = row;
3571 for (i = 0; i < row_width; i++, sp += 6)
3572 {
3573 png_uint_16 r = (png_uint_16)(((*sp) << 8) + *(sp + 1));
3574
3575 png_uint_16 g = (png_uint_16)(((*(sp + 2)) << 8)
3576 + *(sp + 3));
3577
3578 png_uint_16 b = (png_uint_16)(((*(sp + 4)) << 8)
3579 + *(sp + 5));
3580
3581 if (r == png_ptr->trans_color.red &&
3582 g == png_ptr->trans_color.green &&
3583 b == png_ptr->trans_color.blue)
3584 {
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)
3588 & 0xff);
3589 *(sp + 3) = (png_byte)(png_ptr->background.green
3590 & 0xff);
3591 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
3592 & 0xff);
3593 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
3594 }
3595 }
3596 }
3597 }
3598 break;
3599 }
3600
3601 case PNG_COLOR_TYPE_GRAY_ALPHA:
3602 {
3603 if (row_info->bit_depth == 8)
3604 {
3605#ifdef PNG_READ_GAMMA_SUPPORTED
3606 if (gamma_to_1 != NULL && gamma_from_1 != NULL &&
3607 gamma_table != NULL)
3608 {
3609 sp = row;
3610 for (i = 0; i < row_width; i++, sp += 2)
3611 {
3612 png_uint_16 a = *(sp + 1);
3613
3614 if (a == 0xff)
3615 *sp = gamma_table[*sp];
3616
3617 else if (a == 0)
3618 {
3619 /* Background is already in screen gamma */
3620 *sp = (png_byte)png_ptr->background.gray;
3621 }
3622
3623 else
3624 {
3625 png_byte v, w;
3626
3627 v = gamma_to_1[*sp];
3628 png_composite(w, v, a, png_ptr->background_1.gray);
3629 if (optimize == 0)
3630 w = gamma_from_1[w];
3631 *sp = w;
3632 }
3633 }
3634 }
3635 else
3636#endif
3637 {
3638 sp = row;
3639 for (i = 0; i < row_width; i++, sp += 2)
3640 {
3641 png_byte a = *(sp + 1);
3642
3643 if (a == 0)
3644 *sp = (png_byte)png_ptr->background.gray;
3645
3646 else if (a < 0xff)
3647 png_composite(*sp, *sp, a, png_ptr->background.gray);
3648 }
3649 }
3650 }
3651 else /* if (png_ptr->bit_depth == 16) */
3652 {
3653#ifdef PNG_READ_GAMMA_SUPPORTED
3654 if (gamma_16 != NULL && gamma_16_from_1 != NULL &&
3655 gamma_16_to_1 != NULL)
3656 {
3657 sp = row;
3658 for (i = 0; i < row_width; i++, sp += 4)
3659 {
3660 png_uint_16 a = (png_uint_16)(((*(sp + 2)) << 8)
3661 + *(sp + 3));
3662
3663 if (a == (png_uint_16)0xffff)
3664 {
3665 png_uint_16 v;
3666
3667 v = gamma_16[*(sp + 1) >> gamma_shift][*sp];
3668 *sp = (png_byte)((v >> 8) & 0xff);
3669 *(sp + 1) = (png_byte)(v & 0xff);
3670 }
3671
3672 else if (a == 0)
3673 {
3674 /* Background is already in screen gamma */
3675 *sp = (png_byte)((png_ptr->background.gray >> 8)
3676 & 0xff);
3677 *(sp + 1) = (png_byte)(png_ptr->background.gray & 0xff);
3678 }
3679
3680 else
3681 {
3682 png_uint_16 g, v, w;
3683
3684 g = gamma_16_to_1[*(sp + 1) >> gamma_shift][*sp];
3685 png_composite_16(v, g, a, png_ptr->background_1.gray);
3686 if (optimize != 0)
3687 w = v;
3688 else
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);
3693 }
3694 }
3695 }
3696 else
3697#endif
3698 {
3699 sp = row;
3700 for (i = 0; i < row_width; i++, sp += 4)
3701 {
3702 png_uint_16 a = (png_uint_16)(((*(sp + 2)) << 8)
3703 + *(sp + 3));
3704
3705 if (a == 0)
3706 {
3707 *sp = (png_byte)((png_ptr->background.gray >> 8)
3708 & 0xff);
3709 *(sp + 1) = (png_byte)(png_ptr->background.gray & 0xff);
3710 }
3711
3712 else if (a < 0xffff)
3713 {
3714 png_uint_16 g, v;
3715
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);
3720 }
3721 }
3722 }
3723 }
3724 break;
3725 }
3726
3727 case PNG_COLOR_TYPE_RGB_ALPHA:
3728 {
3729 if (row_info->bit_depth == 8)
3730 {
3731#ifdef PNG_READ_GAMMA_SUPPORTED
3732 if (gamma_to_1 != NULL && gamma_from_1 != NULL &&
3733 gamma_table != NULL)
3734 {
3735 sp = row;
3736 for (i = 0; i < row_width; i++, sp += 4)
3737 {
3738 png_byte a = *(sp + 3);
3739
3740 if (a == 0xff)
3741 {
3742 *sp = gamma_table[*sp];
3743 *(sp + 1) = gamma_table[*(sp + 1)];
3744 *(sp + 2) = gamma_table[*(sp + 2)];
3745 }
3746
3747 else if (a == 0)
3748 {
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;
3753 }
3754
3755 else
3756 {
3757 png_byte v, w;
3758
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];
3762 *sp = w;
3763
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];
3767 *(sp + 1) = w;
3768
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];
3772 *(sp + 2) = w;
3773 }
3774 }
3775 }
3776 else
3777#endif
3778 {
3779 sp = row;
3780 for (i = 0; i < row_width; i++, sp += 4)
3781 {
3782 png_byte a = *(sp + 3);
3783
3784 if (a == 0)
3785 {
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;
3789 }
3790
3791 else if (a < 0xff)
3792 {
3793 png_composite(*sp, *sp, a, png_ptr->background.red);
3794
3795 png_composite(*(sp + 1), *(sp + 1), a,
3796 png_ptr->background.green);
3797
3798 png_composite(*(sp + 2), *(sp + 2), a,
3799 png_ptr->background.blue);
3800 }
3801 }
3802 }
3803 }
3804 else /* if (row_info->bit_depth == 16) */
3805 {
3806#ifdef PNG_READ_GAMMA_SUPPORTED
3807 if (gamma_16 != NULL && gamma_16_from_1 != NULL &&
3808 gamma_16_to_1 != NULL)
3809 {
3810 sp = row;
3811 for (i = 0; i < row_width; i++, sp += 8)
3812 {
3813 png_uint_16 a = (png_uint_16)(((png_uint_16)(*(sp + 6))
3814 << 8) + (png_uint_16)(*(sp + 7)));
3815
3816 if (a == (png_uint_16)0xffff)
3817 {
3818 png_uint_16 v;
3819
3820 v = gamma_16[*(sp + 1) >> gamma_shift][*sp];
3821 *sp = (png_byte)((v >> 8) & 0xff);
3822 *(sp + 1) = (png_byte)(v & 0xff);
3823
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);
3827
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);
3831 }
3832
3833 else if (a == 0)
3834 {
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)
3839 & 0xff);
3840 *(sp + 3) = (png_byte)(png_ptr->background.green
3841 & 0xff);
3842 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
3843 & 0xff);
3844 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
3845 }
3846
3847 else
3848 {
3849 png_uint_16 v, w;
3850
3851 v = gamma_16_to_1[*(sp + 1) >> gamma_shift][*sp];
3852 png_composite_16(w, v, a, png_ptr->background_1.red);
3853 if (optimize == 0)
3854 w = gamma_16_from_1[((w & 0xff) >> gamma_shift)][w >>
3855 8];
3856 *sp = (png_byte)((w >> 8) & 0xff);
3857 *(sp + 1) = (png_byte)(w & 0xff);
3858
3859 v = gamma_16_to_1[*(sp + 3) >> gamma_shift][*(sp + 2)];
3860 png_composite_16(w, v, a, png_ptr->background_1.green);
3861 if (optimize == 0)
3862 w = gamma_16_from_1[((w & 0xff) >> gamma_shift)][w >>
3863 8];
3864
3865 *(sp + 2) = (png_byte)((w >> 8) & 0xff);
3866 *(sp + 3) = (png_byte)(w & 0xff);
3867
3868 v = gamma_16_to_1[*(sp + 5) >> gamma_shift][*(sp + 4)];
3869 png_composite_16(w, v, a, png_ptr->background_1.blue);
3870 if (optimize == 0)
3871 w = gamma_16_from_1[((w & 0xff) >> gamma_shift)][w >>
3872 8];
3873
3874 *(sp + 4) = (png_byte)((w >> 8) & 0xff);
3875 *(sp + 5) = (png_byte)(w & 0xff);
3876 }
3877 }
3878 }
3879
3880 else
3881#endif
3882 {
3883 sp = row;
3884 for (i = 0; i < row_width; i++, sp += 8)
3885 {
3886 png_uint_16 a = (png_uint_16)(((png_uint_16)(*(sp + 6))
3887 << 8) + (png_uint_16)(*(sp + 7)));
3888
3889 if (a == 0)
3890 {
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)
3894 & 0xff);
3895 *(sp + 3) = (png_byte)(png_ptr->background.green
3896 & 0xff);
3897 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
3898 & 0xff);
3899 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
3900 }
3901
3902 else if (a < 0xffff)
3903 {
3904 png_uint_16 v;
3905
3906 png_uint_16 r = (png_uint_16)(((*sp) << 8) + *(sp + 1));
3907 png_uint_16 g = (png_uint_16)(((*(sp + 2)) << 8)
3908 + *(sp + 3));
3909 png_uint_16 b = (png_uint_16)(((*(sp + 4)) << 8)
3910 + *(sp + 5));
3911
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);
3915
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);
3919
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);
3923 }
3924 }
3925 }
3926 }
3927 break;
3928 }
3929
3930 default:
3931 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08003932 }
3933}
Matt Sarett9b1fe632015-11-25 10:21:17 -05003934#endif /* READ_BACKGROUND || READ_ALPHA_MODE */
The Android Open Source Project893912b2009-03-03 19:30:05 -08003935
Patrick Scott5f6bd842010-06-28 16:55:16 -04003936#ifdef PNG_READ_GAMMA_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08003937/* 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().
3942 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05303943static void
Chris Craikb50c2172013-07-29 15:28:30 -07003944png_do_gamma(png_row_infop row_info, png_bytep row, png_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08003945{
Chris Craikb50c2172013-07-29 15:28:30 -07003946 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;
3949
The Android Open Source Project893912b2009-03-03 19:30:05 -08003950 png_bytep sp;
3951 png_uint_32 i;
3952 png_uint_32 row_width=row_info->width;
3953
The Android Open Source Project4215dd12009-03-09 11:52:12 -07003954 png_debug(1, "in png_do_gamma");
Patrick Scott5f6bd842010-06-28 16:55:16 -04003955
Chris Craikb50c2172013-07-29 15:28:30 -07003956 if (((row_info->bit_depth <= 8 && gamma_table != NULL) ||
3957 (row_info->bit_depth == 16 && gamma_16_table != NULL)))
The Android Open Source Project893912b2009-03-03 19:30:05 -08003958 {
3959 switch (row_info->color_type)
3960 {
3961 case PNG_COLOR_TYPE_RGB:
3962 {
3963 if (row_info->bit_depth == 8)
3964 {
3965 sp = row;
3966 for (i = 0; i < row_width; i++)
3967 {
3968 *sp = gamma_table[*sp];
3969 sp++;
3970 *sp = gamma_table[*sp];
3971 sp++;
3972 *sp = gamma_table[*sp];
3973 sp++;
3974 }
3975 }
Chris Craikb50c2172013-07-29 15:28:30 -07003976
The Android Open Source Project893912b2009-03-03 19:30:05 -08003977 else /* if (row_info->bit_depth == 16) */
3978 {
3979 sp = row;
3980 for (i = 0; i < row_width; i++)
3981 {
3982 png_uint_16 v;
3983
3984 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
3985 *sp = (png_byte)((v >> 8) & 0xff);
3986 *(sp + 1) = (png_byte)(v & 0xff);
3987 sp += 2;
Chris Craikb50c2172013-07-29 15:28:30 -07003988
The Android Open Source Project893912b2009-03-03 19:30:05 -08003989 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
3990 *sp = (png_byte)((v >> 8) & 0xff);
3991 *(sp + 1) = (png_byte)(v & 0xff);
3992 sp += 2;
Chris Craikb50c2172013-07-29 15:28:30 -07003993
The Android Open Source Project893912b2009-03-03 19:30:05 -08003994 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
3995 *sp = (png_byte)((v >> 8) & 0xff);
3996 *(sp + 1) = (png_byte)(v & 0xff);
3997 sp += 2;
3998 }
3999 }
4000 break;
4001 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004002
The Android Open Source Project893912b2009-03-03 19:30:05 -08004003 case PNG_COLOR_TYPE_RGB_ALPHA:
4004 {
4005 if (row_info->bit_depth == 8)
4006 {
4007 sp = row;
4008 for (i = 0; i < row_width; i++)
4009 {
4010 *sp = gamma_table[*sp];
4011 sp++;
Chris Craikb50c2172013-07-29 15:28:30 -07004012
The Android Open Source Project893912b2009-03-03 19:30:05 -08004013 *sp = gamma_table[*sp];
4014 sp++;
Chris Craikb50c2172013-07-29 15:28:30 -07004015
The Android Open Source Project893912b2009-03-03 19:30:05 -08004016 *sp = gamma_table[*sp];
4017 sp++;
Chris Craikb50c2172013-07-29 15:28:30 -07004018
The Android Open Source Project893912b2009-03-03 19:30:05 -08004019 sp++;
4020 }
4021 }
Chris Craikb50c2172013-07-29 15:28:30 -07004022
The Android Open Source Project893912b2009-03-03 19:30:05 -08004023 else /* if (row_info->bit_depth == 16) */
4024 {
4025 sp = row;
4026 for (i = 0; i < row_width; i++)
4027 {
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);
4031 sp += 2;
Chris Craikb50c2172013-07-29 15:28:30 -07004032
The Android Open Source Project893912b2009-03-03 19:30:05 -08004033 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
4034 *sp = (png_byte)((v >> 8) & 0xff);
4035 *(sp + 1) = (png_byte)(v & 0xff);
4036 sp += 2;
Chris Craikb50c2172013-07-29 15:28:30 -07004037
The Android Open Source Project893912b2009-03-03 19:30:05 -08004038 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
4039 *sp = (png_byte)((v >> 8) & 0xff);
4040 *(sp + 1) = (png_byte)(v & 0xff);
4041 sp += 4;
4042 }
4043 }
4044 break;
4045 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004046
The Android Open Source Project893912b2009-03-03 19:30:05 -08004047 case PNG_COLOR_TYPE_GRAY_ALPHA:
4048 {
4049 if (row_info->bit_depth == 8)
4050 {
4051 sp = row;
4052 for (i = 0; i < row_width; i++)
4053 {
4054 *sp = gamma_table[*sp];
4055 sp += 2;
4056 }
4057 }
Chris Craikb50c2172013-07-29 15:28:30 -07004058
The Android Open Source Project893912b2009-03-03 19:30:05 -08004059 else /* if (row_info->bit_depth == 16) */
4060 {
4061 sp = row;
4062 for (i = 0; i < row_width; i++)
4063 {
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);
4067 sp += 4;
4068 }
4069 }
4070 break;
4071 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004072
The Android Open Source Project893912b2009-03-03 19:30:05 -08004073 case PNG_COLOR_TYPE_GRAY:
4074 {
4075 if (row_info->bit_depth == 2)
4076 {
4077 sp = row;
4078 for (i = 0; i < row_width; i += 4)
4079 {
4080 int a = *sp & 0xc0;
4081 int b = *sp & 0x30;
4082 int c = *sp & 0x0c;
4083 int d = *sp & 0x03;
4084
4085 *sp = (png_byte)(
Patrick Scott5f6bd842010-06-28 16:55:16 -04004086 ((((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) ));
The Android Open Source Project893912b2009-03-03 19:30:05 -08004090 sp++;
4091 }
4092 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004093
The Android Open Source Project893912b2009-03-03 19:30:05 -08004094 if (row_info->bit_depth == 4)
4095 {
4096 sp = row;
4097 for (i = 0; i < row_width; i += 2)
4098 {
4099 int msb = *sp & 0xf0;
4100 int lsb = *sp & 0x0f;
4101
4102 *sp = (png_byte)((((int)gamma_table[msb | (msb >> 4)]) & 0xf0)
Patrick Scott5f6bd842010-06-28 16:55:16 -04004103 | (((int)gamma_table[(lsb << 4) | lsb]) >> 4));
The Android Open Source Project893912b2009-03-03 19:30:05 -08004104 sp++;
4105 }
4106 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004107
The Android Open Source Project893912b2009-03-03 19:30:05 -08004108 else if (row_info->bit_depth == 8)
4109 {
4110 sp = row;
4111 for (i = 0; i < row_width; i++)
4112 {
4113 *sp = gamma_table[*sp];
4114 sp++;
4115 }
4116 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004117
The Android Open Source Project893912b2009-03-03 19:30:05 -08004118 else if (row_info->bit_depth == 16)
4119 {
4120 sp = row;
4121 for (i = 0; i < row_width; i++)
4122 {
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);
4126 sp += 2;
4127 }
4128 }
4129 break;
4130 }
Chris Craikb50c2172013-07-29 15:28:30 -07004131
4132 default:
4133 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004134 }
4135 }
4136}
4137#endif
4138
Chris Craikb50c2172013-07-29 15:28:30 -07004139#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
4142 * from_1 tables.
4143 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304144static void
Chris Craikb50c2172013-07-29 15:28:30 -07004145png_do_encode_alpha(png_row_infop row_info, png_bytep row, png_structrp png_ptr)
4146{
4147 png_uint_32 row_width = row_info->width;
4148
4149 png_debug(1, "in png_do_encode_alpha");
4150
Matt Sarett9b1fe632015-11-25 10:21:17 -05004151 if ((row_info->color_type & PNG_COLOR_MASK_ALPHA) != 0)
Chris Craikb50c2172013-07-29 15:28:30 -07004152 {
4153 if (row_info->bit_depth == 8)
4154 {
xNombred07bb0d2020-03-10 20:17:12 +01004155 png_bytep table = png_ptr->gamma_from_1;
Chris Craikb50c2172013-07-29 15:28:30 -07004156
4157 if (table != NULL)
4158 {
xNombred07bb0d2020-03-10 20:17:12 +01004159 int step = (row_info->color_type & PNG_COLOR_MASK_COLOR) ? 4 : 2;
Chris Craikb50c2172013-07-29 15:28:30 -07004160
4161 /* The alpha channel is the last component: */
4162 row += step - 1;
4163
4164 for (; row_width > 0; --row_width, row += step)
4165 *row = table[*row];
4166
4167 return;
4168 }
4169 }
4170
4171 else if (row_info->bit_depth == 16)
4172 {
xNombred07bb0d2020-03-10 20:17:12 +01004173 png_uint_16pp table = png_ptr->gamma_16_from_1;
4174 int gamma_shift = png_ptr->gamma_shift;
Chris Craikb50c2172013-07-29 15:28:30 -07004175
4176 if (table != NULL)
4177 {
xNombred07bb0d2020-03-10 20:17:12 +01004178 int step = (row_info->color_type & PNG_COLOR_MASK_COLOR) ? 8 : 4;
Chris Craikb50c2172013-07-29 15:28:30 -07004179
4180 /* The alpha channel is the last component: */
4181 row += step - 2;
4182
4183 for (; row_width > 0; --row_width, row += step)
4184 {
4185 png_uint_16 v;
4186
4187 v = table[*(row + 1) >> gamma_shift][*row];
4188 *row = (png_byte)((v >> 8) & 0xff);
4189 *(row + 1) = (png_byte)(v & 0xff);
4190 }
4191
4192 return;
4193 }
4194 }
4195 }
4196
4197 /* Only get to here if called with a weird row_info; no harm has been done,
4198 * so just issue a warning.
4199 */
4200 png_warning(png_ptr, "png_do_encode_alpha: unexpected call");
4201}
4202#endif
4203
Patrick Scott5f6bd842010-06-28 16:55:16 -04004204#ifdef PNG_READ_EXPAND_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08004205/* Expands a palette row to an RGB or RGBA row depending
4206 * upon whether you supply trans and num_trans.
4207 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304208static void
xNombred07bb0d2020-03-10 20:17:12 +01004209png_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,
4211 int num_trans)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004212{
4213 int shift, value;
4214 png_bytep sp, dp;
4215 png_uint_32 i;
4216 png_uint_32 row_width=row_info->width;
4217
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004218 png_debug(1, "in png_do_expand_palette");
Patrick Scott5f6bd842010-06-28 16:55:16 -04004219
Chris Craikb50c2172013-07-29 15:28:30 -07004220 if (row_info->color_type == PNG_COLOR_TYPE_PALETTE)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004221 {
4222 if (row_info->bit_depth < 8)
4223 {
4224 switch (row_info->bit_depth)
4225 {
4226 case 1:
4227 {
xNombred07bb0d2020-03-10 20:17:12 +01004228 sp = row + (size_t)((row_width - 1) >> 3);
4229 dp = row + (size_t)row_width - 1;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004230 shift = 7 - (int)((row_width + 7) & 0x07);
4231 for (i = 0; i < row_width; i++)
4232 {
4233 if ((*sp >> shift) & 0x01)
4234 *dp = 1;
Chris Craikb50c2172013-07-29 15:28:30 -07004235
The Android Open Source Project893912b2009-03-03 19:30:05 -08004236 else
4237 *dp = 0;
Chris Craikb50c2172013-07-29 15:28:30 -07004238
The Android Open Source Project893912b2009-03-03 19:30:05 -08004239 if (shift == 7)
4240 {
4241 shift = 0;
4242 sp--;
4243 }
Chris Craikb50c2172013-07-29 15:28:30 -07004244
The Android Open Source Project893912b2009-03-03 19:30:05 -08004245 else
4246 shift++;
4247
4248 dp--;
4249 }
4250 break;
4251 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004252
The Android Open Source Project893912b2009-03-03 19:30:05 -08004253 case 2:
4254 {
xNombred07bb0d2020-03-10 20:17:12 +01004255 sp = row + (size_t)((row_width - 1) >> 2);
4256 dp = row + (size_t)row_width - 1;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004257 shift = (int)((3 - ((row_width + 3) & 0x03)) << 1);
4258 for (i = 0; i < row_width; i++)
4259 {
4260 value = (*sp >> shift) & 0x03;
4261 *dp = (png_byte)value;
4262 if (shift == 6)
4263 {
4264 shift = 0;
4265 sp--;
4266 }
Chris Craikb50c2172013-07-29 15:28:30 -07004267
The Android Open Source Project893912b2009-03-03 19:30:05 -08004268 else
4269 shift += 2;
4270
4271 dp--;
4272 }
4273 break;
4274 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004275
The Android Open Source Project893912b2009-03-03 19:30:05 -08004276 case 4:
4277 {
xNombred07bb0d2020-03-10 20:17:12 +01004278 sp = row + (size_t)((row_width - 1) >> 1);
4279 dp = row + (size_t)row_width - 1;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004280 shift = (int)((row_width & 0x01) << 2);
4281 for (i = 0; i < row_width; i++)
4282 {
4283 value = (*sp >> shift) & 0x0f;
4284 *dp = (png_byte)value;
4285 if (shift == 4)
4286 {
4287 shift = 0;
4288 sp--;
4289 }
Chris Craikb50c2172013-07-29 15:28:30 -07004290
The Android Open Source Project893912b2009-03-03 19:30:05 -08004291 else
4292 shift += 4;
4293
4294 dp--;
4295 }
4296 break;
4297 }
Chris Craikb50c2172013-07-29 15:28:30 -07004298
4299 default:
4300 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004301 }
4302 row_info->bit_depth = 8;
4303 row_info->pixel_depth = 8;
4304 row_info->rowbytes = row_width;
4305 }
Chris Craikb50c2172013-07-29 15:28:30 -07004306
4307 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004308 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08004309 {
Chris Craikb50c2172013-07-29 15:28:30 -07004310 if (num_trans > 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004311 {
xNombred07bb0d2020-03-10 20:17:12 +01004312 sp = row + (size_t)row_width - 1;
4313 dp = row + ((size_t)row_width << 2) - 1;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004314
xNombred07bb0d2020-03-10 20:17:12 +01004315 i = 0;
4316#ifdef PNG_ARM_NEON_INTRINSICS_AVAILABLE
4317 if (png_ptr->riffled_palette != NULL)
4318 {
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.
4322 */
4323 i = png_do_expand_palette_rgba8_neon(png_ptr, row_info, row,
4324 &sp, &dp);
4325 }
4326#else
4327 PNG_UNUSED(png_ptr)
4328#endif
4329
4330 for (; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004331 {
4332 if ((int)(*sp) >= num_trans)
4333 *dp-- = 0xff;
4334 else
Chris Craikb50c2172013-07-29 15:28:30 -07004335 *dp-- = trans_alpha[*sp];
The Android Open Source Project893912b2009-03-03 19:30:05 -08004336 *dp-- = palette[*sp].blue;
4337 *dp-- = palette[*sp].green;
4338 *dp-- = palette[*sp].red;
4339 sp--;
4340 }
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;
4346 }
Chris Craikb50c2172013-07-29 15:28:30 -07004347
The Android Open Source Project893912b2009-03-03 19:30:05 -08004348 else
4349 {
xNombred07bb0d2020-03-10 20:17:12 +01004350 sp = row + (size_t)row_width - 1;
4351 dp = row + (size_t)(row_width * 3) - 1;
4352 i = 0;
4353#ifdef PNG_ARM_NEON_INTRINSICS_AVAILABLE
4354 i = png_do_expand_palette_rgb8_neon(png_ptr, row_info, row,
4355 &sp, &dp);
4356#else
4357 PNG_UNUSED(png_ptr)
4358#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08004359
xNombred07bb0d2020-03-10 20:17:12 +01004360 for (; i < row_width; i++)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004361 {
4362 *dp-- = palette[*sp].blue;
4363 *dp-- = palette[*sp].green;
4364 *dp-- = palette[*sp].red;
4365 sp--;
4366 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004367
The Android Open Source Project893912b2009-03-03 19:30:05 -08004368 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;
4373 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08004374 }
4375 }
4376 }
4377}
4378
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.
4381 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304382static void
The Android Open Source Project893912b2009-03-03 19:30:05 -08004383png_do_expand(png_row_infop row_info, png_bytep row,
Chris Craikb50c2172013-07-29 15:28:30 -07004384 png_const_color_16p trans_color)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004385{
4386 int shift, value;
4387 png_bytep sp, dp;
4388 png_uint_32 i;
4389 png_uint_32 row_width=row_info->width;
4390
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004391 png_debug(1, "in png_do_expand");
Patrick Scott5f6bd842010-06-28 16:55:16 -04004392
xNombred07bb0d2020-03-10 20:17:12 +01004393 if (row_info->color_type == PNG_COLOR_TYPE_GRAY)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004394 {
xNombred07bb0d2020-03-10 20:17:12 +01004395 unsigned int gray = trans_color != NULL ? trans_color->gray : 0;
4396
4397 if (row_info->bit_depth < 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004398 {
xNombred07bb0d2020-03-10 20:17:12 +01004399 switch (row_info->bit_depth)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004400 {
xNombred07bb0d2020-03-10 20:17:12 +01004401 case 1:
The Android Open Source Project893912b2009-03-03 19:30:05 -08004402 {
xNombred07bb0d2020-03-10 20:17:12 +01004403 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);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004407 for (i = 0; i < row_width; i++)
4408 {
xNombred07bb0d2020-03-10 20:17:12 +01004409 if ((*sp >> shift) & 0x01)
4410 *dp = 0xff;
Chris Craikb50c2172013-07-29 15:28:30 -07004411
The Android Open Source Project893912b2009-03-03 19:30:05 -08004412 else
xNombred07bb0d2020-03-10 20:17:12 +01004413 *dp = 0;
Chris Craikb50c2172013-07-29 15:28:30 -07004414
xNombred07bb0d2020-03-10 20:17:12 +01004415 if (shift == 7)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004416 {
xNombred07bb0d2020-03-10 20:17:12 +01004417 shift = 0;
4418 sp--;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004419 }
Chris Craikb50c2172013-07-29 15:28:30 -07004420
The Android Open Source Project893912b2009-03-03 19:30:05 -08004421 else
xNombred07bb0d2020-03-10 20:17:12 +01004422 shift++;
Chris Craikb50c2172013-07-29 15:28:30 -07004423
xNombred07bb0d2020-03-10 20:17:12 +01004424 dp--;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004425 }
xNombred07bb0d2020-03-10 20:17:12 +01004426 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004427 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004428
xNombred07bb0d2020-03-10 20:17:12 +01004429 case 2:
4430 {
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++)
4436 {
4437 value = (*sp >> shift) & 0x03;
4438 *dp = (png_byte)(value | (value << 2) | (value << 4) |
4439 (value << 6));
4440 if (shift == 6)
4441 {
4442 shift = 0;
4443 sp--;
4444 }
4445
4446 else
4447 shift += 2;
4448
4449 dp--;
4450 }
4451 break;
4452 }
4453
4454 case 4:
4455 {
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++)
4461 {
4462 value = (*sp >> shift) & 0x0f;
4463 *dp = (png_byte)(value | (value << 4));
4464 if (shift == 4)
4465 {
4466 shift = 0;
4467 sp--;
4468 }
4469
4470 else
4471 shift = 4;
4472
4473 dp--;
4474 }
4475 break;
4476 }
4477
4478 default:
4479 break;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004480 }
xNombred07bb0d2020-03-10 20:17:12 +01004481
4482 row_info->bit_depth = 8;
4483 row_info->pixel_depth = 8;
4484 row_info->rowbytes = row_width;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004485 }
xNombred07bb0d2020-03-10 20:17:12 +01004486
4487 if (trans_color != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004488 {
4489 if (row_info->bit_depth == 8)
4490 {
xNombred07bb0d2020-03-10 20:17:12 +01004491 gray = gray & 0xff;
4492 sp = row + (size_t)row_width - 1;
4493 dp = row + ((size_t)row_width << 1) - 1;
4494
The Android Open Source Project893912b2009-03-03 19:30:05 -08004495 for (i = 0; i < row_width; i++)
4496 {
xNombred07bb0d2020-03-10 20:17:12 +01004497 if ((*sp & 0xffU) == gray)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004498 *dp-- = 0;
Chris Craikb50c2172013-07-29 15:28:30 -07004499
The Android Open Source Project893912b2009-03-03 19:30:05 -08004500 else
4501 *dp-- = 0xff;
Chris Craikb50c2172013-07-29 15:28:30 -07004502
The Android Open Source Project893912b2009-03-03 19:30:05 -08004503 *dp-- = *sp--;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004504 }
4505 }
xNombred07bb0d2020-03-10 20:17:12 +01004506
The Android Open Source Project893912b2009-03-03 19:30:05 -08004507 else if (row_info->bit_depth == 16)
4508 {
xNombred07bb0d2020-03-10 20:17:12 +01004509 unsigned int gray_high = (gray >> 8) & 0xff;
4510 unsigned int gray_low = gray & 0xff;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004511 sp = row + row_info->rowbytes - 1;
xNombred07bb0d2020-03-10 20:17:12 +01004512 dp = row + (row_info->rowbytes << 1) - 1;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004513 for (i = 0; i < row_width; i++)
4514 {
xNombred07bb0d2020-03-10 20:17:12 +01004515 if ((*(sp - 1) & 0xffU) == gray_high &&
4516 (*(sp) & 0xffU) == gray_low)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004517 {
4518 *dp-- = 0;
4519 *dp-- = 0;
4520 }
Chris Craikb50c2172013-07-29 15:28:30 -07004521
The Android Open Source Project893912b2009-03-03 19:30:05 -08004522 else
4523 {
4524 *dp-- = 0xff;
4525 *dp-- = 0xff;
4526 }
Chris Craikb50c2172013-07-29 15:28:30 -07004527
The Android Open Source Project893912b2009-03-03 19:30:05 -08004528 *dp-- = *sp--;
4529 *dp-- = *sp--;
The Android Open Source Project893912b2009-03-03 19:30:05 -08004530 }
4531 }
xNombred07bb0d2020-03-10 20:17:12 +01004532
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,
4537 row_width);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004538 }
4539 }
xNombred07bb0d2020-03-10 20:17:12 +01004540 else if (row_info->color_type == PNG_COLOR_TYPE_RGB &&
4541 trans_color != NULL)
4542 {
4543 if (row_info->bit_depth == 8)
4544 {
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++)
4551 {
4552 if (*(sp - 2) == red && *(sp - 1) == green && *(sp) == blue)
4553 *dp-- = 0;
4554
4555 else
4556 *dp-- = 0xff;
4557
4558 *dp-- = *sp--;
4559 *dp-- = *sp--;
4560 *dp-- = *sp--;
4561 }
4562 }
4563 else if (row_info->bit_depth == 16)
4564 {
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++)
4574 {
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 &&
4580 *(sp ) == blue_low)
4581 {
4582 *dp-- = 0;
4583 *dp-- = 0;
4584 }
4585
4586 else
4587 {
4588 *dp-- = 0xff;
4589 *dp-- = 0xff;
4590 }
4591
4592 *dp-- = *sp--;
4593 *dp-- = *sp--;
4594 *dp-- = *sp--;
4595 *dp-- = *sp--;
4596 *dp-- = *sp--;
4597 *dp-- = *sp--;
4598 }
4599 }
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);
4604 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08004605}
4606#endif
4607
Chris Craikb50c2172013-07-29 15:28:30 -07004608#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.
4611 */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304612static void
Chris Craikb50c2172013-07-29 15:28:30 -07004613png_do_expand_16(png_row_infop row_info, png_bytep row)
4614{
4615 if (row_info->bit_depth == 8 &&
4616 row_info->color_type != PNG_COLOR_TYPE_PALETTE)
4617 {
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
4620 * calculate:
4621 *
4622 * (input / 255) * 65535
4623 *
4624 * Which happens to be exactly input * 257 and this can be achieved
4625 * simply by byte replication in place (copying backwards).
4626 */
4627 png_byte *sp = row + row_info->rowbytes; /* source, last byte + 1 */
4628 png_byte *dp = sp + row_info->rowbytes; /* destination, end + 1 */
4629 while (dp > sp)
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -04004630 {
4631 dp[-2] = dp[-1] = *--sp; dp -= 2;
4632 }
Chris Craikb50c2172013-07-29 15:28:30 -07004633
4634 row_info->rowbytes *= 2;
4635 row_info->bit_depth = 16;
4636 row_info->pixel_depth = (png_byte)(row_info->channels * 16);
4637 }
4638}
4639#endif
4640
4641#ifdef PNG_READ_QUANTIZE_SUPPORTED
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304642static void
Chris Craikb50c2172013-07-29 15:28:30 -07004643png_do_quantize(png_row_infop row_info, png_bytep row,
4644 png_const_bytep palette_lookup, png_const_bytep quantize_lookup)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004645{
4646 png_bytep sp, dp;
4647 png_uint_32 i;
4648 png_uint_32 row_width=row_info->width;
4649
Chris Craikb50c2172013-07-29 15:28:30 -07004650 png_debug(1, "in png_do_quantize");
Patrick Scott5f6bd842010-06-28 16:55:16 -04004651
Chris Craikb50c2172013-07-29 15:28:30 -07004652 if (row_info->bit_depth == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004653 {
Chris Craikb50c2172013-07-29 15:28:30 -07004654 if (row_info->color_type == PNG_COLOR_TYPE_RGB && palette_lookup)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004655 {
4656 int r, g, b, p;
4657 sp = row;
4658 dp = row;
4659 for (i = 0; i < row_width; i++)
4660 {
4661 r = *sp++;
4662 g = *sp++;
4663 b = *sp++;
4664
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004665 /* 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);
4671 */
Chris Craikb50c2172013-07-29 15:28:30 -07004672 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));
The Android Open Source Project893912b2009-03-03 19:30:05 -08004680
4681 *dp++ = palette_lookup[p];
4682 }
Chris Craikb50c2172013-07-29 15:28:30 -07004683
The Android Open Source Project893912b2009-03-03 19:30:05 -08004684 row_info->color_type = PNG_COLOR_TYPE_PALETTE;
4685 row_info->channels = 1;
4686 row_info->pixel_depth = row_info->bit_depth;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004687 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004688 }
Chris Craikb50c2172013-07-29 15:28:30 -07004689
The Android Open Source Project893912b2009-03-03 19:30:05 -08004690 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA &&
Chris Craikb50c2172013-07-29 15:28:30 -07004691 palette_lookup != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004692 {
4693 int r, g, b, p;
4694 sp = row;
4695 dp = row;
4696 for (i = 0; i < row_width; i++)
4697 {
4698 r = *sp++;
4699 g = *sp++;
4700 b = *sp++;
4701 sp++;
4702
Chris Craikb50c2172013-07-29 15:28:30 -07004703 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));
The Android Open Source Project893912b2009-03-03 19:30:05 -08004711
4712 *dp++ = palette_lookup[p];
4713 }
Chris Craikb50c2172013-07-29 15:28:30 -07004714
The Android Open Source Project893912b2009-03-03 19:30:05 -08004715 row_info->color_type = PNG_COLOR_TYPE_PALETTE;
4716 row_info->channels = 1;
4717 row_info->pixel_depth = row_info->bit_depth;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07004718 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004719 }
Chris Craikb50c2172013-07-29 15:28:30 -07004720
The Android Open Source Project893912b2009-03-03 19:30:05 -08004721 else if (row_info->color_type == PNG_COLOR_TYPE_PALETTE &&
Chris Craikb50c2172013-07-29 15:28:30 -07004722 quantize_lookup)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004723 {
4724 sp = row;
Chris Craikb50c2172013-07-29 15:28:30 -07004725
The Android Open Source Project893912b2009-03-03 19:30:05 -08004726 for (i = 0; i < row_width; i++, sp++)
4727 {
Chris Craikb50c2172013-07-29 15:28:30 -07004728 *sp = quantize_lookup[*sp];
The Android Open Source Project893912b2009-03-03 19:30:05 -08004729 }
4730 }
4731 }
4732}
Matt Sarett9b1fe632015-11-25 10:21:17 -05004733#endif /* READ_QUANTIZE */
The Android Open Source Project893912b2009-03-03 19:30:05 -08004734
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304735/* 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.
4738 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08004739void /* PRIVATE */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304740png_do_read_transformations(png_structrp png_ptr, png_row_infop row_info)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004741{
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304742 png_debug(1, "in png_do_read_transformations");
Patrick Scott5f6bd842010-06-28 16:55:16 -04004743
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304744 if (png_ptr->row_buf == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004745 {
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304746 /* 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
4748 * information.
4749 */
4750 png_error(png_ptr, "NULL row buffer");
4751 }
Chris Craikb50c2172013-07-29 15:28:30 -07004752
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304753 /* 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.
4758 */
4759 if ((png_ptr->flags & PNG_FLAG_DETECT_UNINITIALIZED) != 0 &&
Matt Sarett9b1fe632015-11-25 10:21:17 -05004760 (png_ptr->flags & PNG_FLAG_ROW_INIT) == 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304761 {
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).
4765 */
4766 png_error(png_ptr, "Uninitialized row");
4767 }
4768
4769#ifdef PNG_READ_EXPAND_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004770 if ((png_ptr->transformations & PNG_EXPAND) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304771 {
4772 if (row_info->color_type == PNG_COLOR_TYPE_PALETTE)
The Android Open Source Project893912b2009-03-03 19:30:05 -08004773 {
xNombred07bb0d2020-03-10 20:17:12 +01004774#ifdef PNG_ARM_NEON_INTRINSICS_AVAILABLE
4775 if ((png_ptr->num_trans > 0) && (png_ptr->bit_depth == 8))
4776 {
4777 if (png_ptr->riffled_palette == NULL)
4778 {
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);
4783 }
4784 }
4785#endif
4786 png_do_expand_palette(png_ptr, row_info, png_ptr->row_buf + 1,
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304787 png_ptr->palette, png_ptr->trans_alpha, png_ptr->num_trans);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004788 }
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304789
4790 else
The Android Open Source Project893912b2009-03-03 19:30:05 -08004791 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05004792 if (png_ptr->num_trans != 0 &&
4793 (png_ptr->transformations & PNG_EXPAND_tRNS) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304794 png_do_expand(row_info, png_ptr->row_buf + 1,
4795 &(png_ptr->trans_color));
Patrick Scotta0bb96c2009-07-22 11:50:02 -04004796
The Android Open Source Project893912b2009-03-03 19:30:05 -08004797 else
xNombred07bb0d2020-03-10 20:17:12 +01004798 png_do_expand(row_info, png_ptr->row_buf + 1, NULL);
The Android Open Source Project893912b2009-03-03 19:30:05 -08004799 }
4800 }
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304801#endif
4802
4803#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004804 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))
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304808 png_do_strip_channel(row_info, png_ptr->row_buf + 1,
Alex Naidis7a055fd2016-10-01 12:23:07 +02004809 0 /* at_start == false, because SWAP_ALPHA happens later */);
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304810#endif
4811
4812#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004813 if ((png_ptr->transformations & PNG_RGB_TO_GRAY) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304814 {
4815 int rgb_error =
4816 png_do_rgb_to_gray(png_ptr, row_info,
4817 png_ptr->row_buf + 1);
4818
Matt Sarett9b1fe632015-11-25 10:21:17 -05004819 if (rgb_error != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304820 {
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");
4825
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");
4829 }
4830 }
4831#endif
4832
4833/* From Andreas Dilger e-mail to png-implement, 26 March 1998:
4834 *
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.
4839 *
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
4846 *
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)
4857 *
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.
4862 */
4863
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
4867 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05004868 if ((png_ptr->transformations & PNG_GRAY_TO_RGB) != 0 &&
4869 (png_ptr->mode & PNG_BACKGROUND_IS_GRAY) == 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304870 png_do_gray_to_rgb(row_info, png_ptr->row_buf + 1);
4871#endif
4872
4873#if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
4874 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
Matt Sarett9b1fe632015-11-25 10:21:17 -05004875 if ((png_ptr->transformations & PNG_COMPOSE) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304876 png_do_compose(row_info, png_ptr->row_buf + 1, png_ptr);
4877#endif
4878
4879#ifdef PNG_READ_GAMMA_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004880 if ((png_ptr->transformations & PNG_GAMMA) != 0 &&
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304881#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
4882 /* Because RGB_TO_GRAY does the gamma transform. */
Matt Sarett9b1fe632015-11-25 10:21:17 -05004883 (png_ptr->transformations & PNG_RGB_TO_GRAY) == 0 &&
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304884#endif
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.)
4889 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05004890 !((png_ptr->transformations & PNG_COMPOSE) != 0 &&
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304891 ((png_ptr->num_trans != 0) ||
Matt Sarett9b1fe632015-11-25 10:21:17 -05004892 (png_ptr->color_type & PNG_COLOR_MASK_ALPHA) != 0)) &&
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304893#endif
4894 /* Because png_init_read_transformations transforms the palette, unless
4895 * RGB_TO_GRAY will do the transform.
4896 */
4897 (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE))
4898 png_do_gamma(row_info, png_ptr->row_buf + 1, png_ptr);
4899#endif
4900
4901#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004902 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))
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304906 png_do_strip_channel(row_info, png_ptr->row_buf + 1,
Matt Sarett9b1fe632015-11-25 10:21:17 -05004907 0 /* at_start == false, because SWAP_ALPHA happens later */);
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304908#endif
4909
4910#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004911 if ((png_ptr->transformations & PNG_ENCODE_ALPHA) != 0 &&
4912 (row_info->color_type & PNG_COLOR_MASK_ALPHA) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304913 png_do_encode_alpha(row_info, png_ptr->row_buf + 1, png_ptr);
4914#endif
4915
4916#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004917 if ((png_ptr->transformations & PNG_SCALE_16_TO_8) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304918 png_do_scale_16_to_8(row_info, png_ptr->row_buf + 1);
4919#endif
4920
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.
4925 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05004926 if ((png_ptr->transformations & PNG_16_TO_8) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304927 png_do_chop(row_info, png_ptr->row_buf + 1);
4928#endif
4929
4930#ifdef PNG_READ_QUANTIZE_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004931 if ((png_ptr->transformations & PNG_QUANTIZE) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304932 {
4933 png_do_quantize(row_info, png_ptr->row_buf + 1,
4934 png_ptr->palette_lookup, png_ptr->quantize_index);
4935
4936 if (row_info->rowbytes == 0)
4937 png_error(png_ptr, "png_do_quantize returned rowbytes=0");
4938 }
Matt Sarett9b1fe632015-11-25 10:21:17 -05004939#endif /* READ_QUANTIZE */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304940
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!)
4946 */
Matt Sarett9b1fe632015-11-25 10:21:17 -05004947 if ((png_ptr->transformations & PNG_EXPAND_16) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304948 png_do_expand_16(row_info, png_ptr->row_buf + 1);
4949#endif
4950
4951#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
4952 /* NOTE: moved here in 1.5.4 (from much later in this list.) */
Matt Sarett9b1fe632015-11-25 10:21:17 -05004953 if ((png_ptr->transformations & PNG_GRAY_TO_RGB) != 0 &&
4954 (png_ptr->mode & PNG_BACKGROUND_IS_GRAY) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304955 png_do_gray_to_rgb(row_info, png_ptr->row_buf + 1);
4956#endif
4957
4958#ifdef PNG_READ_INVERT_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004959 if ((png_ptr->transformations & PNG_INVERT_MONO) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304960 png_do_invert(row_info, png_ptr->row_buf + 1);
4961#endif
4962
4963#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004964 if ((png_ptr->transformations & PNG_INVERT_ALPHA) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304965 png_do_read_invert_alpha(row_info, png_ptr->row_buf + 1);
4966#endif
4967
4968#ifdef PNG_READ_SHIFT_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004969 if ((png_ptr->transformations & PNG_SHIFT) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304970 png_do_unshift(row_info, png_ptr->row_buf + 1,
4971 &(png_ptr->shift));
4972#endif
4973
4974#ifdef PNG_READ_PACK_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004975 if ((png_ptr->transformations & PNG_PACK) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304976 png_do_unpack(row_info, png_ptr->row_buf + 1);
4977#endif
4978
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);
4984#endif
4985
4986#ifdef PNG_READ_BGR_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004987 if ((png_ptr->transformations & PNG_BGR) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304988 png_do_bgr(row_info, png_ptr->row_buf + 1);
4989#endif
4990
4991#ifdef PNG_READ_PACKSWAP_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004992 if ((png_ptr->transformations & PNG_PACKSWAP) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304993 png_do_packswap(row_info, png_ptr->row_buf + 1);
4994#endif
4995
4996#ifdef PNG_READ_FILLER_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05004997 if ((png_ptr->transformations & PNG_FILLER) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05304998 png_do_read_filler(row_info, png_ptr->row_buf + 1,
4999 (png_uint_32)png_ptr->filler, png_ptr->flags);
5000#endif
5001
5002#ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05005003 if ((png_ptr->transformations & PNG_SWAP_ALPHA) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305004 png_do_read_swap_alpha(row_info, png_ptr->row_buf + 1);
5005#endif
5006
5007#ifdef PNG_READ_16BIT_SUPPORTED
5008#ifdef PNG_READ_SWAP_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05005009 if ((png_ptr->transformations & PNG_SWAP_BYTES) != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305010 png_do_swap(row_info, png_ptr->row_buf + 1);
5011#endif
5012#endif
5013
5014#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -05005015 if ((png_ptr->transformations & PNG_USER_TRANSFORM) != 0)
5016 {
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305017 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 */
xNombred07bb0d2020-03-10 20:17:12 +01005022 /* size_t rowbytes; number of bytes in row */
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305023 /* 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
Matt Sarett9b1fe632015-11-25 10:21:17 -05005029 if (png_ptr->user_transform_depth != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305030 row_info->bit_depth = png_ptr->user_transform_depth;
5031
Matt Sarett9b1fe632015-11-25 10:21:17 -05005032 if (png_ptr->user_transform_channels != 0)
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305033 row_info->channels = png_ptr->user_transform_channels;
5034#endif
5035 row_info->pixel_depth = (png_byte)(row_info->bit_depth *
5036 row_info->channels);
5037
5038 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_info->width);
5039 }
5040#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08005041}
Sireesh Tripurarib478e662014-05-09 15:15:10 +05305042
Matt Sarett9b1fe632015-11-25 10:21:17 -05005043#endif /* READ_TRANSFORMS */
5044#endif /* READ */