blob: 3b7d484fc272dc9e53effad35a3d7523e5bd0ff6 [file] [log] [blame]
Guy Schalnat0d580581995-07-20 02:43:20 -05001
Andreas Dilger47a0c421997-05-16 02:46:07 -05002/* pngrtran.c - transforms the data in a row for PNG readers
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrsoncf644fa2013-10-14 13:16:38 -05004 * Last changed in libpng 1.6.4 [August 21, 2013]
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06005 * Copyright (c) 1998-2013 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06008 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05009 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050010 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050011 * and license in png.h
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050012 *
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060013 * This file contains functions optionally called by an application
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060014 * in order to tell libpng how to handle data when reading a PNG.
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -050015 * Transformations that are used in both reading and writing are
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060016 * in pngtrans.c.
17 */
Guy Schalnat0d580581995-07-20 02:43:20 -050018
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050019#include "pngpriv.h"
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -060020
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060021#ifdef PNG_READ_SUPPORTED
22
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060023/* Set the action on getting a CRC error for an ancillary or critical chunk. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050024void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -060025png_set_crc_action(png_structrp png_ptr, int crit_action, int ancil_action)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060026{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -050027 png_debug(1, "in png_set_crc_action");
Glenn Randers-Pehrson821b7102010-06-24 16:16:32 -050028
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050029 if (png_ptr == NULL)
30 return;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050031
32 /* Tell libpng how we react to CRC errors in critical chunks */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060033 switch (crit_action)
34 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050035 case PNG_CRC_NO_CHANGE: /* Leave setting as is */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060036 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050037
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050038 case PNG_CRC_WARN_USE: /* Warn/use data */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060039 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
40 png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE;
41 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050042
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050043 case PNG_CRC_QUIET_USE: /* Quiet/use data */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060044 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
45 png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE |
46 PNG_FLAG_CRC_CRITICAL_IGNORE;
47 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050048
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050049 case PNG_CRC_WARN_DISCARD: /* Not a valid action for critical data */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050050 png_warning(png_ptr,
51 "Can't discard critical data on CRC error");
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050052 case PNG_CRC_ERROR_QUIT: /* Error/quit */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050053
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060054 case PNG_CRC_DEFAULT:
55 default:
56 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
57 break;
58 }
59
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050060 /* Tell libpng how we react to CRC errors in ancillary chunks */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060061 switch (ancil_action)
62 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050063 case PNG_CRC_NO_CHANGE: /* Leave setting as is */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060064 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050065
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050066 case PNG_CRC_WARN_USE: /* Warn/use data */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060067 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
68 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE;
69 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050070
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050071 case PNG_CRC_QUIET_USE: /* Quiet/use data */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060072 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
73 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE |
74 PNG_FLAG_CRC_ANCILLARY_NOWARN;
75 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050076
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050077 case PNG_CRC_ERROR_QUIT: /* Error/quit */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060078 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
79 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_NOWARN;
80 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050081
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050082 case PNG_CRC_WARN_DISCARD: /* Warn/discard data */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050083
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060084 case PNG_CRC_DEFAULT:
85 default:
86 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
87 break;
88 }
89}
90
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -060091#ifdef PNG_READ_TRANSFORMS_SUPPORTED
92/* Is it OK to set a transformation now? Only if png_start_read_image or
93 * png_read_update_info have not been called. It is not necessary for the IHDR
94 * to have been read in all cases, the parameter allows for this check too.
95 */
96static int
97png_rtran_ok(png_structrp png_ptr, int need_IHDR)
98{
99 if (png_ptr != NULL)
100 {
101 if (png_ptr->flags & PNG_FLAG_ROW_INIT)
102 png_app_error(png_ptr,
103 "invalid after png_start_read_image or png_read_update_info");
104
105 else if (need_IHDR && (png_ptr->mode & PNG_HAVE_IHDR) == 0)
106 png_app_error(png_ptr, "invalid before the PNG header has been read");
107
108 else
109 {
110 /* Turn on failure to initialize correctly for all transforms. */
111 png_ptr->flags |= PNG_FLAG_DETECT_UNINITIALIZED;
112
113 return 1; /* Ok */
114 }
115 }
116
117 return 0; /* no png_error possible! */
118}
119#endif
120
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500121#ifdef PNG_READ_BACKGROUND_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500122/* Handle alpha and tRNS via a background color */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500123void PNGFAPI
John Bowler5d567862011-12-24 09:12:00 -0600124png_set_background_fixed(png_structrp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500125 png_const_color_16p background_color, int background_gamma_code,
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500126 int need_expand, png_fixed_point background_gamma)
Guy Schalnat0d580581995-07-20 02:43:20 -0500127{
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500128 png_debug(1, "in png_set_background_fixed");
Glenn Randers-Pehrson821b7102010-06-24 16:16:32 -0500129
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600130 if (!png_rtran_ok(png_ptr, 0) || background_color == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500131 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500132
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600133 if (background_gamma_code == PNG_BACKGROUND_GAMMA_UNKNOWN)
134 {
135 png_warning(png_ptr, "Application must supply a known background gamma");
136 return;
137 }
138
John Bowlerd273ad22011-05-07 21:00:28 -0500139 png_ptr->transformations |= PNG_COMPOSE | PNG_STRIP_ALPHA;
140 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
141 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
142
John Bowlerfcd301d2011-12-28 21:34:27 -0600143 png_ptr->background = *background_color;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500144 png_ptr->background_gamma = background_gamma;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600145 png_ptr->background_gamma_type = (png_byte)(background_gamma_code);
John Bowlerd273ad22011-05-07 21:00:28 -0500146 if (need_expand)
147 png_ptr->transformations |= PNG_BACKGROUND_EXPAND;
148 else
149 png_ptr->transformations &= ~PNG_BACKGROUND_EXPAND;
Guy Schalnat0d580581995-07-20 02:43:20 -0500150}
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500151
152# ifdef PNG_FLOATING_POINT_SUPPORTED
153void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600154png_set_background(png_structrp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500155 png_const_color_16p background_color, int background_gamma_code,
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500156 int need_expand, double background_gamma)
157{
158 png_set_background_fixed(png_ptr, background_color, background_gamma_code,
159 need_expand, png_fixed(png_ptr, background_gamma, "png_set_background"));
160}
161# endif /* FLOATING_POINT */
162#endif /* READ_BACKGROUND */
Guy Schalnat0d580581995-07-20 02:43:20 -0500163
John Bowler8d261262011-06-18 13:37:11 -0500164/* Scale 16-bit depth files to 8-bit depth. If both of these are set then the
165 * one that pngrtran does first (scale) happens. This is necessary to allow the
166 * TRANSFORM and API behavior to be somewhat consistent, and it's simpler.
167 */
168#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500169void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600170png_set_scale_16(png_structrp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500171{
Glenn Randers-Pehrsona7428d42011-06-17 19:07:04 -0500172 png_debug(1, "in png_set_scale_16");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500173
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600174 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500175 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500176
Glenn Randers-Pehrsonab63dd02011-06-17 20:04:17 -0500177 png_ptr->transformations |= PNG_SCALE_16_TO_8;
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -0500178}
John Bowler8d261262011-06-18 13:37:11 -0500179#endif
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -0500180
John Bowler8d261262011-06-18 13:37:11 -0500181#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -0500182/* Chop 16-bit depth files to 8-bit depth */
183void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600184png_set_strip_16(png_structrp png_ptr)
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -0500185{
Glenn Randers-Pehrsonab63dd02011-06-17 20:04:17 -0500186 png_debug(1, "in png_set_strip_16");
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -0500187
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600188 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -0500189 return;
190
Glenn Randers-Pehrsonab63dd02011-06-17 20:04:17 -0500191 png_ptr->transformations |= PNG_16_TO_8;
Guy Schalnat0d580581995-07-20 02:43:20 -0500192}
John Bowler8d261262011-06-18 13:37:11 -0500193#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500194
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500195#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500196void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600197png_set_strip_alpha(png_structrp png_ptr)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500198{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500199 png_debug(1, "in png_set_strip_alpha");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500200
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600201 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500202 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500203
John Bowler9b872f42011-02-12 09:00:16 -0600204 png_ptr->transformations |= PNG_STRIP_ALPHA;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500205}
206#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500207
John Bowlerf70c7d02011-05-10 22:54:37 -0500208#if defined(PNG_READ_ALPHA_MODE_SUPPORTED) || defined(PNG_READ_GAMMA_SUPPORTED)
209static png_fixed_point
John Bowler5d567862011-12-24 09:12:00 -0600210translate_gamma_flags(png_structrp png_ptr, png_fixed_point output_gamma,
John Bowlerf70c7d02011-05-10 22:54:37 -0500211 int is_screen)
212{
213 /* Check for flag values. The main reason for having the old Mac value as a
214 * flag is that it is pretty near impossible to work out what the correct
215 * value is from Apple documentation - a working Mac system is needed to
216 * discover the value!
217 */
218 if (output_gamma == PNG_DEFAULT_sRGB ||
219 output_gamma == PNG_FP_1 / PNG_DEFAULT_sRGB)
220 {
221 /* If there is no sRGB support this just sets the gamma to the standard
222 * sRGB value. (This is a side effect of using this function!)
223 */
224# ifdef PNG_READ_sRGB_SUPPORTED
225 png_ptr->flags |= PNG_FLAG_ASSUME_sRGB;
John Bowlere4413a72013-04-17 21:27:47 -0500226# else
227 PNG_UNUSED(png_ptr)
John Bowlerf70c7d02011-05-10 22:54:37 -0500228# endif
229 if (is_screen)
230 output_gamma = PNG_GAMMA_sRGB;
231 else
232 output_gamma = PNG_GAMMA_sRGB_INVERSE;
233 }
234
235 else if (output_gamma == PNG_GAMMA_MAC_18 ||
236 output_gamma == PNG_FP_1 / PNG_GAMMA_MAC_18)
237 {
238 if (is_screen)
239 output_gamma = PNG_GAMMA_MAC_OLD;
240 else
241 output_gamma = PNG_GAMMA_MAC_INVERSE;
242 }
243
244 return output_gamma;
245}
246
247# ifdef PNG_FLOATING_POINT_SUPPORTED
248static png_fixed_point
John Bowler5d567862011-12-24 09:12:00 -0600249convert_gamma_value(png_structrp png_ptr, double output_gamma)
John Bowlerf70c7d02011-05-10 22:54:37 -0500250{
251 /* The following silently ignores cases where fixed point (times 100,000)
252 * gamma values are passed to the floating point API. This is safe and it
253 * means the fixed point constants work just fine with the floating point
254 * API. The alternative would just lead to undetected errors and spurious
255 * bug reports. Negative values fail inside the _fixed API unless they
256 * correspond to the flag values.
257 */
258 if (output_gamma > 0 && output_gamma < 128)
259 output_gamma *= PNG_FP_1;
260
261 /* This preserves -1 and -2 exactly: */
262 output_gamma = floor(output_gamma + .5);
263
264 if (output_gamma > PNG_FP_MAX || output_gamma < PNG_FP_MIN)
265 png_fixed_error(png_ptr, "gamma value");
266
267 return (png_fixed_point)output_gamma;
268}
269# endif
270#endif /* READ_ALPHA_MODE || READ_GAMMA */
271
John Bowlerd273ad22011-05-07 21:00:28 -0500272#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
273void PNGFAPI
John Bowler5d567862011-12-24 09:12:00 -0600274png_set_alpha_mode_fixed(png_structrp png_ptr, int mode,
John Bowlerd273ad22011-05-07 21:00:28 -0500275 png_fixed_point output_gamma)
276{
277 int compose = 0;
278 png_fixed_point file_gamma;
279
280 png_debug(1, "in png_set_alpha_mode");
281
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600282 if (!png_rtran_ok(png_ptr, 0))
John Bowlerd273ad22011-05-07 21:00:28 -0500283 return;
284
John Bowlerf70c7d02011-05-10 22:54:37 -0500285 output_gamma = translate_gamma_flags(png_ptr, output_gamma, 1/*screen*/);
John Bowlerd273ad22011-05-07 21:00:28 -0500286
John Bowlerf70c7d02011-05-10 22:54:37 -0500287 /* Validate the value to ensure it is in a reasonable range. The value
John Bowlerd273ad22011-05-07 21:00:28 -0500288 * is expected to be 1 or greater, but this range test allows for some
289 * viewing correction values. The intent is to weed out users of this API
290 * who use the inverse of the gamma value accidentally! Since some of these
291 * values are reasonable this may have to be changed.
292 */
John Bowlerf70c7d02011-05-10 22:54:37 -0500293 if (output_gamma < 70000 || output_gamma > 300000)
Glenn Randers-Pehrsone9eeb742011-05-08 19:38:42 -0500294 png_error(png_ptr, "output gamma out of expected range");
John Bowlerd273ad22011-05-07 21:00:28 -0500295
Glenn Randers-Pehrsonc7822512011-05-07 21:23:43 -0500296 /* The default file gamma is the inverse of the output gamma; the output
John Bowlerd273ad22011-05-07 21:00:28 -0500297 * gamma may be changed below so get the file value first:
298 */
299 file_gamma = png_reciprocal(output_gamma);
300
301 /* There are really 8 possibilities here, composed of any combination
302 * of:
303 *
304 * premultiply the color channels
305 * do not encode non-opaque pixels
306 * encode the alpha as well as the color channels
307 *
308 * The differences disappear if the input/output ('screen') gamma is 1.0,
309 * because then the encoding is a no-op and there is only the choice of
310 * premultiplying the color channels or not.
311 *
312 * png_set_alpha_mode and png_set_background interact because both use
313 * png_compose to do the work. Calling both is only useful when
314 * png_set_alpha_mode is used to set the default mode - PNG_ALPHA_PNG - along
315 * with a default gamma value. Otherwise PNG_COMPOSE must not be set.
316 */
317 switch (mode)
318 {
319 case PNG_ALPHA_PNG: /* default: png standard */
320 /* No compose, but it may be set by png_set_background! */
321 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
322 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
323 break;
324
325 case PNG_ALPHA_ASSOCIATED: /* color channels premultiplied */
326 compose = 1;
327 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
328 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
329 /* The output is linear: */
330 output_gamma = PNG_FP_1;
331 break;
332
333 case PNG_ALPHA_OPTIMIZED: /* associated, non-opaque pixels linear */
334 compose = 1;
335 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
336 png_ptr->flags |= PNG_FLAG_OPTIMIZE_ALPHA;
337 /* output_gamma records the encoding of opaque pixels! */
338 break;
339
340 case PNG_ALPHA_BROKEN: /* associated, non-linear, alpha encoded */
341 compose = 1;
342 png_ptr->transformations |= PNG_ENCODE_ALPHA;
343 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
344 break;
345
346 default:
347 png_error(png_ptr, "invalid alpha mode");
348 }
349
350 /* Only set the default gamma if the file gamma has not been set (this has
351 * the side effect that the gamma in a second call to png_set_alpha_mode will
352 * be ignored.)
353 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600354 if (png_ptr->colorspace.gamma == 0)
355 {
356 png_ptr->colorspace.gamma = file_gamma;
357 png_ptr->colorspace.flags |= PNG_COLORSPACE_HAVE_GAMMA;
358 }
John Bowlerd273ad22011-05-07 21:00:28 -0500359
360 /* But always set the output gamma: */
361 png_ptr->screen_gamma = output_gamma;
362
Glenn Randers-Pehrsonc7822512011-05-07 21:23:43 -0500363 /* Finally, if pre-multiplying, set the background fields to achieve the
John Bowlerd273ad22011-05-07 21:00:28 -0500364 * desired result.
365 */
366 if (compose)
367 {
368 /* And obtain alpha pre-multiplication by composing on black: */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600369 memset(&png_ptr->background, 0, (sizeof png_ptr->background));
370 png_ptr->background_gamma = png_ptr->colorspace.gamma; /* just in case */
John Bowlerd273ad22011-05-07 21:00:28 -0500371 png_ptr->background_gamma_type = PNG_BACKGROUND_GAMMA_FILE;
372 png_ptr->transformations &= ~PNG_BACKGROUND_EXPAND;
373
374 if (png_ptr->transformations & PNG_COMPOSE)
375 png_error(png_ptr,
376 "conflicting calls to set alpha mode and background");
377
378 png_ptr->transformations |= PNG_COMPOSE;
379 }
John Bowlerd273ad22011-05-07 21:00:28 -0500380}
381
382# ifdef PNG_FLOATING_POINT_SUPPORTED
383void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600384png_set_alpha_mode(png_structrp png_ptr, int mode, double output_gamma)
John Bowlerd273ad22011-05-07 21:00:28 -0500385{
John Bowlerf70c7d02011-05-10 22:54:37 -0500386 png_set_alpha_mode_fixed(png_ptr, mode, convert_gamma_value(png_ptr,
387 output_gamma));
John Bowlerd273ad22011-05-07 21:00:28 -0500388}
389# endif
390#endif
391
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500392#ifdef PNG_READ_QUANTIZE_SUPPORTED
Glenn Randers-Pehrson55fbff32011-05-17 06:49:32 -0500393/* Dither file to 8-bit. Supply a palette, the current number
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600394 * of elements in the palette, the maximum number of elements
395 * allowed, and a histogram if possible. If the current number
396 * of colors is greater then the maximum number, the palette will be
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500397 * modified to fit in the maximum number. "full_quantize" indicates
398 * whether we need a quantizing cube set up for RGB images, or if we
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600399 * simply are reducing the number of colors in a paletted image.
400 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600401
402typedef struct png_dsort_struct
Guy Schalnat0d580581995-07-20 02:43:20 -0500403{
John Bowlerbaeb6d12011-11-26 18:21:02 -0600404 struct png_dsort_struct * next;
Guy Schalnat0d580581995-07-20 02:43:20 -0500405 png_byte left;
406 png_byte right;
Guy Schalnat6d764711995-12-19 03:22:19 -0600407} png_dsort;
John Bowlerbaeb6d12011-11-26 18:21:02 -0600408typedef png_dsort * png_dsortp;
409typedef png_dsort * * png_dsortpp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500410
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500411void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600412png_set_quantize(png_structrp png_ptr, png_colorp palette,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500413 int num_palette, int maximum_colors, png_const_uint_16p histogram,
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500414 int full_quantize)
Guy Schalnat0d580581995-07-20 02:43:20 -0500415{
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500416 png_debug(1, "in png_set_quantize");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500417
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600418 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500419 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500420
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500421 png_ptr->transformations |= PNG_QUANTIZE;
Guy Schalnat0d580581995-07-20 02:43:20 -0500422
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500423 if (!full_quantize)
Guy Schalnat0d580581995-07-20 02:43:20 -0500424 {
425 int i;
426
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500427 png_ptr->quantize_index = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600428 (png_uint_32)(num_palette * (sizeof (png_byte))));
Guy Schalnat0d580581995-07-20 02:43:20 -0500429 for (i = 0; i < num_palette; i++)
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500430 png_ptr->quantize_index[i] = (png_byte)i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500431 }
432
433 if (num_palette > maximum_colors)
434 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500435 if (histogram != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -0500436 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500437 /* This is easy enough, just throw out the least used colors.
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500438 * Perhaps not the best solution, but good enough.
439 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500440
441 int i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500442
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500443 /* Initialize an array to sort colors */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500444 png_ptr->quantize_sort = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600445 (png_uint_32)(num_palette * (sizeof (png_byte))));
Guy Schalnat0d580581995-07-20 02:43:20 -0500446
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500447 /* Initialize the quantize_sort array */
Guy Schalnat0d580581995-07-20 02:43:20 -0500448 for (i = 0; i < num_palette; i++)
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500449 png_ptr->quantize_sort[i] = (png_byte)i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500450
Andreas Dilger47a0c421997-05-16 02:46:07 -0500451 /* Find the least used palette entries by starting a
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500452 * bubble sort, and running it until we have sorted
453 * out enough colors. Note that we don't care about
454 * sorting all the colors, just finding which are
455 * least used.
456 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500457
458 for (i = num_palette - 1; i >= maximum_colors; i--)
459 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500460 int done; /* To stop early if the list is pre-sorted */
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600461 int j;
Guy Schalnat0d580581995-07-20 02:43:20 -0500462
463 done = 1;
464 for (j = 0; j < i; j++)
465 {
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500466 if (histogram[png_ptr->quantize_sort[j]]
467 < histogram[png_ptr->quantize_sort[j + 1]])
Guy Schalnat0d580581995-07-20 02:43:20 -0500468 {
469 png_byte t;
470
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500471 t = png_ptr->quantize_sort[j];
472 png_ptr->quantize_sort[j] = png_ptr->quantize_sort[j + 1];
473 png_ptr->quantize_sort[j + 1] = t;
Guy Schalnat0d580581995-07-20 02:43:20 -0500474 done = 0;
475 }
476 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500477
Guy Schalnat0d580581995-07-20 02:43:20 -0500478 if (done)
479 break;
480 }
481
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500482 /* Swap the palette around, and set up a table, if necessary */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500483 if (full_quantize)
Guy Schalnat0d580581995-07-20 02:43:20 -0500484 {
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500485 int j = num_palette;
Guy Schalnat0d580581995-07-20 02:43:20 -0500486
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500487 /* Put all the useful colors within the max, but don't
488 * move the others.
489 */
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500490 for (i = 0; i < maximum_colors; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500491 {
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500492 if ((int)png_ptr->quantize_sort[i] >= maximum_colors)
Guy Schalnat0d580581995-07-20 02:43:20 -0500493 {
494 do
495 j--;
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500496 while ((int)png_ptr->quantize_sort[j] >= maximum_colors);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500497
Guy Schalnat0d580581995-07-20 02:43:20 -0500498 palette[i] = palette[j];
499 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600500 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500501 }
502 else
503 {
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500504 int j = num_palette;
Guy Schalnat0d580581995-07-20 02:43:20 -0500505
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500506 /* Move all the used colors inside the max limit, and
507 * develop a translation table.
508 */
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500509 for (i = 0; i < maximum_colors; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500510 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500511 /* Only move the colors we need to */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500512 if ((int)png_ptr->quantize_sort[i] >= maximum_colors)
Guy Schalnat0d580581995-07-20 02:43:20 -0500513 {
514 png_color tmp_color;
515
516 do
517 j--;
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500518 while ((int)png_ptr->quantize_sort[j] >= maximum_colors);
Guy Schalnat0d580581995-07-20 02:43:20 -0500519
520 tmp_color = palette[j];
521 palette[j] = palette[i];
522 palette[i] = tmp_color;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500523 /* Indicate where the color went */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500524 png_ptr->quantize_index[j] = (png_byte)i;
525 png_ptr->quantize_index[i] = (png_byte)j;
Guy Schalnat0d580581995-07-20 02:43:20 -0500526 }
527 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500528
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500529 /* Find closest color for those colors we are not using */
Guy Schalnat0d580581995-07-20 02:43:20 -0500530 for (i = 0; i < num_palette; i++)
531 {
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500532 if ((int)png_ptr->quantize_index[i] >= maximum_colors)
Guy Schalnat0d580581995-07-20 02:43:20 -0500533 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500534 int min_d, k, min_k, d_index;
Guy Schalnat0d580581995-07-20 02:43:20 -0500535
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500536 /* Find the closest color to one we threw out */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500537 d_index = png_ptr->quantize_index[i];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500538 min_d = PNG_COLOR_DIST(palette[d_index], palette[0]);
539 for (k = 1, min_k = 0; k < maximum_colors; k++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500540 {
541 int d;
542
Andreas Dilger47a0c421997-05-16 02:46:07 -0500543 d = PNG_COLOR_DIST(palette[d_index], palette[k]);
Guy Schalnat0d580581995-07-20 02:43:20 -0500544
545 if (d < min_d)
546 {
547 min_d = d;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500548 min_k = k;
Guy Schalnat0d580581995-07-20 02:43:20 -0500549 }
550 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500551 /* Point to closest color */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500552 png_ptr->quantize_index[i] = (png_byte)min_k;
Guy Schalnat0d580581995-07-20 02:43:20 -0500553 }
554 }
555 }
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500556 png_free(png_ptr, png_ptr->quantize_sort);
557 png_ptr->quantize_sort = NULL;
Guy Schalnat0d580581995-07-20 02:43:20 -0500558 }
559 else
560 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500561 /* This is much harder to do simply (and quickly). Perhaps
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500562 * we need to go through a median cut routine, but those
563 * don't always behave themselves with only a few colors
564 * as input. So we will just find the closest two colors,
565 * and throw out one of them (chosen somewhat randomly).
566 * [We don't understand this at all, so if someone wants to
567 * work on improving it, be our guest - AED, GRP]
568 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500569 int i;
570 int max_d;
571 int num_new_palette;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500572 png_dsortp t;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600573 png_dsortpp hash;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500574
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500575 t = NULL;
Guy Schalnat0d580581995-07-20 02:43:20 -0500576
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500577 /* Initialize palette index arrays */
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500578 png_ptr->index_to_palette = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600579 (png_uint_32)(num_palette * (sizeof (png_byte))));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500580 png_ptr->palette_to_index = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600581 (png_uint_32)(num_palette * (sizeof (png_byte))));
Guy Schalnat0d580581995-07-20 02:43:20 -0500582
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500583 /* Initialize the sort array */
Guy Schalnat0d580581995-07-20 02:43:20 -0500584 for (i = 0; i < num_palette; i++)
585 {
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500586 png_ptr->index_to_palette[i] = (png_byte)i;
587 png_ptr->palette_to_index[i] = (png_byte)i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500588 }
589
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600590 hash = (png_dsortpp)png_calloc(png_ptr, (png_uint_32)(769 *
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600591 (sizeof (png_dsortp))));
Guy Schalnat0d580581995-07-20 02:43:20 -0500592
593 num_new_palette = num_palette;
594
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500595 /* Initial wild guess at how far apart the farthest pixel
596 * pair we will be eliminating will be. Larger
597 * numbers mean more areas will be allocated, Smaller
598 * numbers run the risk of not saving enough data, and
599 * having to do this all over again.
600 *
601 * I have not done extensive checking on this number.
602 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500603 max_d = 96;
604
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600605 while (num_new_palette > maximum_colors)
Guy Schalnat0d580581995-07-20 02:43:20 -0500606 {
607 for (i = 0; i < num_new_palette - 1; i++)
608 {
609 int j;
610
611 for (j = i + 1; j < num_new_palette; j++)
612 {
613 int d;
614
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600615 d = PNG_COLOR_DIST(palette[i], palette[j]);
Guy Schalnat0d580581995-07-20 02:43:20 -0500616
617 if (d <= max_d)
618 {
Guy Schalnat0d580581995-07-20 02:43:20 -0500619
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500620 t = (png_dsortp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600621 (png_uint_32)(sizeof (png_dsort)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500622
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500623 if (t == NULL)
624 break;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500625
Guy Schalnat0d580581995-07-20 02:43:20 -0500626 t->next = hash[d];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600627 t->left = (png_byte)i;
628 t->right = (png_byte)j;
Guy Schalnat0d580581995-07-20 02:43:20 -0500629 hash[d] = t;
630 }
631 }
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500632 if (t == NULL)
633 break;
Guy Schalnat0d580581995-07-20 02:43:20 -0500634 }
635
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500636 if (t != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -0500637 for (i = 0; i <= max_d; i++)
638 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500639 if (hash[i] != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -0500640 {
Guy Schalnat6d764711995-12-19 03:22:19 -0600641 png_dsortp p;
Guy Schalnat0d580581995-07-20 02:43:20 -0500642
643 for (p = hash[i]; p; p = p->next)
644 {
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500645 if ((int)png_ptr->index_to_palette[p->left]
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600646 < num_new_palette &&
647 (int)png_ptr->index_to_palette[p->right]
648 < num_new_palette)
Guy Schalnat0d580581995-07-20 02:43:20 -0500649 {
650 int j, next_j;
651
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600652 if (num_new_palette & 0x01)
Guy Schalnat0d580581995-07-20 02:43:20 -0500653 {
654 j = p->left;
655 next_j = p->right;
656 }
657 else
658 {
659 j = p->right;
660 next_j = p->left;
661 }
662
663 num_new_palette--;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500664 palette[png_ptr->index_to_palette[j]]
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600665 = palette[num_new_palette];
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500666 if (!full_quantize)
Guy Schalnat0d580581995-07-20 02:43:20 -0500667 {
668 int k;
669
670 for (k = 0; k < num_palette; k++)
671 {
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500672 if (png_ptr->quantize_index[k] ==
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600673 png_ptr->index_to_palette[j])
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500674 png_ptr->quantize_index[k] =
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600675 png_ptr->index_to_palette[next_j];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500676
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500677 if ((int)png_ptr->quantize_index[k] ==
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600678 num_new_palette)
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500679 png_ptr->quantize_index[k] =
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600680 png_ptr->index_to_palette[j];
Guy Schalnat0d580581995-07-20 02:43:20 -0500681 }
682 }
683
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500684 png_ptr->index_to_palette[png_ptr->palette_to_index
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600685 [num_new_palette]] = png_ptr->index_to_palette[j];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500686
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500687 png_ptr->palette_to_index[png_ptr->index_to_palette[j]]
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600688 = png_ptr->palette_to_index[num_new_palette];
Guy Schalnat0d580581995-07-20 02:43:20 -0500689
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600690 png_ptr->index_to_palette[j] =
691 (png_byte)num_new_palette;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500692
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600693 png_ptr->palette_to_index[num_new_palette] =
694 (png_byte)j;
Guy Schalnat0d580581995-07-20 02:43:20 -0500695 }
696 if (num_new_palette <= maximum_colors)
697 break;
698 }
699 if (num_new_palette <= maximum_colors)
700 break;
701 }
702 }
703
704 for (i = 0; i < 769; i++)
705 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500706 if (hash[i] != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -0500707 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500708 png_dsortp p = hash[i];
Guy Schalnat0d580581995-07-20 02:43:20 -0500709 while (p)
710 {
Guy Schalnat0d580581995-07-20 02:43:20 -0500711 t = p->next;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600712 png_free(png_ptr, p);
Guy Schalnat0d580581995-07-20 02:43:20 -0500713 p = t;
714 }
715 }
716 hash[i] = 0;
717 }
718 max_d += 96;
719 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600720 png_free(png_ptr, hash);
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500721 png_free(png_ptr, png_ptr->palette_to_index);
722 png_free(png_ptr, png_ptr->index_to_palette);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500723 png_ptr->palette_to_index = NULL;
724 png_ptr->index_to_palette = NULL;
Guy Schalnat0d580581995-07-20 02:43:20 -0500725 }
726 num_palette = maximum_colors;
727 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500728 if (png_ptr->palette == NULL)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600729 {
Guy Schalnat0d580581995-07-20 02:43:20 -0500730 png_ptr->palette = palette;
Guy Schalnat0d580581995-07-20 02:43:20 -0500731 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600732 png_ptr->num_palette = (png_uint_16)num_palette;
Guy Schalnat0d580581995-07-20 02:43:20 -0500733
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500734 if (full_quantize)
Guy Schalnat0d580581995-07-20 02:43:20 -0500735 {
736 int i;
Guy Schalnat6d764711995-12-19 03:22:19 -0600737 png_bytep distance;
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500738 int total_bits = PNG_QUANTIZE_RED_BITS + PNG_QUANTIZE_GREEN_BITS +
739 PNG_QUANTIZE_BLUE_BITS;
740 int num_red = (1 << PNG_QUANTIZE_RED_BITS);
741 int num_green = (1 << PNG_QUANTIZE_GREEN_BITS);
742 int num_blue = (1 << PNG_QUANTIZE_BLUE_BITS);
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500743 png_size_t num_entries = ((png_size_t)1 << total_bits);
Guy Schalnat0d580581995-07-20 02:43:20 -0500744
Glenn Randers-Pehrsonbc363ec2010-10-12 21:17:00 -0500745 png_ptr->palette_lookup = (png_bytep)png_calloc(png_ptr,
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600746 (png_uint_32)(num_entries * (sizeof (png_byte))));
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500747
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500748 distance = (png_bytep)png_malloc(png_ptr, (png_uint_32)(num_entries *
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600749 (sizeof (png_byte))));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500750
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600751 memset(distance, 0xff, num_entries * (sizeof (png_byte)));
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500752
753 for (i = 0; i < num_palette; i++)
754 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500755 int ir, ig, ib;
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500756 int r = (palette[i].red >> (8 - PNG_QUANTIZE_RED_BITS));
757 int g = (palette[i].green >> (8 - PNG_QUANTIZE_GREEN_BITS));
758 int b = (palette[i].blue >> (8 - PNG_QUANTIZE_BLUE_BITS));
Guy Schalnat0d580581995-07-20 02:43:20 -0500759
760 for (ir = 0; ir < num_red; ir++)
761 {
Glenn Randers-Pehrsond029a752004-08-09 21:50:32 -0500762 /* int dr = abs(ir - r); */
763 int dr = ((ir > r) ? ir - r : r - ir);
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500764 int index_r = (ir << (PNG_QUANTIZE_BLUE_BITS +
765 PNG_QUANTIZE_GREEN_BITS));
Guy Schalnat0d580581995-07-20 02:43:20 -0500766
Guy Schalnat0d580581995-07-20 02:43:20 -0500767 for (ig = 0; ig < num_green; ig++)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600768 {
Glenn Randers-Pehrsond029a752004-08-09 21:50:32 -0500769 /* int dg = abs(ig - g); */
770 int dg = ((ig > g) ? ig - g : g - ig);
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500771 int dt = dr + dg;
772 int dm = ((dr > dg) ? dr : dg);
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500773 int index_g = index_r | (ig << PNG_QUANTIZE_BLUE_BITS);
Guy Schalnat0d580581995-07-20 02:43:20 -0500774
Guy Schalnat0d580581995-07-20 02:43:20 -0500775 for (ib = 0; ib < num_blue; ib++)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600776 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500777 int d_index = index_g | ib;
Glenn Randers-Pehrsond029a752004-08-09 21:50:32 -0500778 /* int db = abs(ib - b); */
779 int db = ((ib > b) ? ib - b : b - ib);
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500780 int dmax = ((dm > db) ? dm : db);
781 int d = dmax + dt + db;
Guy Schalnat0d580581995-07-20 02:43:20 -0500782
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600783 if (d < (int)distance[d_index])
Guy Schalnat0d580581995-07-20 02:43:20 -0500784 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500785 distance[d_index] = (png_byte)d;
786 png_ptr->palette_lookup[d_index] = (png_byte)i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500787 }
788 }
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500789 }
790 }
791 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500792
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600793 png_free(png_ptr, distance);
Guy Schalnat0d580581995-07-20 02:43:20 -0500794 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500795}
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500796#endif /* PNG_READ_QUANTIZE_SUPPORTED */
Guy Schalnat0d580581995-07-20 02:43:20 -0500797
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500798#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500799void PNGFAPI
John Bowler5d567862011-12-24 09:12:00 -0600800png_set_gamma_fixed(png_structrp png_ptr, png_fixed_point scrn_gamma,
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500801 png_fixed_point file_gamma)
802{
803 png_debug(1, "in png_set_gamma_fixed");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500804
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600805 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500806 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500807
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500808 /* New in libpng-1.5.4 - reserve particular negative values as flags. */
John Bowlerf70c7d02011-05-10 22:54:37 -0500809 scrn_gamma = translate_gamma_flags(png_ptr, scrn_gamma, 1/*screen*/);
810 file_gamma = translate_gamma_flags(png_ptr, file_gamma, 0/*file*/);
811
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500812 /* Checking the gamma values for being >0 was added in 1.5.4 along with the
John Bowlerd273ad22011-05-07 21:00:28 -0500813 * premultiplied alpha support; this actually hides an undocumented feature
814 * of the previous implementation which allowed gamma processing to be
815 * disabled in background handling. There is no evidence (so far) that this
Glenn Randers-Pehrsone9eeb742011-05-08 19:38:42 -0500816 * was being used; however, png_set_background itself accepted and must still
John Bowlerd273ad22011-05-07 21:00:28 -0500817 * accept '0' for the gamma value it takes, because it isn't always used.
818 *
819 * Since this is an API change (albeit a very minor one that removes an
John Bowlerbaeb6d12011-11-26 18:21:02 -0600820 * undocumented API feature) the following checks were only enabled in
821 * libpng-1.6.0.
John Bowlerd273ad22011-05-07 21:00:28 -0500822 */
823 if (file_gamma <= 0)
Glenn Randers-Pehrsone9eeb742011-05-08 19:38:42 -0500824 png_error(png_ptr, "invalid file gamma in png_set_gamma");
John Bowlerd273ad22011-05-07 21:00:28 -0500825
826 if (scrn_gamma <= 0)
Glenn Randers-Pehrsone9eeb742011-05-08 19:38:42 -0500827 png_error(png_ptr, "invalid screen gamma in png_set_gamma");
John Bowlerd273ad22011-05-07 21:00:28 -0500828
829 /* Set the gamma values unconditionally - this overrides the value in the PNG
830 * file if a gAMA chunk was present. png_set_alpha_mode provides a
831 * different, easier, way to default the file gamma.
832 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600833 png_ptr->colorspace.gamma = file_gamma;
834 png_ptr->colorspace.flags |= PNG_COLORSPACE_HAVE_GAMMA;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500835 png_ptr->screen_gamma = scrn_gamma;
Guy Schalnat0d580581995-07-20 02:43:20 -0500836}
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500837
838# ifdef PNG_FLOATING_POINT_SUPPORTED
839void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600840png_set_gamma(png_structrp png_ptr, double scrn_gamma, double file_gamma)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500841{
John Bowlerf70c7d02011-05-10 22:54:37 -0500842 png_set_gamma_fixed(png_ptr, convert_gamma_value(png_ptr, scrn_gamma),
843 convert_gamma_value(png_ptr, file_gamma));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500844}
845# endif /* FLOATING_POINT_SUPPORTED */
846#endif /* READ_GAMMA */
Guy Schalnat0d580581995-07-20 02:43:20 -0500847
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500848#ifdef PNG_READ_EXPAND_SUPPORTED
Glenn Randers-Pehrson352ca6b1999-09-18 15:49:20 -0500849/* Expand paletted images to RGB, expand grayscale images of
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500850 * less than 8-bit depth to 8-bit depth, and expand tRNS chunks
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600851 * to alpha channels.
852 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500853void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600854png_set_expand(png_structrp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500855{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500856 png_debug(1, "in png_set_expand");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500857
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600858 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500859 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500860
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600861 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
Guy Schalnat0d580581995-07-20 02:43:20 -0500862}
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500863
864/* GRR 19990627: the following three functions currently are identical
865 * to png_set_expand(). However, it is entirely reasonable that someone
866 * might wish to expand an indexed image to RGB but *not* expand a single,
867 * fully transparent palette entry to a full alpha channel--perhaps instead
868 * convert tRNS to the grayscale/RGB format (16-bit RGB value), or replace
869 * the transparent color with a particular RGB value, or drop tRNS entirely.
870 * IOW, a future version of the library may make the transformations flag
871 * a bit more fine-grained, with separate bits for each of these three
872 * functions.
873 *
874 * More to the point, these functions make it obvious what libpng will be
875 * doing, whereas "expand" can (and does) mean any number of things.
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600876 *
Glenn Randers-Pehrson17ca3402009-11-09 06:51:16 -0600877 * GRP 20060307: In libpng-1.2.9, png_set_gray_1_2_4_to_8() was modified
878 * to expand only the sample depth but not to expand the tRNS to alpha
879 * and its name was changed to png_set_expand_gray_1_2_4_to_8().
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500880 */
881
882/* Expand paletted images to RGB. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500883void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600884png_set_palette_to_rgb(png_structrp png_ptr)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500885{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500886 png_debug(1, "in png_set_palette_to_rgb");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500887
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600888 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500889 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500890
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600891 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500892}
893
894/* Expand grayscale images of less than 8-bit depth to 8 bits. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500895void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600896png_set_expand_gray_1_2_4_to_8(png_structrp png_ptr)
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600897{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500898 png_debug(1, "in png_set_expand_gray_1_2_4_to_8");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500899
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600900 if (!png_rtran_ok(png_ptr, 0))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500901 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500902
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500903 png_ptr->transformations |= PNG_EXPAND;
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600904}
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500905
906/* Expand tRNS chunks to alpha channels. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500907void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600908png_set_tRNS_to_alpha(png_structrp png_ptr)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500909{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500910 png_debug(1, "in png_set_tRNS_to_alpha");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500911
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600912 if (!png_rtran_ok(png_ptr, 0))
913 return;
914
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -0600915 png_ptr->transformations |= (PNG_EXPAND | PNG_EXPAND_tRNS);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500916}
917#endif /* defined(PNG_READ_EXPAND_SUPPORTED) */
Guy Schalnat0d580581995-07-20 02:43:20 -0500918
John Bowler4d562962011-02-12 09:01:20 -0600919#ifdef PNG_READ_EXPAND_16_SUPPORTED
Glenn Randers-Pehrson55fbff32011-05-17 06:49:32 -0500920/* Expand to 16-bit channels, expand the tRNS chunk too (because otherwise
John Bowler4d562962011-02-12 09:01:20 -0600921 * it may not work correctly.)
922 */
923void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600924png_set_expand_16(png_structrp png_ptr)
John Bowler4d562962011-02-12 09:01:20 -0600925{
926 png_debug(1, "in png_set_expand_16");
927
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600928 if (!png_rtran_ok(png_ptr, 0))
John Bowler4d562962011-02-12 09:01:20 -0600929 return;
930
931 png_ptr->transformations |= (PNG_EXPAND_16 | PNG_EXPAND | PNG_EXPAND_tRNS);
John Bowler4d562962011-02-12 09:01:20 -0600932}
933#endif
934
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500935#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500936void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600937png_set_gray_to_rgb(png_structrp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500938{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500939 png_debug(1, "in png_set_gray_to_rgb");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500940
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600941 if (!png_rtran_ok(png_ptr, 0))
942 return;
943
944 /* Because rgb must be 8 bits or more: */
945 png_set_expand_gray_1_2_4_to_8(png_ptr);
946 png_ptr->transformations |= PNG_GRAY_TO_RGB;
Guy Schalnat0d580581995-07-20 02:43:20 -0500947}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500948#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500949
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500950#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500951void PNGFAPI
John Bowler5d567862011-12-24 09:12:00 -0600952png_set_rgb_to_gray_fixed(png_structrp png_ptr, int error_action,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600953 png_fixed_point red, png_fixed_point green)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600954{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500955 png_debug(1, "in png_set_rgb_to_gray");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500956
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600957 /* Need the IHDR here because of the check on color_type below. */
958 /* TODO: fix this */
959 if (!png_rtran_ok(png_ptr, 1))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500960 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500961
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600962 switch(error_action)
963 {
John Bowler7875d532011-11-07 22:33:49 -0600964 case PNG_ERROR_ACTION_NONE:
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600965 png_ptr->transformations |= PNG_RGB_TO_GRAY;
966 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500967
John Bowler7875d532011-11-07 22:33:49 -0600968 case PNG_ERROR_ACTION_WARN:
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600969 png_ptr->transformations |= PNG_RGB_TO_GRAY_WARN;
970 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500971
John Bowler7875d532011-11-07 22:33:49 -0600972 case PNG_ERROR_ACTION_ERROR:
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -0600973 png_ptr->transformations |= PNG_RGB_TO_GRAY_ERR;
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -0600974 break;
975
976 default:
Glenn Randers-Pehrsone9eeb742011-05-08 19:38:42 -0500977 png_error(png_ptr, "invalid error action to rgb_to_gray");
978 break;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600979 }
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600980
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600981 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500982#ifdef PNG_READ_EXPAND_SUPPORTED
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600983 png_ptr->transformations |= PNG_EXPAND;
984#else
985 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600986 /* Make this an error in 1.6 because otherwise the application may assume
987 * that it just worked and get a memory overwrite.
988 */
989 png_error(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500990 "Cannot do RGB_TO_GRAY without EXPAND_SUPPORTED");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500991
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -0600992 /* png_ptr->transformations &= ~PNG_RGB_TO_GRAY; */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600993 }
994#endif
995 {
John Bowlercb0b2962011-05-12 21:48:29 -0500996 if (red >= 0 && green >= 0 && red + green <= PNG_FP_1)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600997 {
John Bowlercb0b2962011-05-12 21:48:29 -0500998 png_uint_16 red_int, green_int;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500999
John Bowler736f40f2011-08-25 16:19:44 -05001000 /* NOTE: this calculation does not round, but this behavior is retained
1001 * for consistency, the inaccuracy is very small. The code here always
1002 * overwrites the coefficients, regardless of whether they have been
1003 * defaulted or set already.
1004 */
John Bowler75156122011-09-09 17:21:44 -05001005 red_int = (png_uint_16)(((png_uint_32)red*32768)/100000);
1006 green_int = (png_uint_16)(((png_uint_32)green*32768)/100000);
John Bowlercb0b2962011-05-12 21:48:29 -05001007
1008 png_ptr->rgb_to_gray_red_coeff = red_int;
1009 png_ptr->rgb_to_gray_green_coeff = green_int;
John Bowler736f40f2011-08-25 16:19:44 -05001010 png_ptr->rgb_to_gray_coefficients_set = 1;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001011 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001012
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001013 else
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001014 {
John Bowlercb0b2962011-05-12 21:48:29 -05001015 if (red >= 0 && green >= 0)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001016 png_app_warning(png_ptr,
John Bowlercb0b2962011-05-12 21:48:29 -05001017 "ignoring out of range rgb_to_gray coefficients");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001018
John Bowler736f40f2011-08-25 16:19:44 -05001019 /* Use the defaults, from the cHRM chunk if set, else the historical
1020 * values which are close to the sRGB/HDTV/ITU-Rec 709 values. See
1021 * png_do_rgb_to_gray for more discussion of the values. In this case
1022 * the coefficients are not marked as 'set' and are not overwritten if
1023 * something has already provided a default.
John Bowlercb0b2962011-05-12 21:48:29 -05001024 */
1025 if (png_ptr->rgb_to_gray_red_coeff == 0 &&
John Bowler736f40f2011-08-25 16:19:44 -05001026 png_ptr->rgb_to_gray_green_coeff == 0)
John Bowlercb0b2962011-05-12 21:48:29 -05001027 {
John Bowler736f40f2011-08-25 16:19:44 -05001028 png_ptr->rgb_to_gray_red_coeff = 6968;
1029 png_ptr->rgb_to_gray_green_coeff = 23434;
1030 /* png_ptr->rgb_to_gray_blue_coeff = 2366; */
John Bowlercb0b2962011-05-12 21:48:29 -05001031 }
1032 }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001033 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001034}
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -05001035
1036#ifdef PNG_FLOATING_POINT_SUPPORTED
1037/* Convert a RGB image to a grayscale of the same width. This allows us,
1038 * for example, to convert a 24 bpp RGB image into an 8 bpp grayscale image.
1039 */
1040
1041void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001042png_set_rgb_to_gray(png_structrp png_ptr, int error_action, double red,
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001043 double green)
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -05001044{
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001045 png_set_rgb_to_gray_fixed(png_ptr, error_action,
1046 png_fixed(png_ptr, red, "rgb to gray red coefficient"),
1047 png_fixed(png_ptr, green, "rgb to gray green coefficient"));
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -05001048}
1049#endif /* FLOATING POINT */
1050
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001051#endif /* RGB_TO_GRAY */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001052
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001053#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
Glenn Randers-Pehrson33188ac2009-06-16 14:12:35 -05001054 defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001055void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001056png_set_read_user_transform_fn(png_structrp png_ptr, png_user_transform_ptr
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001057 read_user_transform_fn)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001058{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001059 png_debug(1, "in png_set_read_user_transform_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001060
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001061#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001062 png_ptr->transformations |= PNG_USER_TRANSFORM;
1063 png_ptr->read_user_transform_fn = read_user_transform_fn;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001064#endif
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001065}
1066#endif
1067
John Bowler4a12f4a2011-04-17 18:34:22 -05001068#ifdef PNG_READ_TRANSFORMS_SUPPORTED
John Bowlerd273ad22011-05-07 21:00:28 -05001069#ifdef PNG_READ_GAMMA_SUPPORTED
1070/* In the case of gamma transformations only do transformations on images where
1071 * the [file] gamma and screen_gamma are not close reciprocals, otherwise it
1072 * slows things down slightly, and also needlessly introduces small errors.
1073 */
1074static int /* PRIVATE */
1075png_gamma_threshold(png_fixed_point screen_gamma, png_fixed_point file_gamma)
1076{
1077 /* PNG_GAMMA_THRESHOLD is the threshold for performing gamma
1078 * correction as a difference of the overall transform from 1.0
1079 *
1080 * We want to compare the threshold with s*f - 1, if we get
1081 * overflow here it is because of wacky gamma values so we
1082 * turn on processing anyway.
1083 */
1084 png_fixed_point gtest;
1085 return !png_muldiv(&gtest, screen_gamma, file_gamma, PNG_FP_1) ||
1086 png_gamma_significant(gtest);
1087}
1088#endif
1089
Andreas Dilger47a0c421997-05-16 02:46:07 -05001090/* Initialize everything needed for the read. This includes modifying
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001091 * the palette.
1092 */
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001093
John Bowlerd273ad22011-05-07 21:00:28 -05001094/*For the moment 'png_init_palette_transformations' and
1095 * 'png_init_rgb_transformations' only do some flag canceling optimizations.
1096 * The intent is that these two routines should have palette or rgb operations
1097 * extracted from 'png_init_read_transformations'.
1098 */
1099static void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06001100png_init_palette_transformations(png_structrp png_ptr)
John Bowlerd273ad22011-05-07 21:00:28 -05001101{
1102 /* Called to handle the (input) palette case. In png_do_read_transformations
1103 * the first step is to expand the palette if requested, so this code must
1104 * take care to only make changes that are invariant with respect to the
1105 * palette expansion, or only do them if there is no expansion.
1106 *
1107 * STRIP_ALPHA has already been handled in the caller (by setting num_trans
1108 * to 0.)
1109 */
1110 int input_has_alpha = 0;
1111 int input_has_transparency = 0;
1112
1113 if (png_ptr->num_trans > 0)
1114 {
1115 int i;
1116
1117 /* Ignore if all the entries are opaque (unlikely!) */
1118 for (i=0; i<png_ptr->num_trans; ++i)
Glenn Randers-Pehrson492e6712013-08-04 14:03:44 -05001119 {
John Bowlerd273ad22011-05-07 21:00:28 -05001120 if (png_ptr->trans_alpha[i] == 255)
1121 continue;
1122 else if (png_ptr->trans_alpha[i] == 0)
1123 input_has_transparency = 1;
1124 else
Glenn Randers-Pehrson492e6712013-08-04 14:03:44 -05001125 {
1126 input_has_transparency = 1;
John Bowlerd273ad22011-05-07 21:00:28 -05001127 input_has_alpha = 1;
Glenn Randers-Pehrson492e6712013-08-04 14:03:44 -05001128 break;
1129 }
1130 }
John Bowlerd273ad22011-05-07 21:00:28 -05001131 }
1132
1133 /* If no alpha we can optimize. */
1134 if (!input_has_alpha)
1135 {
1136 /* Any alpha means background and associative alpha processing is
1137 * required, however if the alpha is 0 or 1 throughout OPTIIMIZE_ALPHA
1138 * and ENCODE_ALPHA are irrelevant.
1139 */
1140 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
1141 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1142
1143 if (!input_has_transparency)
1144 png_ptr->transformations &= ~(PNG_COMPOSE | PNG_BACKGROUND_EXPAND);
1145 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001146
Guy Schalnate5a37791996-06-05 15:50:50 -05001147#if defined(PNG_READ_EXPAND_SUPPORTED) && defined(PNG_READ_BACKGROUND_SUPPORTED)
John Bowlerd273ad22011-05-07 21:00:28 -05001148 /* png_set_background handling - deals with the complexity of whether the
1149 * background color is in the file format or the screen format in the case
1150 * where an 'expand' will happen.
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001151 */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001152
John Bowlerd273ad22011-05-07 21:00:28 -05001153 /* The following code cannot be entered in the alpha pre-multiplication case
1154 * because PNG_BACKGROUND_EXPAND is cancelled below.
1155 */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001156 if ((png_ptr->transformations & PNG_BACKGROUND_EXPAND) &&
1157 (png_ptr->transformations & PNG_EXPAND))
Guy Schalnat0d580581995-07-20 02:43:20 -05001158 {
John Bowlerd273ad22011-05-07 21:00:28 -05001159 {
1160 png_ptr->background.red =
1161 png_ptr->palette[png_ptr->background.index].red;
1162 png_ptr->background.green =
1163 png_ptr->palette[png_ptr->background.index].green;
1164 png_ptr->background.blue =
1165 png_ptr->palette[png_ptr->background.index].blue;
1166
1167#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
1168 if (png_ptr->transformations & PNG_INVERT_ALPHA)
1169 {
1170 if (!(png_ptr->transformations & PNG_EXPAND_tRNS))
1171 {
1172 /* Invert the alpha channel (in tRNS) unless the pixels are
1173 * going to be expanded, in which case leave it for later
1174 */
1175 int i, istop = png_ptr->num_trans;
1176
1177 for (i=0; i<istop; i++)
1178 png_ptr->trans_alpha[i] = (png_byte)(255 -
1179 png_ptr->trans_alpha[i]);
1180 }
1181 }
1182#endif /* PNG_READ_INVERT_ALPHA_SUPPORTED */
1183 }
1184 } /* background expand and (therefore) no alpha association. */
1185#endif /* PNG_READ_EXPAND_SUPPORTED && PNG_READ_BACKGROUND_SUPPORTED */
1186}
1187
1188static void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06001189png_init_rgb_transformations(png_structrp png_ptr)
John Bowlerd273ad22011-05-07 21:00:28 -05001190{
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001191 /* Added to libpng-1.5.4: check the color type to determine whether there
John Bowlerd273ad22011-05-07 21:00:28 -05001192 * is any alpha or transparency in the image and simply cancel the
1193 * background and alpha mode stuff if there isn't.
1194 */
1195 int input_has_alpha = (png_ptr->color_type & PNG_COLOR_MASK_ALPHA) != 0;
1196 int input_has_transparency = png_ptr->num_trans > 0;
1197
1198 /* If no alpha we can optimize. */
1199 if (!input_has_alpha)
1200 {
1201 /* Any alpha means background and associative alpha processing is
1202 * required, however if the alpha is 0 or 1 throughout OPTIIMIZE_ALPHA
1203 * and ENCODE_ALPHA are irrelevant.
1204 */
1205# ifdef PNG_READ_ALPHA_MODE_SUPPORTED
1206 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
1207 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1208# endif
1209
1210 if (!input_has_transparency)
1211 png_ptr->transformations &= ~(PNG_COMPOSE | PNG_BACKGROUND_EXPAND);
1212 }
1213
1214#if defined(PNG_READ_EXPAND_SUPPORTED) && defined(PNG_READ_BACKGROUND_SUPPORTED)
1215 /* png_set_background handling - deals with the complexity of whether the
1216 * background color is in the file format or the screen format in the case
1217 * where an 'expand' will happen.
1218 */
1219
1220 /* The following code cannot be entered in the alpha pre-multiplication case
1221 * because PNG_BACKGROUND_EXPAND is cancelled below.
1222 */
1223 if ((png_ptr->transformations & PNG_BACKGROUND_EXPAND) &&
1224 (png_ptr->transformations & PNG_EXPAND) &&
1225 !(png_ptr->color_type & PNG_COLOR_MASK_COLOR))
1226 /* i.e., GRAY or GRAY_ALPHA */
1227 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001228 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001229 /* Expand background and tRNS chunks */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001230 int gray = png_ptr->background.gray;
1231 int trans_gray = png_ptr->trans_color.gray;
1232
Guy Schalnat0d580581995-07-20 02:43:20 -05001233 switch (png_ptr->bit_depth)
1234 {
1235 case 1:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001236 gray *= 0xff;
1237 trans_gray *= 0xff;
Guy Schalnat0d580581995-07-20 02:43:20 -05001238 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001239
Guy Schalnat0d580581995-07-20 02:43:20 -05001240 case 2:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001241 gray *= 0x55;
1242 trans_gray *= 0x55;
Guy Schalnat0d580581995-07-20 02:43:20 -05001243 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001244
Guy Schalnat0d580581995-07-20 02:43:20 -05001245 case 4:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001246 gray *= 0x11;
1247 trans_gray *= 0x11;
Guy Schalnate5a37791996-06-05 15:50:50 -05001248 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001249
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06001250 default:
1251
Guy Schalnate5a37791996-06-05 15:50:50 -05001252 case 8:
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001253 /* FALL THROUGH (Already 8 bits) */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001254
Guy Schalnate5a37791996-06-05 15:50:50 -05001255 case 16:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001256 /* Already a full 16 bits */
Guy Schalnat0d580581995-07-20 02:43:20 -05001257 break;
1258 }
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001259
1260 png_ptr->background.red = png_ptr->background.green =
1261 png_ptr->background.blue = (png_uint_16)gray;
1262
1263 if (!(png_ptr->transformations & PNG_EXPAND_tRNS))
1264 {
1265 png_ptr->trans_color.red = png_ptr->trans_color.green =
1266 png_ptr->trans_color.blue = (png_uint_16)trans_gray;
1267 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001268 }
John Bowlerd273ad22011-05-07 21:00:28 -05001269 } /* background expand and (therefore) no alpha association. */
1270#endif /* PNG_READ_EXPAND_SUPPORTED && PNG_READ_BACKGROUND_SUPPORTED */
1271}
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001272
John Bowlerd273ad22011-05-07 21:00:28 -05001273void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06001274png_init_read_transformations(png_structrp png_ptr)
John Bowlerd273ad22011-05-07 21:00:28 -05001275{
1276 png_debug(1, "in png_init_read_transformations");
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001277
John Bowlerd273ad22011-05-07 21:00:28 -05001278 /* This internal function is called from png_read_start_row in pngrutil.c
1279 * and it is called before the 'rowbytes' calculation is done, so the code
1280 * in here can change or update the transformations flags.
1281 *
1282 * First do updates that do not depend on the details of the PNG image data
1283 * being processed.
1284 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001285
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001286#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001287 /* Prior to 1.5.4 these tests were performed from png_set_gamma, 1.5.4 adds
John Bowlerd273ad22011-05-07 21:00:28 -05001288 * png_set_alpha_mode and this is another source for a default file gamma so
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001289 * the test needs to be performed later - here. In addition prior to 1.5.4
John Bowlerd273ad22011-05-07 21:00:28 -05001290 * the tests were repeated for the PALETTE color type here - this is no
1291 * longer necessary (and doesn't seem to have been necessary before.)
1292 */
Glenn Randers-Pehrsonc6de22d2002-02-23 18:55:25 -06001293 {
John Bowlerd273ad22011-05-07 21:00:28 -05001294 /* The following temporary indicates if overall gamma correction is
1295 * required.
1296 */
1297 int gamma_correction = 0;
1298
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001299 if (png_ptr->colorspace.gamma != 0) /* has been set */
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001300 {
John Bowlerd273ad22011-05-07 21:00:28 -05001301 if (png_ptr->screen_gamma != 0) /* screen set too */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001302 gamma_correction = png_gamma_threshold(png_ptr->colorspace.gamma,
John Bowlerd273ad22011-05-07 21:00:28 -05001303 png_ptr->screen_gamma);
1304
1305 else
1306 /* Assume the output matches the input; a long time default behavior
1307 * of libpng, although the standard has nothing to say about this.
1308 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001309 png_ptr->screen_gamma = png_reciprocal(png_ptr->colorspace.gamma);
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001310 }
John Bowlerd273ad22011-05-07 21:00:28 -05001311
1312 else if (png_ptr->screen_gamma != 0)
1313 /* The converse - assume the file matches the screen, note that this
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001314 * perhaps undesireable default can (from 1.5.4) be changed by calling
John Bowlerd273ad22011-05-07 21:00:28 -05001315 * png_set_alpha_mode (even if the alpha handling mode isn't required
1316 * or isn't changed from the default.)
1317 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001318 png_ptr->colorspace.gamma = png_reciprocal(png_ptr->screen_gamma);
John Bowlerd273ad22011-05-07 21:00:28 -05001319
1320 else /* neither are set */
1321 /* Just in case the following prevents any processing - file and screen
1322 * are both assumed to be linear and there is no way to introduce a
1323 * third gamma value other than png_set_background with 'UNIQUE', and,
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001324 * prior to 1.5.4
John Bowlerd273ad22011-05-07 21:00:28 -05001325 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001326 png_ptr->screen_gamma = png_ptr->colorspace.gamma = PNG_FP_1;
1327
1328 /* We have a gamma value now. */
1329 png_ptr->colorspace.flags |= PNG_COLORSPACE_HAVE_GAMMA;
John Bowlerd273ad22011-05-07 21:00:28 -05001330
1331 /* Now turn the gamma transformation on or off as appropriate. Notice
1332 * that PNG_GAMMA just refers to the file->screen correction. Alpha
1333 * composition may independently cause gamma correction because it needs
1334 * linear data (e.g. if the file has a gAMA chunk but the screen gamma
1335 * hasn't been specified.) In any case this flag may get turned off in
1336 * the code immediately below if the transform can be handled outside the
1337 * row loop.
1338 */
1339 if (gamma_correction)
1340 png_ptr->transformations |= PNG_GAMMA;
1341
1342 else
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001343 png_ptr->transformations &= ~PNG_GAMMA;
Glenn Randers-Pehrsonc6de22d2002-02-23 18:55:25 -06001344 }
John Bowlerd273ad22011-05-07 21:00:28 -05001345#endif
Glenn Randers-Pehrsonc6de22d2002-02-23 18:55:25 -06001346
John Bowlerd273ad22011-05-07 21:00:28 -05001347 /* Certain transformations have the effect of preventing other
1348 * transformations that happen afterward in png_do_read_transformations,
1349 * resolve the interdependencies here. From the code of
1350 * png_do_read_transformations the order is:
1351 *
1352 * 1) PNG_EXPAND (including PNG_EXPAND_tRNS)
1353 * 2) PNG_STRIP_ALPHA (if no compose)
1354 * 3) PNG_RGB_TO_GRAY
1355 * 4) PNG_GRAY_TO_RGB iff !PNG_BACKGROUND_IS_GRAY
1356 * 5) PNG_COMPOSE
1357 * 6) PNG_GAMMA
1358 * 7) PNG_STRIP_ALPHA (if compose)
1359 * 8) PNG_ENCODE_ALPHA
John Bowler8d261262011-06-18 13:37:11 -05001360 * 9) PNG_SCALE_16_TO_8
1361 * 10) PNG_16_TO_8
1362 * 11) PNG_QUANTIZE (converts to palette)
1363 * 12) PNG_EXPAND_16
1364 * 13) PNG_GRAY_TO_RGB iff PNG_BACKGROUND_IS_GRAY
1365 * 14) PNG_INVERT_MONO
1366 * 15) PNG_SHIFT
1367 * 16) PNG_PACK
1368 * 17) PNG_BGR
1369 * 18) PNG_PACKSWAP
1370 * 19) PNG_FILLER (includes PNG_ADD_ALPHA)
1371 * 20) PNG_INVERT_ALPHA
1372 * 21) PNG_SWAP_ALPHA
1373 * 22) PNG_SWAP_BYTES
1374 * 23) PNG_USER_TRANSFORM [must be last]
John Bowlerd273ad22011-05-07 21:00:28 -05001375 */
1376#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
1377 if ((png_ptr->transformations & PNG_STRIP_ALPHA) &&
1378 !(png_ptr->transformations & PNG_COMPOSE))
1379 {
1380 /* Stripping the alpha channel happens immediately after the 'expand'
1381 * transformations, before all other transformation, so it cancels out
1382 * the alpha handling. It has the side effect negating the effect of
1383 * PNG_EXPAND_tRNS too:
1384 */
1385 png_ptr->transformations &= ~(PNG_BACKGROUND_EXPAND | PNG_ENCODE_ALPHA |
1386 PNG_EXPAND_tRNS);
1387 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1388
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001389 /* Kill the tRNS chunk itself too. Prior to 1.5.4 this did not happen
John Bowlerd273ad22011-05-07 21:00:28 -05001390 * so transparency information would remain just so long as it wasn't
1391 * expanded. This produces unexpected API changes if the set of things
1392 * that do PNG_EXPAND_tRNS changes (perfectly possible given the
1393 * documentation - which says ask for what you want, accept what you
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001394 * get.) This makes the behavior consistent from 1.5.4:
John Bowlerd273ad22011-05-07 21:00:28 -05001395 */
1396 png_ptr->num_trans = 0;
1397 }
1398#endif /* STRIP_ALPHA supported, no COMPOSE */
1399
1400#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
1401 /* If the screen gamma is about 1.0 then the OPTIMIZE_ALPHA and ENCODE_ALPHA
1402 * settings will have no effect.
1403 */
1404 if (!png_gamma_significant(png_ptr->screen_gamma))
1405 {
1406 png_ptr->transformations &= ~PNG_ENCODE_ALPHA;
1407 png_ptr->flags &= ~PNG_FLAG_OPTIMIZE_ALPHA;
1408 }
1409#endif
1410
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001411#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
1412 /* Make sure the coefficients for the rgb to gray conversion are set
1413 * appropriately.
1414 */
1415 if (png_ptr->transformations & PNG_RGB_TO_GRAY)
1416 png_colorspace_set_rgb_coefficients(png_ptr);
1417#endif
1418
1419#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
1420#if defined(PNG_READ_EXPAND_SUPPORTED) && defined(PNG_READ_BACKGROUND_SUPPORTED)
John Bowlerd273ad22011-05-07 21:00:28 -05001421 /* Detect gray background and attempt to enable optimization for
1422 * gray --> RGB case.
1423 *
1424 * Note: if PNG_BACKGROUND_EXPAND is set and color_type is either RGB or
1425 * RGB_ALPHA (in which case need_expand is superfluous anyway), the
1426 * background color might actually be gray yet not be flagged as such.
1427 * This is not a problem for the current code, which uses
1428 * PNG_BACKGROUND_IS_GRAY only to decide when to do the
1429 * png_do_gray_to_rgb() transformation.
1430 *
John Bowler9994f252011-05-15 18:52:39 -05001431 * TODO: this code needs to be revised to avoid the complexity and
John Bowlerd273ad22011-05-07 21:00:28 -05001432 * interdependencies. The color type of the background should be recorded in
1433 * png_set_background, along with the bit depth, then the code has a record
1434 * of exactly what color space the background is currently in.
1435 */
1436 if (png_ptr->transformations & PNG_BACKGROUND_EXPAND)
1437 {
1438 /* PNG_BACKGROUND_EXPAND: the background is in the file color space, so if
John Bowler736f40f2011-08-25 16:19:44 -05001439 * the file was grayscale the background value is gray.
John Bowlerd273ad22011-05-07 21:00:28 -05001440 */
1441 if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR))
1442 png_ptr->mode |= PNG_BACKGROUND_IS_GRAY;
1443 }
1444
1445 else if (png_ptr->transformations & PNG_COMPOSE)
1446 {
1447 /* PNG_COMPOSE: png_set_background was called with need_expand false,
1448 * so the color is in the color space of the output or png_set_alpha_mode
1449 * was called and the color is black. Ignore RGB_TO_GRAY because that
1450 * happens before GRAY_TO_RGB.
1451 */
1452 if (png_ptr->transformations & PNG_GRAY_TO_RGB)
1453 {
1454 if (png_ptr->background.red == png_ptr->background.green &&
1455 png_ptr->background.red == png_ptr->background.blue)
1456 {
1457 png_ptr->mode |= PNG_BACKGROUND_IS_GRAY;
1458 png_ptr->background.gray = png_ptr->background.red;
1459 }
1460 }
1461 }
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001462#endif /* PNG_READ_EXPAND_SUPPORTED && PNG_READ_BACKGROUND_SUPPORTED */
1463#endif /* PNG_READ_GRAY_TO_RGB_SUPPORTED */
John Bowlerd273ad22011-05-07 21:00:28 -05001464
1465 /* For indexed PNG data (PNG_COLOR_TYPE_PALETTE) many of the transformations
1466 * can be performed directly on the palette, and some (such as rgb to gray)
1467 * can be optimized inside the palette. This is particularly true of the
1468 * composite (background and alpha) stuff, which can be pretty much all done
1469 * in the palette even if the result is expanded to RGB or gray afterward.
1470 *
1471 * NOTE: this is Not Yet Implemented, the code behaves as in 1.5.1 and
1472 * earlier and the palette stuff is actually handled on the first row. This
1473 * leads to the reported bug that the palette returned by png_get_PLTE is not
1474 * updated.
1475 */
1476 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1477 png_init_palette_transformations(png_ptr);
1478
1479 else
1480 png_init_rgb_transformations(png_ptr);
1481
John Bowlerdb0ed3e2011-05-18 18:51:24 -05001482#if defined(PNG_READ_BACKGROUND_SUPPORTED) && \
1483 defined(PNG_READ_EXPAND_16_SUPPORTED)
1484 if ((png_ptr->transformations & PNG_EXPAND_16) &&
1485 (png_ptr->transformations & PNG_COMPOSE) &&
1486 !(png_ptr->transformations & PNG_BACKGROUND_EXPAND) &&
1487 png_ptr->bit_depth != 16)
1488 {
1489 /* TODO: fix this. Because the expand_16 operation is after the compose
1490 * handling the background color must be 8, not 16, bits deep, but the
Glenn Randers-Pehrson0a048922011-05-18 21:44:37 -05001491 * application will supply a 16-bit value so reduce it here.
John Bowlerdb0ed3e2011-05-18 18:51:24 -05001492 *
1493 * The PNG_BACKGROUND_EXPAND code above does not expand to 16 bits at
1494 * present, so that case is ok (until do_expand_16 is moved.)
Glenn Randers-Pehrsonbe720ed2011-06-15 08:20:37 -05001495 *
1496 * NOTE: this discards the low 16 bits of the user supplied background
1497 * color, but until expand_16 works properly there is no choice!
John Bowlerdb0ed3e2011-05-18 18:51:24 -05001498 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001499# define CHOP(x) (x)=((png_uint_16)PNG_DIV257(x))
John Bowlerb2bee332011-06-10 23:24:58 -05001500 CHOP(png_ptr->background.red);
1501 CHOP(png_ptr->background.green);
1502 CHOP(png_ptr->background.blue);
1503 CHOP(png_ptr->background.gray);
John Bowlerdb0ed3e2011-05-18 18:51:24 -05001504# undef CHOP
1505 }
Glenn Randers-Pehrson2232baa2011-06-14 06:59:46 -05001506#endif /* PNG_READ_BACKGROUND_SUPPORTED && PNG_READ_EXPAND_16_SUPPORTED */
John Bowlerdb0ed3e2011-05-18 18:51:24 -05001507
John Bowler18c5cfa2011-11-16 14:26:34 -06001508#if defined(PNG_READ_BACKGROUND_SUPPORTED) && \
1509 (defined(PNG_READ_SCALE_16_TO_8_SUPPORTED) || \
1510 defined(PNG_READ_STRIP_16_TO_8_SUPPORTED))
1511 if ((png_ptr->transformations & (PNG_16_TO_8|PNG_SCALE_16_TO_8)) &&
1512 (png_ptr->transformations & PNG_COMPOSE) &&
1513 !(png_ptr->transformations & PNG_BACKGROUND_EXPAND) &&
1514 png_ptr->bit_depth == 16)
1515 {
1516 /* On the other hand, if a 16-bit file is to be reduced to 8-bits per
1517 * component this will also happen after PNG_COMPOSE and so the background
1518 * color must be pre-expanded here.
1519 *
1520 * TODO: fix this too.
1521 */
1522 png_ptr->background.red = (png_uint_16)(png_ptr->background.red * 257);
1523 png_ptr->background.green =
1524 (png_uint_16)(png_ptr->background.green * 257);
1525 png_ptr->background.blue = (png_uint_16)(png_ptr->background.blue * 257);
1526 png_ptr->background.gray = (png_uint_16)(png_ptr->background.gray * 257);
1527 }
1528#endif
1529
John Bowlerd273ad22011-05-07 21:00:28 -05001530 /* NOTE: below 'PNG_READ_ALPHA_MODE_SUPPORTED' is presumed to also enable the
1531 * background support (see the comments in scripts/pnglibconf.dfa), this
1532 * allows pre-multiplication of the alpha channel to be implemented as
1533 * compositing on black. This is probably sub-optimal and has been done in
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001534 * 1.5.4 betas simply to enable external critique and testing (i.e. to
John Bowlerd273ad22011-05-07 21:00:28 -05001535 * implement the new API quickly, without lots of internal changes.)
1536 */
1537
1538#ifdef PNG_READ_GAMMA_SUPPORTED
1539# ifdef PNG_READ_BACKGROUND_SUPPORTED
1540 /* Includes ALPHA_MODE */
1541 png_ptr->background_1 = png_ptr->background;
1542# endif
1543
1544 /* This needs to change - in the palette image case a whole set of tables are
1545 * built when it would be quicker to just calculate the correct value for
1546 * each palette entry directly. Also, the test is too tricky - why check
1547 * PNG_RGB_TO_GRAY if PNG_GAMMA is not set? The answer seems to be that
1548 * PNG_GAMMA is cancelled even if the gamma is known? The test excludes the
1549 * PNG_COMPOSE case, so apparently if there is no *overall* gamma correction
1550 * the gamma tables will not be built even if composition is required on a
1551 * gamma encoded value.
1552 *
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001553 * In 1.5.4 this is addressed below by an additional check on the individual
John Bowlerd273ad22011-05-07 21:00:28 -05001554 * file gamma - if it is not 1.0 both RGB_TO_GRAY and COMPOSE need the
1555 * tables.
1556 */
1557 if ((png_ptr->transformations & PNG_GAMMA)
1558 || ((png_ptr->transformations & PNG_RGB_TO_GRAY)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001559 && (png_gamma_significant(png_ptr->colorspace.gamma) ||
John Bowlerd273ad22011-05-07 21:00:28 -05001560 png_gamma_significant(png_ptr->screen_gamma)))
1561 || ((png_ptr->transformations & PNG_COMPOSE)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001562 && (png_gamma_significant(png_ptr->colorspace.gamma)
John Bowlerd273ad22011-05-07 21:00:28 -05001563 || png_gamma_significant(png_ptr->screen_gamma)
Glenn Randers-Pehrson903c64d2011-06-15 11:50:23 -05001564# ifdef PNG_READ_BACKGROUND_SUPPORTED
John Bowlerd273ad22011-05-07 21:00:28 -05001565 || (png_ptr->background_gamma_type == PNG_BACKGROUND_GAMMA_UNIQUE
Glenn Randers-Pehrson903c64d2011-06-15 11:50:23 -05001566 && png_gamma_significant(png_ptr->background_gamma))
1567# endif
1568 )) || ((png_ptr->transformations & PNG_ENCODE_ALPHA)
John Bowlerd273ad22011-05-07 21:00:28 -05001569 && png_gamma_significant(png_ptr->screen_gamma))
1570 )
Guy Schalnat0d580581995-07-20 02:43:20 -05001571 {
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001572 png_build_gamma_table(png_ptr, png_ptr->bit_depth);
Glenn Randers-Pehrsonffa89242009-12-13 08:14:40 -06001573
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001574#ifdef PNG_READ_BACKGROUND_SUPPORTED
John Bowlerd273ad22011-05-07 21:00:28 -05001575 if (png_ptr->transformations & PNG_COMPOSE)
Guy Schalnat0d580581995-07-20 02:43:20 -05001576 {
John Bowler18c5cfa2011-11-16 14:26:34 -06001577 /* Issue a warning about this combination: because RGB_TO_GRAY is
1578 * optimized to do the gamma transform if present yet do_background has
1579 * to do the same thing if both options are set a
1580 * double-gamma-correction happens. This is true in all versions of
1581 * libpng to date.
1582 */
1583 if (png_ptr->transformations & PNG_RGB_TO_GRAY)
1584 png_warning(png_ptr,
1585 "libpng does not support gamma+background+rgb_to_gray");
1586
John Bowlerd273ad22011-05-07 21:00:28 -05001587 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Guy Schalnate5a37791996-06-05 15:50:50 -05001588 {
John Bowlerd273ad22011-05-07 21:00:28 -05001589 /* We don't get to here unless there is a tRNS chunk with non-opaque
1590 * entries - see the checking code at the start of this function.
1591 */
Guy Schalnate5a37791996-06-05 15:50:50 -05001592 png_color back, back_1;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001593 png_colorp palette = png_ptr->palette;
1594 int num_palette = png_ptr->num_palette;
1595 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001596 if (png_ptr->background_gamma_type == PNG_BACKGROUND_GAMMA_FILE)
1597 {
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001598
Andreas Dilger47a0c421997-05-16 02:46:07 -05001599 back.red = png_ptr->gamma_table[png_ptr->background.red];
1600 back.green = png_ptr->gamma_table[png_ptr->background.green];
1601 back.blue = png_ptr->gamma_table[png_ptr->background.blue];
Guy Schalnate5a37791996-06-05 15:50:50 -05001602
Andreas Dilger47a0c421997-05-16 02:46:07 -05001603 back_1.red = png_ptr->gamma_to_1[png_ptr->background.red];
1604 back_1.green = png_ptr->gamma_to_1[png_ptr->background.green];
1605 back_1.blue = png_ptr->gamma_to_1[png_ptr->background.blue];
1606 }
1607 else
1608 {
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001609 png_fixed_point g, gs;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001610
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001611 switch (png_ptr->background_gamma_type)
Glenn Randers-Pehrson4922b1b1998-03-08 22:55:17 -06001612 {
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001613 case PNG_BACKGROUND_GAMMA_SCREEN:
1614 g = (png_ptr->screen_gamma);
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001615 gs = PNG_FP_1;
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001616 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001617
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001618 case PNG_BACKGROUND_GAMMA_FILE:
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001619 g = png_reciprocal(png_ptr->colorspace.gamma);
1620 gs = png_reciprocal2(png_ptr->colorspace.gamma,
Glenn Randers-Pehrson29034c52010-07-29 17:58:49 -05001621 png_ptr->screen_gamma);
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001622 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001623
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001624 case PNG_BACKGROUND_GAMMA_UNIQUE:
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001625 g = png_reciprocal(png_ptr->background_gamma);
1626 gs = png_reciprocal2(png_ptr->background_gamma,
Glenn Randers-Pehrson29034c52010-07-29 17:58:49 -05001627 png_ptr->screen_gamma);
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001628 break;
1629 default:
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001630 g = PNG_FP_1; /* back_1 */
1631 gs = PNG_FP_1; /* back */
Glenn Randers-Pehrson29034c52010-07-29 17:58:49 -05001632 break;
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001633 }
1634
Glenn Randers-Pehrsonbc363ec2010-10-12 21:17:00 -05001635 if (png_gamma_significant(gs))
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06001636 {
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001637 back.red = png_gamma_8bit_correct(png_ptr->background.red,
1638 gs);
1639 back.green = png_gamma_8bit_correct(png_ptr->background.green,
1640 gs);
1641 back.blue = png_gamma_8bit_correct(png_ptr->background.blue,
1642 gs);
Andreas Dilger47a0c421997-05-16 02:46:07 -05001643 }
John Bowlerd273ad22011-05-07 21:00:28 -05001644
1645 else
1646 {
1647 back.red = (png_byte)png_ptr->background.red;
1648 back.green = (png_byte)png_ptr->background.green;
1649 back.blue = (png_byte)png_ptr->background.blue;
1650 }
1651
1652 if (png_gamma_significant(g))
1653 {
1654 back_1.red = png_gamma_8bit_correct(png_ptr->background.red,
1655 g);
1656 back_1.green = png_gamma_8bit_correct(
1657 png_ptr->background.green, g);
1658 back_1.blue = png_gamma_8bit_correct(png_ptr->background.blue,
1659 g);
1660 }
1661
1662 else
1663 {
1664 back_1.red = (png_byte)png_ptr->background.red;
1665 back_1.green = (png_byte)png_ptr->background.green;
1666 back_1.blue = (png_byte)png_ptr->background.blue;
1667 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001668 }
John Bowlerd273ad22011-05-07 21:00:28 -05001669
Guy Schalnate5a37791996-06-05 15:50:50 -05001670 for (i = 0; i < num_palette; i++)
1671 {
Glenn Randers-Pehrsona3137512010-08-18 20:25:36 -05001672 if (i < (int)png_ptr->num_trans &&
1673 png_ptr->trans_alpha[i] != 0xff)
Guy Schalnate5a37791996-06-05 15:50:50 -05001674 {
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001675 if (png_ptr->trans_alpha[i] == 0)
Guy Schalnate5a37791996-06-05 15:50:50 -05001676 {
1677 palette[i] = back;
1678 }
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001679 else /* if (png_ptr->trans_alpha[i] != 0xff) */
Guy Schalnate5a37791996-06-05 15:50:50 -05001680 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001681 png_byte v, w;
Guy Schalnate5a37791996-06-05 15:50:50 -05001682
1683 v = png_ptr->gamma_to_1[palette[i].red];
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001684 png_composite(w, v, png_ptr->trans_alpha[i], back_1.red);
Guy Schalnate5a37791996-06-05 15:50:50 -05001685 palette[i].red = png_ptr->gamma_from_1[w];
1686
1687 v = png_ptr->gamma_to_1[palette[i].green];
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001688 png_composite(w, v, png_ptr->trans_alpha[i], back_1.green);
Guy Schalnate5a37791996-06-05 15:50:50 -05001689 palette[i].green = png_ptr->gamma_from_1[w];
1690
1691 v = png_ptr->gamma_to_1[palette[i].blue];
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001692 png_composite(w, v, png_ptr->trans_alpha[i], back_1.blue);
Guy Schalnate5a37791996-06-05 15:50:50 -05001693 palette[i].blue = png_ptr->gamma_from_1[w];
1694 }
1695 }
1696 else
1697 {
1698 palette[i].red = png_ptr->gamma_table[palette[i].red];
1699 palette[i].green = png_ptr->gamma_table[palette[i].green];
1700 palette[i].blue = png_ptr->gamma_table[palette[i].blue];
1701 }
1702 }
John Bowlerd273ad22011-05-07 21:00:28 -05001703
1704 /* Prevent the transformations being done again.
1705 *
Glenn Randers-Pehrson63071ac2011-08-29 16:16:26 -05001706 * NOTE: this is highly dubious; it removes the transformations in
John Bowlerd273ad22011-05-07 21:00:28 -05001707 * place. This seems inconsistent with the general treatment of the
1708 * transformations elsewhere.
Glenn Randers-Pehrson72cbc6e2009-09-20 07:28:43 -05001709 */
John Bowlerd273ad22011-05-07 21:00:28 -05001710 png_ptr->transformations &= ~(PNG_COMPOSE | PNG_GAMMA);
1711 } /* color_type == PNG_COLOR_TYPE_PALETTE */
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001712
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -05001713 /* if (png_ptr->background_gamma_type!=PNG_BACKGROUND_GAMMA_UNKNOWN) */
John Bowlerd273ad22011-05-07 21:00:28 -05001714 else /* color_type != PNG_COLOR_TYPE_PALETTE */
Guy Schalnat0d580581995-07-20 02:43:20 -05001715 {
John Bowler07772cb2011-10-14 18:19:47 -05001716 int gs_sig, g_sig;
1717 png_fixed_point g = PNG_FP_1; /* Correction to linear */
1718 png_fixed_point gs = PNG_FP_1; /* Correction to screen */
Guy Schalnat0d580581995-07-20 02:43:20 -05001719
1720 switch (png_ptr->background_gamma_type)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06001721 {
Guy Schalnat0d580581995-07-20 02:43:20 -05001722 case PNG_BACKGROUND_GAMMA_SCREEN:
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001723 g = png_ptr->screen_gamma;
1724 /* gs = PNG_FP_1; */
Guy Schalnat0d580581995-07-20 02:43:20 -05001725 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001726
Guy Schalnat0d580581995-07-20 02:43:20 -05001727 case PNG_BACKGROUND_GAMMA_FILE:
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001728 g = png_reciprocal(png_ptr->colorspace.gamma);
1729 gs = png_reciprocal2(png_ptr->colorspace.gamma,
1730 png_ptr->screen_gamma);
Guy Schalnat0d580581995-07-20 02:43:20 -05001731 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001732
Guy Schalnat0d580581995-07-20 02:43:20 -05001733 case PNG_BACKGROUND_GAMMA_UNIQUE:
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001734 g = png_reciprocal(png_ptr->background_gamma);
1735 gs = png_reciprocal2(png_ptr->background_gamma,
Glenn Randers-Pehrson29034c52010-07-29 17:58:49 -05001736 png_ptr->screen_gamma);
Guy Schalnat0d580581995-07-20 02:43:20 -05001737 break;
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06001738
1739 default:
Glenn Randers-Pehrsone9eeb742011-05-08 19:38:42 -05001740 png_error(png_ptr, "invalid background gamma type");
Guy Schalnat0d580581995-07-20 02:43:20 -05001741 }
1742
John Bowler07772cb2011-10-14 18:19:47 -05001743 g_sig = png_gamma_significant(g);
1744 gs_sig = png_gamma_significant(gs);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001745
John Bowler07772cb2011-10-14 18:19:47 -05001746 if (g_sig)
1747 png_ptr->background_1.gray = png_gamma_correct(png_ptr,
1748 png_ptr->background.gray, g);
1749
1750 if (gs_sig)
1751 png_ptr->background.gray = png_gamma_correct(png_ptr,
1752 png_ptr->background.gray, gs);
Glenn Randers-Pehrson377657d2002-03-08 01:31:27 -06001753
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -06001754 if ((png_ptr->background.red != png_ptr->background.green) ||
1755 (png_ptr->background.red != png_ptr->background.blue) ||
1756 (png_ptr->background.red != png_ptr->background.gray))
Guy Schalnat0d580581995-07-20 02:43:20 -05001757 {
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -06001758 /* RGB or RGBA with color background */
John Bowler07772cb2011-10-14 18:19:47 -05001759 if (g_sig)
1760 {
1761 png_ptr->background_1.red = png_gamma_correct(png_ptr,
1762 png_ptr->background.red, g);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001763
John Bowler07772cb2011-10-14 18:19:47 -05001764 png_ptr->background_1.green = png_gamma_correct(png_ptr,
1765 png_ptr->background.green, g);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001766
John Bowler07772cb2011-10-14 18:19:47 -05001767 png_ptr->background_1.blue = png_gamma_correct(png_ptr,
1768 png_ptr->background.blue, g);
1769 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001770
John Bowler07772cb2011-10-14 18:19:47 -05001771 if (gs_sig)
1772 {
1773 png_ptr->background.red = png_gamma_correct(png_ptr,
1774 png_ptr->background.red, gs);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001775
John Bowler07772cb2011-10-14 18:19:47 -05001776 png_ptr->background.green = png_gamma_correct(png_ptr,
1777 png_ptr->background.green, gs);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001778
John Bowler07772cb2011-10-14 18:19:47 -05001779 png_ptr->background.blue = png_gamma_correct(png_ptr,
1780 png_ptr->background.blue, gs);
1781 }
Guy Schalnat0d580581995-07-20 02:43:20 -05001782 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001783
Guy Schalnat0d580581995-07-20 02:43:20 -05001784 else
1785 {
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -06001786 /* GRAY, GRAY ALPHA, RGB, or RGBA with gray background */
1787 png_ptr->background_1.red = png_ptr->background_1.green
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001788 = png_ptr->background_1.blue = png_ptr->background_1.gray;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001789
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -06001790 png_ptr->background.red = png_ptr->background.green
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001791 = png_ptr->background.blue = png_ptr->background.gray;
Guy Schalnat0d580581995-07-20 02:43:20 -05001792 }
John Bowler07772cb2011-10-14 18:19:47 -05001793
1794 /* The background is now in screen gamma: */
1795 png_ptr->background_gamma_type = PNG_BACKGROUND_GAMMA_SCREEN;
John Bowlerd273ad22011-05-07 21:00:28 -05001796 } /* color_type != PNG_COLOR_TYPE_PALETTE */
1797 }/* png_ptr->transformations & PNG_BACKGROUND */
1798
Guy Schalnate5a37791996-06-05 15:50:50 -05001799 else
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001800 /* Transformation does not include PNG_BACKGROUND */
Glenn Randers-Pehrson5a0be342001-10-18 20:55:13 -05001801#endif /* PNG_READ_BACKGROUND_SUPPORTED */
John Bowler18c5cfa2011-11-16 14:26:34 -06001802 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE
1803#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
1804 /* RGB_TO_GRAY needs to have non-gamma-corrected values! */
1805 && ((png_ptr->transformations & PNG_EXPAND) == 0 ||
1806 (png_ptr->transformations & PNG_RGB_TO_GRAY) == 0)
1807#endif
1808 )
Guy Schalnate5a37791996-06-05 15:50:50 -05001809 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001810 png_colorp palette = png_ptr->palette;
1811 int num_palette = png_ptr->num_palette;
1812 int i;
Guy Schalnate5a37791996-06-05 15:50:50 -05001813
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001814 /* NOTE: there are other transformations that should probably be in
1815 * here too.
John Bowlerd273ad22011-05-07 21:00:28 -05001816 */
Guy Schalnate5a37791996-06-05 15:50:50 -05001817 for (i = 0; i < num_palette; i++)
1818 {
1819 palette[i].red = png_ptr->gamma_table[palette[i].red];
1820 palette[i].green = png_ptr->gamma_table[palette[i].green];
1821 palette[i].blue = png_ptr->gamma_table[palette[i].blue];
1822 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001823
Glenn Randers-Pehrson72cbc6e2009-09-20 07:28:43 -05001824 /* Done the gamma correction. */
1825 png_ptr->transformations &= ~PNG_GAMMA;
John Bowlerd273ad22011-05-07 21:00:28 -05001826 } /* color_type == PALETTE && !PNG_BACKGROUND transformation */
Guy Schalnate5a37791996-06-05 15:50:50 -05001827 }
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001828#ifdef PNG_READ_BACKGROUND_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -05001829 else
1830#endif
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001831#endif /* PNG_READ_GAMMA_SUPPORTED */
John Bowlerd273ad22011-05-07 21:00:28 -05001832
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001833#ifdef PNG_READ_BACKGROUND_SUPPORTED
John Bowlerd273ad22011-05-07 21:00:28 -05001834 /* No GAMMA transformation (see the hanging else 4 lines above) */
1835 if ((png_ptr->transformations & PNG_COMPOSE) &&
1836 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
Guy Schalnate5a37791996-06-05 15:50:50 -05001837 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001838 int i;
1839 int istop = (int)png_ptr->num_trans;
Guy Schalnate5a37791996-06-05 15:50:50 -05001840 png_color back;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001841 png_colorp palette = png_ptr->palette;
Guy Schalnate5a37791996-06-05 15:50:50 -05001842
Guy Schalnate5a37791996-06-05 15:50:50 -05001843 back.red = (png_byte)png_ptr->background.red;
1844 back.green = (png_byte)png_ptr->background.green;
1845 back.blue = (png_byte)png_ptr->background.blue;
1846
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05001847 for (i = 0; i < istop; i++)
Guy Schalnate5a37791996-06-05 15:50:50 -05001848 {
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001849 if (png_ptr->trans_alpha[i] == 0)
Guy Schalnate5a37791996-06-05 15:50:50 -05001850 {
1851 palette[i] = back;
1852 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001853
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05001854 else if (png_ptr->trans_alpha[i] != 0xff)
Guy Schalnate5a37791996-06-05 15:50:50 -05001855 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05001856 /* The png_composite() macro is defined in png.h */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001857 png_composite(palette[i].red, palette[i].red,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001858 png_ptr->trans_alpha[i], back.red);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001859
Andreas Dilger47a0c421997-05-16 02:46:07 -05001860 png_composite(palette[i].green, palette[i].green,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001861 png_ptr->trans_alpha[i], back.green);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001862
Andreas Dilger47a0c421997-05-16 02:46:07 -05001863 png_composite(palette[i].blue, palette[i].blue,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001864 png_ptr->trans_alpha[i], back.blue);
Guy Schalnate5a37791996-06-05 15:50:50 -05001865 }
1866 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001867
John Bowlerd273ad22011-05-07 21:00:28 -05001868 png_ptr->transformations &= ~PNG_COMPOSE;
Guy Schalnat0d580581995-07-20 02:43:20 -05001869 }
Glenn Randers-Pehrson5a0be342001-10-18 20:55:13 -05001870#endif /* PNG_READ_BACKGROUND_SUPPORTED */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001871
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001872#ifdef PNG_READ_SHIFT_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001873 if ((png_ptr->transformations & PNG_SHIFT) &&
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001874 !(png_ptr->transformations & PNG_EXPAND) &&
John Bowlerd273ad22011-05-07 21:00:28 -05001875 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001876 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001877 int i;
1878 int istop = png_ptr->num_palette;
1879 int shift = 8 - png_ptr->sig_bit.red;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001880
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001881 png_ptr->transformations &= ~PNG_SHIFT;
1882
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001883 /* significant bits can be in the range 1 to 7 for a meaninful result, if
1884 * the number of significant bits is 0 then no shift is done (this is an
1885 * error condition which is silently ignored.)
1886 */
Glenn Randers-Pehrson32440202013-08-21 18:01:32 -05001887 if (shift > 0 && shift < 8)
1888 for (i=0; i<istop; ++i)
1889 {
1890 int component = png_ptr->palette[i].red;
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001891
Glenn Randers-Pehrson32440202013-08-21 18:01:32 -05001892 component >>= shift;
1893 png_ptr->palette[i].red = (png_byte)component;
1894 }
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001895
1896 shift = 8 - png_ptr->sig_bit.green;
Glenn Randers-Pehrson32440202013-08-21 18:01:32 -05001897 if (shift > 0 && shift < 8)
1898 for (i=0; i<istop; ++i)
1899 {
1900 int component = png_ptr->palette[i].green;
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001901
Glenn Randers-Pehrson32440202013-08-21 18:01:32 -05001902 component >>= shift;
1903 png_ptr->palette[i].green = (png_byte)component;
1904 }
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001905
1906 shift = 8 - png_ptr->sig_bit.blue;
Glenn Randers-Pehrson32440202013-08-21 18:01:32 -05001907 if (shift > 0 && shift < 8)
1908 for (i=0; i<istop; ++i)
1909 {
1910 int component = png_ptr->palette[i].blue;
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05001911
Glenn Randers-Pehrson32440202013-08-21 18:01:32 -05001912 component >>= shift;
1913 png_ptr->palette[i].blue = (png_byte)component;
1914 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001915 }
Glenn Randers-Pehrson5a0be342001-10-18 20:55:13 -05001916#endif /* PNG_READ_SHIFT_SUPPORTED */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001917}
1918
Andreas Dilger47a0c421997-05-16 02:46:07 -05001919/* Modify the info structure to reflect the transformations. The
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001920 * info should be updated so a PNG file could be written with it,
1921 * assuming the transformations result in valid PNG data.
1922 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001923void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06001924png_read_transform_info(png_structrp png_ptr, png_inforp info_ptr)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001925{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001926 png_debug(1, "in png_read_transform_info");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001927
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001928#ifdef PNG_READ_EXPAND_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001929 if (png_ptr->transformations & PNG_EXPAND)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001930 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05001931 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1932 {
John Bowler9994f252011-05-15 18:52:39 -05001933 /* This check must match what actually happens in
Glenn Randers-Pehrson0e128df2011-05-15 19:09:24 -05001934 * png_do_expand_palette; if it ever checks the tRNS chunk to see if
John Bowler9994f252011-05-15 18:52:39 -05001935 * it is all opaque we must do the same (at present it does not.)
1936 */
1937 if (png_ptr->num_trans > 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001938 info_ptr->color_type = PNG_COLOR_TYPE_RGB_ALPHA;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001939
Andreas Dilger47a0c421997-05-16 02:46:07 -05001940 else
1941 info_ptr->color_type = PNG_COLOR_TYPE_RGB;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001942
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001943 info_ptr->bit_depth = 8;
Andreas Dilger47a0c421997-05-16 02:46:07 -05001944 info_ptr->num_trans = 0;
1945 }
1946 else
1947 {
1948 if (png_ptr->num_trans)
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -06001949 {
1950 if (png_ptr->transformations & PNG_EXPAND_tRNS)
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06001951 info_ptr->color_type |= PNG_COLOR_MASK_ALPHA;
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -06001952 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05001953 if (info_ptr->bit_depth < 8)
1954 info_ptr->bit_depth = 8;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001955
Andreas Dilger47a0c421997-05-16 02:46:07 -05001956 info_ptr->num_trans = 0;
1957 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001958 }
1959#endif
1960
John Bowlerd273ad22011-05-07 21:00:28 -05001961#if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
1962 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
1963 /* The following is almost certainly wrong unless the background value is in
1964 * the screen space!
1965 */
1966 if (png_ptr->transformations & PNG_COMPOSE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001967 info_ptr->background = png_ptr->background;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001968#endif
1969
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001970#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001971 /* The following used to be conditional on PNG_GAMMA (prior to 1.5.4),
John Bowlerd273ad22011-05-07 21:00:28 -05001972 * however it seems that the code in png_init_read_transformations, which has
1973 * been called before this from png_read_update_info->png_read_start_row
1974 * sometimes does the gamma transform and cancels the flag.
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001975 *
1976 * TODO: this looks wrong; the info_ptr should end up with a gamma equal to
1977 * the screen_gamma value. The following probably results in weirdness if
1978 * the info_ptr is used by the app after the rows have been read.
John Bowlerd273ad22011-05-07 21:00:28 -05001979 */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06001980 info_ptr->colorspace.gamma = png_ptr->colorspace.gamma;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001981#endif
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001982
Glenn Randers-Pehrson4554a542010-08-27 10:48:45 -05001983 if (info_ptr->bit_depth == 16)
1984 {
John Bowler8d261262011-06-18 13:37:11 -05001985# ifdef PNG_READ_16BIT_SUPPORTED
1986# ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
1987 if (png_ptr->transformations & PNG_SCALE_16_TO_8)
1988 info_ptr->bit_depth = 8;
1989# endif
1990
1991# ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
1992 if (png_ptr->transformations & PNG_16_TO_8)
1993 info_ptr->bit_depth = 8;
1994# endif
1995
1996# else
1997 /* No 16 bit support: force chopping 16-bit input down to 8, in this case
1998 * the app program can chose if both APIs are available by setting the
1999 * correct scaling to use.
2000 */
2001# ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
2002 /* For compatibility with previous versions use the strip method by
2003 * default. This code works because if PNG_SCALE_16_TO_8 is already
2004 * set the code below will do that in preference to the chop.
2005 */
2006 png_ptr->transformations |= PNG_16_TO_8;
2007 info_ptr->bit_depth = 8;
2008# else
2009
Glenn Randers-Pehrson0b26ac52011-11-28 10:38:41 -06002010# ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
John Bowler8d261262011-06-18 13:37:11 -05002011 png_ptr->transformations |= PNG_SCALE_16_TO_8;
2012 info_ptr->bit_depth = 8;
2013# else
2014
2015 CONFIGURATION ERROR: you must enable at least one 16 to 8 method
2016# endif
Glenn Randers-Pehrsonaee83b42011-06-18 00:19:54 -05002017# endif
John Bowler8d261262011-06-18 13:37:11 -05002018#endif /* !READ_16BIT_SUPPORTED */
Glenn Randers-Pehrson4554a542010-08-27 10:48:45 -05002019 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002020
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002021#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Glenn Randers-Pehrsonddfebd32006-02-22 09:19:25 -06002022 if (png_ptr->transformations & PNG_GRAY_TO_RGB)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002023 info_ptr->color_type = (png_byte)(info_ptr->color_type |
2024 PNG_COLOR_MASK_COLOR);
Glenn Randers-Pehrsonddfebd32006-02-22 09:19:25 -06002025#endif
2026
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002027#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Glenn Randers-Pehrsonddfebd32006-02-22 09:19:25 -06002028 if (png_ptr->transformations & PNG_RGB_TO_GRAY)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002029 info_ptr->color_type = (png_byte)(info_ptr->color_type &
2030 ~PNG_COLOR_MASK_COLOR);
Glenn Randers-Pehrsonddfebd32006-02-22 09:19:25 -06002031#endif
2032
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05002033#ifdef PNG_READ_QUANTIZE_SUPPORTED
2034 if (png_ptr->transformations & PNG_QUANTIZE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002035 {
2036 if (((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002037 (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)) &&
2038 png_ptr->palette_lookup && info_ptr->bit_depth == 8)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002039 {
2040 info_ptr->color_type = PNG_COLOR_TYPE_PALETTE;
2041 }
2042 }
2043#endif
2044
John Bowler1921e6d2011-05-16 20:57:54 -05002045#ifdef PNG_READ_EXPAND_16_SUPPORTED
2046 if (png_ptr->transformations & PNG_EXPAND_16 && info_ptr->bit_depth == 8 &&
2047 info_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
2048 {
2049 info_ptr->bit_depth = 16;
2050 }
2051#endif
2052
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002053#ifdef PNG_READ_PACK_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002054 if ((png_ptr->transformations & PNG_PACK) && (info_ptr->bit_depth < 8))
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002055 info_ptr->bit_depth = 8;
2056#endif
2057
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002058 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002059 info_ptr->channels = 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002060
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002061 else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
2062 info_ptr->channels = 3;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002063
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002064 else
2065 info_ptr->channels = 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002066
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002067#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
John Bowler9b872f42011-02-12 09:00:16 -06002068 if (png_ptr->transformations & PNG_STRIP_ALPHA)
John Bowlerd273ad22011-05-07 21:00:28 -05002069 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002070 info_ptr->color_type = (png_byte)(info_ptr->color_type &
2071 ~PNG_COLOR_MASK_ALPHA);
John Bowlerd273ad22011-05-07 21:00:28 -05002072 info_ptr->num_trans = 0;
2073 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002074#endif
2075
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002076 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
2077 info_ptr->channels++;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002078
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002079#ifdef PNG_READ_FILLER_SUPPORTED
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002080 /* STRIP_ALPHA and FILLER allowed: MASK_ALPHA bit stripped above */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002081 if ((png_ptr->transformations & PNG_FILLER) &&
2082 ((info_ptr->color_type == PNG_COLOR_TYPE_RGB) ||
2083 (info_ptr->color_type == PNG_COLOR_TYPE_GRAY)))
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06002084 {
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05002085 info_ptr->channels++;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002086 /* If adding a true alpha channel not just filler */
Glenn Randers-Pehrson67864af2004-08-28 23:30:07 -05002087 if (png_ptr->transformations & PNG_ADD_ALPHA)
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002088 info_ptr->color_type |= PNG_COLOR_MASK_ALPHA;
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06002089 }
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002090#endif
2091
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002092#if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED) && \
2093defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002094 if (png_ptr->transformations & PNG_USER_TRANSFORM)
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002095 {
2096 if (info_ptr->bit_depth < png_ptr->user_transform_depth)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002097 info_ptr->bit_depth = png_ptr->user_transform_depth;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002098
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002099 if (info_ptr->channels < png_ptr->user_transform_channels)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002100 info_ptr->channels = png_ptr->user_transform_channels;
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002101 }
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002102#endif
2103
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002104 info_ptr->pixel_depth = (png_byte)(info_ptr->channels *
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002105 info_ptr->bit_depth);
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05002106
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002107 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, info_ptr->width);
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05002108
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05002109 /* Adding in 1.5.4: cache the above value in png_struct so that we can later
John Bowler9994f252011-05-15 18:52:39 -05002110 * check in png_rowbytes that the user buffer won't get overwritten. Note
2111 * that the field is not always set - if png_read_update_info isn't called
2112 * the application has to either not do any transforms or get the calculation
2113 * right itself.
2114 */
2115 png_ptr->info_rowbytes = info_ptr->rowbytes;
2116
Glenn Randers-Pehrsonb2aca212009-09-23 11:32:37 -05002117#ifndef PNG_READ_EXPAND_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002118 if (png_ptr)
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05002119 return;
2120#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002121}
2122
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002123/* Transform the row. The order of transformations is significant,
2124 * and is very touchy. If you add a transformation, take care to
2125 * decide how it fits in with the other transformations here.
2126 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002127void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06002128png_do_read_transformations(png_structrp png_ptr, png_row_infop row_info)
Guy Schalnat0d580581995-07-20 02:43:20 -05002129{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05002130 png_debug(1, "in png_do_read_transformations");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05002131
Andreas Dilger47a0c421997-05-16 02:46:07 -05002132 if (png_ptr->row_buf == NULL)
2133 {
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05002134 /* Prior to 1.5.4 this output row/pass where the NULL pointer is, but this
John Bowler88b77cc2011-05-05 06:49:55 -05002135 * error is incredibly rare and incredibly easy to debug without this
2136 * information.
2137 */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06002138 png_error(png_ptr, "NULL row buffer");
Andreas Dilger47a0c421997-05-16 02:46:07 -05002139 }
John Bowlerd273ad22011-05-07 21:00:28 -05002140
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05002141 /* The following is debugging; prior to 1.5.4 the code was never compiled in;
2142 * in 1.5.4 PNG_FLAG_DETECT_UNINITIALIZED was added and the macro
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06002143 * PNG_WARN_UNINITIALIZED_ROW removed. In 1.6 the new flag is set only for
2144 * all transformations, however in practice the ROW_INIT always gets done on
2145 * demand, if necessary.
John Bowlerd273ad22011-05-07 21:00:28 -05002146 */
2147 if ((png_ptr->flags & PNG_FLAG_DETECT_UNINITIALIZED) != 0 &&
2148 !(png_ptr->flags & PNG_FLAG_ROW_INIT))
2149 {
2150 /* Application has failed to call either png_read_start_image() or
2151 * png_read_update_info() after setting transforms that expand pixels.
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05002152 * This check added to libpng-1.2.19 (but not enabled until 1.5.4).
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002153 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002154 png_error(png_ptr, "Uninitialized row");
John Bowlerd273ad22011-05-07 21:00:28 -05002155 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002156
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002157#ifdef PNG_READ_EXPAND_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002158 if (png_ptr->transformations & PNG_EXPAND)
Guy Schalnat0d580581995-07-20 02:43:20 -05002159 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002160 if (row_info->color_type == PNG_COLOR_TYPE_PALETTE)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002161 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002162 png_do_expand_palette(row_info, png_ptr->row_buf + 1,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002163 png_ptr->palette, png_ptr->trans_alpha, png_ptr->num_trans);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002164 }
Glenn Randers-Pehrsonc36bb792011-02-12 09:49:07 -06002165
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05002166 else
Andreas Dilger47a0c421997-05-16 02:46:07 -05002167 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002168 if (png_ptr->num_trans &&
2169 (png_ptr->transformations & PNG_EXPAND_tRNS))
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002170 png_do_expand(row_info, png_ptr->row_buf + 1,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002171 &(png_ptr->trans_color));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002172
John Bowler4d562962011-02-12 09:01:20 -06002173 else
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002174 png_do_expand(row_info, png_ptr->row_buf + 1,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002175 NULL);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002176 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002177 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05002178#endif
2179
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002180#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
John Bowler9b872f42011-02-12 09:00:16 -06002181 if ((png_ptr->transformations & PNG_STRIP_ALPHA) &&
John Bowlerd273ad22011-05-07 21:00:28 -05002182 !(png_ptr->transformations & PNG_COMPOSE) &&
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002183 (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA ||
2184 row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA))
2185 png_do_strip_channel(row_info, png_ptr->row_buf + 1,
Glenn Randers-Pehrsond2795b72011-04-16 19:41:23 -05002186 0 /* at_start == false, because SWAP_ALPHA happens later */);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002187#endif
2188
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002189#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002190 if (png_ptr->transformations & PNG_RGB_TO_GRAY)
2191 {
2192 int rgb_error =
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002193 png_do_rgb_to_gray(png_ptr, row_info,
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002194 png_ptr->row_buf + 1);
2195
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002196 if (rgb_error)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002197 {
2198 png_ptr->rgb_to_gray_status=1;
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -06002199 if ((png_ptr->transformations & PNG_RGB_TO_GRAY) ==
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002200 PNG_RGB_TO_GRAY_WARN)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002201 png_warning(png_ptr, "png_do_rgb_to_gray found nongray pixel");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002202
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002203 if ((png_ptr->transformations & PNG_RGB_TO_GRAY) ==
2204 PNG_RGB_TO_GRAY_ERR)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002205 png_error(png_ptr, "png_do_rgb_to_gray found nongray pixel");
2206 }
2207 }
2208#endif
2209
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002210/* From Andreas Dilger e-mail to png-implement, 26 March 1998:
Glenn Randers-Pehrsond60c8862009-06-15 21:56:14 -05002211 *
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002212 * In most cases, the "simple transparency" should be done prior to doing
2213 * gray-to-RGB, or you will have to test 3x as many bytes to check if a
2214 * pixel is transparent. You would also need to make sure that the
2215 * transparency information is upgraded to RGB.
Glenn Randers-Pehrsond60c8862009-06-15 21:56:14 -05002216 *
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002217 * To summarize, the current flow is:
2218 * - Gray + simple transparency -> compare 1 or 2 gray bytes and composite
2219 * with background "in place" if transparent,
2220 * convert to RGB if necessary
2221 * - Gray + alpha -> composite with gray background and remove alpha bytes,
2222 * convert to RGB if necessary
2223 *
2224 * To support RGB backgrounds for gray images we need:
2225 * - Gray + simple transparency -> convert to RGB + simple transparency,
2226 * compare 3 or 6 bytes and composite with
2227 * background "in place" if transparent
2228 * (3x compare/pixel compared to doing
2229 * composite with gray bkgrnd)
2230 * - Gray + alpha -> convert to RGB + alpha, composite with background and
2231 * remove alpha bytes (3x float
2232 * operations/pixel compared with composite
2233 * on gray background)
2234 *
2235 * Greg's change will do this. The reason it wasn't done before is for
2236 * performance, as this increases the per-pixel operations. If we would check
2237 * in advance if the background was gray or RGB, and position the gray-to-RGB
2238 * transform appropriately, then it would save a lot of work/time.
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002239 */
2240
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002241#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002242 /* If gray -> RGB, do so now only if background is non-gray; else do later
2243 * for performance reasons
2244 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002245 if ((png_ptr->transformations & PNG_GRAY_TO_RGB) &&
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002246 !(png_ptr->mode & PNG_BACKGROUND_IS_GRAY))
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002247 png_do_gray_to_rgb(row_info, png_ptr->row_buf + 1);
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002248#endif
2249
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06002250#if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
2251 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
John Bowlerd273ad22011-05-07 21:00:28 -05002252 if (png_ptr->transformations & PNG_COMPOSE)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002253 png_do_compose(row_info, png_ptr->row_buf + 1, png_ptr);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002254#endif
2255
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002256#ifdef PNG_READ_GAMMA_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002257 if ((png_ptr->transformations & PNG_GAMMA) &&
John Bowler18c5cfa2011-11-16 14:26:34 -06002258#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
2259 /* Because RGB_TO_GRAY does the gamma transform. */
2260 !(png_ptr->transformations & PNG_RGB_TO_GRAY) &&
2261#endif
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06002262#if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
2263 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
John Bowler18c5cfa2011-11-16 14:26:34 -06002264 /* Because PNG_COMPOSE does the gamma transform if there is something to
2265 * do (if there is an alpha channel or transparency.)
2266 */
John Bowlerd273ad22011-05-07 21:00:28 -05002267 !((png_ptr->transformations & PNG_COMPOSE) &&
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002268 ((png_ptr->num_trans != 0) ||
2269 (png_ptr->color_type & PNG_COLOR_MASK_ALPHA))) &&
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05002270#endif
John Bowler18c5cfa2011-11-16 14:26:34 -06002271 /* Because png_init_read_transformations transforms the palette, unless
2272 * RGB_TO_GRAY will do the transform.
2273 */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002274 (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE))
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002275 png_do_gamma(row_info, png_ptr->row_buf + 1, png_ptr);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002276#endif
2277
John Bowlerd273ad22011-05-07 21:00:28 -05002278#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
2279 if ((png_ptr->transformations & PNG_STRIP_ALPHA) &&
2280 (png_ptr->transformations & PNG_COMPOSE) &&
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002281 (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA ||
2282 row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA))
2283 png_do_strip_channel(row_info, png_ptr->row_buf + 1,
John Bowlerd273ad22011-05-07 21:00:28 -05002284 0 /* at_start == false, because SWAP_ALPHA happens later */);
2285#endif
2286
2287#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
2288 if ((png_ptr->transformations & PNG_ENCODE_ALPHA) &&
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002289 (row_info->color_type & PNG_COLOR_MASK_ALPHA))
2290 png_do_encode_alpha(row_info, png_ptr->row_buf + 1, png_ptr);
John Bowlerd273ad22011-05-07 21:00:28 -05002291#endif
2292
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002293#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
Glenn Randers-Pehrsonaee83b42011-06-18 00:19:54 -05002294 if (png_ptr->transformations & PNG_SCALE_16_TO_8)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002295 png_do_scale_16_to_8(row_info, png_ptr->row_buf + 1);
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002296#endif
John Bowler8d261262011-06-18 13:37:11 -05002297
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002298#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
John Bowler8d261262011-06-18 13:37:11 -05002299 /* There is no harm in doing both of these because only one has any effect,
2300 * by putting the 'scale' option first if the app asks for scale (either by
2301 * calling the API or in a TRANSFORM flag) this is what happens.
2302 */
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002303 if (png_ptr->transformations & PNG_16_TO_8)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002304 png_do_chop(row_info, png_ptr->row_buf + 1);
Glenn Randers-Pehrson7a59e1e2009-12-11 07:57:36 -06002305#endif
2306
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05002307#ifdef PNG_READ_QUANTIZE_SUPPORTED
2308 if (png_ptr->transformations & PNG_QUANTIZE)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002309 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002310 png_do_quantize(row_info, png_ptr->row_buf + 1,
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05002311 png_ptr->palette_lookup, png_ptr->quantize_index);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002312
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002313 if (row_info->rowbytes == 0)
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05002314 png_error(png_ptr, "png_do_quantize returned rowbytes=0");
Andreas Dilger47a0c421997-05-16 02:46:07 -05002315 }
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05002316#endif /* PNG_READ_QUANTIZE_SUPPORTED */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002317
John Bowler4d562962011-02-12 09:01:20 -06002318#ifdef PNG_READ_EXPAND_16_SUPPORTED
2319 /* Do the expansion now, after all the arithmetic has been done. Notice
2320 * that previous transformations can handle the PNG_EXPAND_16 flag if this
2321 * is efficient (particularly true in the case of gamma correction, where
2322 * better accuracy results faster!)
2323 */
2324 if (png_ptr->transformations & PNG_EXPAND_16)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002325 png_do_expand_16(row_info, png_ptr->row_buf + 1);
John Bowler4d562962011-02-12 09:01:20 -06002326#endif
John Bowlerd273ad22011-05-07 21:00:28 -05002327
2328#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06002329 /* NOTE: moved here in 1.5.4 (from much later in this list.) */
John Bowlerd273ad22011-05-07 21:00:28 -05002330 if ((png_ptr->transformations & PNG_GRAY_TO_RGB) &&
2331 (png_ptr->mode & PNG_BACKGROUND_IS_GRAY))
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002332 png_do_gray_to_rgb(row_info, png_ptr->row_buf + 1);
John Bowlerd273ad22011-05-07 21:00:28 -05002333#endif
John Bowler4d562962011-02-12 09:01:20 -06002334
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002335#ifdef PNG_READ_INVERT_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05002336 if (png_ptr->transformations & PNG_INVERT_MONO)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002337 png_do_invert(row_info, png_ptr->row_buf + 1);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002338#endif
2339
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002340#ifdef PNG_READ_SHIFT_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05002341 if (png_ptr->transformations & PNG_SHIFT)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002342 png_do_unshift(row_info, png_ptr->row_buf + 1,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002343 &(png_ptr->shift));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002344#endif
2345
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002346#ifdef PNG_READ_PACK_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05002347 if (png_ptr->transformations & PNG_PACK)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002348 png_do_unpack(row_info, png_ptr->row_buf + 1);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002349#endif
2350
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06002351#ifdef PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED
2352 /* Added at libpng-1.5.10 */
2353 if (row_info->color_type == PNG_COLOR_TYPE_PALETTE &&
2354 png_ptr->num_palette_max >= 0)
2355 png_do_check_palette_indexes(png_ptr, row_info);
2356#endif
2357
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002358#ifdef PNG_READ_BGR_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05002359 if (png_ptr->transformations & PNG_BGR)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002360 png_do_bgr(row_info, png_ptr->row_buf + 1);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002361#endif
2362
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002363#ifdef PNG_READ_PACKSWAP_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002364 if (png_ptr->transformations & PNG_PACKSWAP)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002365 png_do_packswap(row_info, png_ptr->row_buf + 1);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002366#endif
2367
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002368#ifdef PNG_READ_FILLER_SUPPORTED
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002369 if (png_ptr->transformations & PNG_FILLER)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002370 png_do_read_filler(row_info, png_ptr->row_buf + 1,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002371 (png_uint_32)png_ptr->filler, png_ptr->flags);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002372#endif
2373
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002374#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002375 if (png_ptr->transformations & PNG_INVERT_ALPHA)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002376 png_do_read_invert_alpha(row_info, png_ptr->row_buf + 1);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002377#endif
2378
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002379#ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002380 if (png_ptr->transformations & PNG_SWAP_ALPHA)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002381 png_do_read_swap_alpha(row_info, png_ptr->row_buf + 1);
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002382#endif
2383
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002384#ifdef PNG_READ_16BIT_SUPPORTED
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002385#ifdef PNG_READ_SWAP_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002386 if (png_ptr->transformations & PNG_SWAP_BYTES)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002387 png_do_swap(row_info, png_ptr->row_buf + 1);
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002388#endif
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002389#endif
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002390
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002391#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002392 if (png_ptr->transformations & PNG_USER_TRANSFORM)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002393 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002394 if (png_ptr->read_user_transform_fn != NULL)
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05002395 (*(png_ptr->read_user_transform_fn)) /* User read transform function */
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002396 (png_ptr, /* png_ptr */
2397 row_info, /* row_info: */
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002398 /* png_uint_32 width; width of row */
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05002399 /* png_size_t rowbytes; number of bytes in row */
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002400 /* png_byte color_type; color type of pixels */
2401 /* png_byte bit_depth; bit depth of samples */
2402 /* png_byte channels; number of channels (1-4) */
2403 /* png_byte pixel_depth; bits per pixel (depth*channels) */
2404 png_ptr->row_buf + 1); /* start of pixel data for row */
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002405#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002406 if (png_ptr->user_transform_depth)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002407 row_info->bit_depth = png_ptr->user_transform_depth;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002408
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002409 if (png_ptr->user_transform_channels)
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002410 row_info->channels = png_ptr->user_transform_channels;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002411#endif
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002412 row_info->pixel_depth = (png_byte)(row_info->bit_depth *
2413 row_info->channels);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002414
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002415 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_info->width);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002416 }
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06002417#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002418}
2419
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002420#ifdef PNG_READ_PACK_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002421/* Unpack pixels of 1, 2, or 4 bits per pixel into 1 byte per pixel,
2422 * without changing the actual values. Thus, if you had a row with
2423 * a bit depth of 1, you would end up with bytes that only contained
2424 * the numbers 0 or 1. If you would rather they contain 0 and 255, use
2425 * png_do_shift() after this.
2426 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002427void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06002428png_do_unpack(png_row_infop row_info, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -05002429{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05002430 png_debug(1, "in png_do_unpack");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05002431
Andreas Dilger47a0c421997-05-16 02:46:07 -05002432 if (row_info->bit_depth < 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05002433 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002434 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002435 png_uint_32 row_width=row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002436
Guy Schalnat0d580581995-07-20 02:43:20 -05002437 switch (row_info->bit_depth)
2438 {
2439 case 1:
2440 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002441 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3);
2442 png_bytep dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002443 png_uint_32 shift = 7 - (int)((row_width + 7) & 0x07);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002444 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05002445 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002446 *dp = (png_byte)((*sp >> shift) & 0x01);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002447
Guy Schalnat0d580581995-07-20 02:43:20 -05002448 if (shift == 7)
2449 {
2450 shift = 0;
2451 sp--;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002452 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002453
Guy Schalnat0d580581995-07-20 02:43:20 -05002454 else
2455 shift++;
2456
2457 dp--;
2458 }
2459 break;
2460 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002461
Guy Schalnat0d580581995-07-20 02:43:20 -05002462 case 2:
2463 {
Guy Schalnat0d580581995-07-20 02:43:20 -05002464
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002465 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2);
2466 png_bytep dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002467 png_uint_32 shift = (int)((3 - ((row_width + 3) & 0x03)) << 1);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002468 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05002469 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002470 *dp = (png_byte)((*sp >> shift) & 0x03);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002471
Guy Schalnat0d580581995-07-20 02:43:20 -05002472 if (shift == 6)
2473 {
2474 shift = 0;
2475 sp--;
2476 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002477
Guy Schalnat0d580581995-07-20 02:43:20 -05002478 else
2479 shift += 2;
2480
2481 dp--;
2482 }
2483 break;
2484 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002485
Guy Schalnat0d580581995-07-20 02:43:20 -05002486 case 4:
2487 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002488 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1);
2489 png_bytep dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002490 png_uint_32 shift = (int)((1 - ((row_width + 1) & 0x01)) << 2);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002491 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05002492 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002493 *dp = (png_byte)((*sp >> shift) & 0x0f);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002494
Guy Schalnat0d580581995-07-20 02:43:20 -05002495 if (shift == 4)
2496 {
2497 shift = 0;
2498 sp--;
2499 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002500
Guy Schalnat0d580581995-07-20 02:43:20 -05002501 else
2502 shift = 4;
2503
2504 dp--;
2505 }
2506 break;
2507 }
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06002508
2509 default:
2510 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05002511 }
2512 row_info->bit_depth = 8;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002513 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002514 row_info->rowbytes = row_width * row_info->channels;
Guy Schalnat0d580581995-07-20 02:43:20 -05002515 }
2516}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002517#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002518
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002519#ifdef PNG_READ_SHIFT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002520/* Reverse the effects of png_do_shift. This routine merely shifts the
2521 * pixels back to their significant bits values. Thus, if you have
2522 * a row of bit depth 8, but only 5 are significant, this will shift
2523 * the values back to 0 through 31.
2524 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002525void /* PRIVATE */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05002526png_do_unshift(png_row_infop row_info, png_bytep row,
2527 png_const_color_8p sig_bits)
Guy Schalnat0d580581995-07-20 02:43:20 -05002528{
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002529 int color_type;
2530
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05002531 png_debug(1, "in png_do_unshift");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05002532
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002533 /* The palette case has already been handled in the _init routine. */
2534 color_type = row_info->color_type;
2535
2536 if (color_type != PNG_COLOR_TYPE_PALETTE)
Guy Schalnat0d580581995-07-20 02:43:20 -05002537 {
2538 int shift[4];
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002539 int channels = 0;
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002540 int bit_depth = row_info->bit_depth;
Guy Schalnat0d580581995-07-20 02:43:20 -05002541
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002542 if (color_type & PNG_COLOR_MASK_COLOR)
Guy Schalnat0d580581995-07-20 02:43:20 -05002543 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002544 shift[channels++] = bit_depth - sig_bits->red;
2545 shift[channels++] = bit_depth - sig_bits->green;
2546 shift[channels++] = bit_depth - sig_bits->blue;
Guy Schalnat0d580581995-07-20 02:43:20 -05002547 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002548
Guy Schalnat0d580581995-07-20 02:43:20 -05002549 else
2550 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002551 shift[channels++] = bit_depth - sig_bits->gray;
Guy Schalnat0d580581995-07-20 02:43:20 -05002552 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002553
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002554 if (color_type & PNG_COLOR_MASK_ALPHA)
Guy Schalnat0d580581995-07-20 02:43:20 -05002555 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002556 shift[channels++] = bit_depth - sig_bits->alpha;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002557 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002558
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002559 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002560 int c, have_shift;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002561
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002562 for (c = have_shift = 0; c < channels; ++c)
2563 {
2564 /* A shift of more than the bit depth is an error condition but it
2565 * gets ignored here.
2566 */
2567 if (shift[c] <= 0 || shift[c] >= bit_depth)
2568 shift[c] = 0;
2569
2570 else
2571 have_shift = 1;
2572 }
2573
2574 if (!have_shift)
2575 return;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002576 }
Guy Schalnat0f716451995-11-28 11:22:13 -06002577
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002578 switch (bit_depth)
Guy Schalnat0d580581995-07-20 02:43:20 -05002579 {
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06002580 default:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002581 /* Must be 1bpp gray: should not be here! */
2582 /* NOTREACHED */
Glenn Randers-Pehrsonc36bb792011-02-12 09:49:07 -06002583 break;
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06002584
Guy Schalnat0d580581995-07-20 02:43:20 -05002585 case 2:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002586 /* Must be 2bpp gray */
2587 /* assert(channels == 1 && shift[0] == 1) */
Guy Schalnat0d580581995-07-20 02:43:20 -05002588 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002589 png_bytep bp = row;
2590 png_bytep bp_end = bp + row_info->rowbytes;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002591
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002592 while (bp < bp_end)
Guy Schalnat0d580581995-07-20 02:43:20 -05002593 {
John Bowler92ef3132011-10-27 19:36:08 -05002594 int b = (*bp >> 1) & 0x55;
2595 *bp++ = (png_byte)b;
Guy Schalnat0d580581995-07-20 02:43:20 -05002596 }
2597 break;
2598 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002599
Guy Schalnat0d580581995-07-20 02:43:20 -05002600 case 4:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002601 /* Must be 4bpp gray */
2602 /* assert(channels == 1) */
Guy Schalnat0d580581995-07-20 02:43:20 -05002603 {
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05002604 png_bytep bp = row;
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002605 png_bytep bp_end = bp + row_info->rowbytes;
2606 int gray_shift = shift[0];
2607 int mask = 0xf >> gray_shift;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002608
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002609 mask |= mask << 4;
2610
2611 while (bp < bp_end)
Guy Schalnat0d580581995-07-20 02:43:20 -05002612 {
John Bowler92ef3132011-10-27 19:36:08 -05002613 int b = (*bp >> gray_shift) & mask;
2614 *bp++ = (png_byte)b;
Guy Schalnat0d580581995-07-20 02:43:20 -05002615 }
2616 break;
2617 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002618
Guy Schalnat0d580581995-07-20 02:43:20 -05002619 case 8:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002620 /* Single byte components, G, GA, RGB, RGBA */
Guy Schalnat0d580581995-07-20 02:43:20 -05002621 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002622 png_bytep bp = row;
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002623 png_bytep bp_end = bp + row_info->rowbytes;
2624 int channel = 0;
Guy Schalnat0d580581995-07-20 02:43:20 -05002625
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002626 while (bp < bp_end)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002627 {
John Bowler92ef3132011-10-27 19:36:08 -05002628 int b = *bp >> shift[channel];
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002629 if (++channel >= channels)
2630 channel = 0;
John Bowler92ef3132011-10-27 19:36:08 -05002631 *bp++ = (png_byte)b;
Guy Schalnat0d580581995-07-20 02:43:20 -05002632 }
2633 break;
2634 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05002635
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002636#ifdef PNG_READ_16BIT_SUPPORTED
Guy Schalnat0d580581995-07-20 02:43:20 -05002637 case 16:
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002638 /* Double byte components, G, GA, RGB, RGBA */
Guy Schalnat0d580581995-07-20 02:43:20 -05002639 {
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002640 png_bytep bp = row;
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002641 png_bytep bp_end = bp + row_info->rowbytes;
2642 int channel = 0;
Guy Schalnat0d580581995-07-20 02:43:20 -05002643
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002644 while (bp < bp_end)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002645 {
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05002646 int value = (bp[0] << 8) + bp[1];
2647
2648 value >>= shift[channel];
2649 if (++channel >= channels)
2650 channel = 0;
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002651 *bp++ = (png_byte)(value >> 8);
2652 *bp++ = (png_byte)(value & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05002653 }
2654 break;
2655 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002656#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002657 }
2658 }
2659}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002660#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002661
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002662#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -05002663/* Scale rows of bit depth 16 down to 8 accurately */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002664void /* PRIVATE */
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -05002665png_do_scale_16_to_8(png_row_infop row_info, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -05002666{
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -05002667 png_debug(1, "in png_do_scale_16_to_8");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05002668
Andreas Dilger47a0c421997-05-16 02:46:07 -05002669 if (row_info->bit_depth == 16)
Guy Schalnat0d580581995-07-20 02:43:20 -05002670 {
John Bowlerb2bee332011-06-10 23:24:58 -05002671 png_bytep sp = row; /* source */
Glenn Randers-Pehrsonefc4b692011-11-07 23:31:34 -06002672 png_bytep dp = row; /* destination */
John Bowlerb2bee332011-06-10 23:24:58 -05002673 png_bytep ep = sp + row_info->rowbytes; /* end+1 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002674
John Bowlerb2bee332011-06-10 23:24:58 -05002675 while (sp < ep)
Guy Schalnat0d580581995-07-20 02:43:20 -05002676 {
John Bowlerb2bee332011-06-10 23:24:58 -05002677 /* The input is an array of 16 bit components, these must be scaled to
2678 * 8 bits each. For a 16 bit value V the required value (from the PNG
2679 * specification) is:
2680 *
2681 * (V * 255) / 65535
2682 *
2683 * This reduces to round(V / 257), or floor((V + 128.5)/257)
2684 *
2685 * Represent V as the two byte value vhi.vlo. Make a guess that the
2686 * result is the top byte of V, vhi, then the correction to this value
2687 * is:
2688 *
2689 * error = floor(((V-vhi.vhi) + 128.5) / 257)
2690 * = floor(((vlo-vhi) + 128.5) / 257)
2691 *
2692 * This can be approximated using integer arithmetic (and a signed
2693 * shift):
2694 *
2695 * error = (vlo-vhi+128) >> 8;
2696 *
2697 * The approximate differs from the exact answer only when (vlo-vhi) is
2698 * 128; it then gives a correction of +1 when the exact correction is
2699 * 0. This gives 128 errors. The exact answer (correct for all 16 bit
2700 * input values) is:
2701 *
2702 * error = (vlo-vhi+128)*65535 >> 24;
2703 *
2704 * An alternative arithmetic calculation which also gives no errors is:
2705 *
2706 * (V * 255 + 32895) >> 16
2707 */
Glenn Randers-Pehrson141d9e32011-06-13 11:47:00 -05002708
John Bowlerb2bee332011-06-10 23:24:58 -05002709 png_int_32 tmp = *sp++; /* must be signed! */
2710 tmp += (((int)*sp++ - tmp + 128) * 65535) >> 24;
John Bowler74945f22011-06-13 20:50:42 -05002711 *dp++ = (png_byte)tmp;
Guy Schalnat0d580581995-07-20 02:43:20 -05002712 }
John Bowlerb2bee332011-06-10 23:24:58 -05002713
Guy Schalnat0d580581995-07-20 02:43:20 -05002714 row_info->bit_depth = 8;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06002715 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002716 row_info->rowbytes = row_info->width * row_info->channels;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002717 }
2718}
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002719#endif
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -05002720
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002721#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -05002722void /* PRIVATE */
2723/* Simply discard the low byte. This was the default behavior prior
2724 * to libpng-1.5.4.
2725 */
2726png_do_chop(png_row_infop row_info, png_bytep row)
2727{
2728 png_debug(1, "in png_do_chop");
2729
2730 if (row_info->bit_depth == 16)
2731 {
2732 png_bytep sp = row; /* source */
Glenn Randers-Pehrsonefc4b692011-11-07 23:31:34 -06002733 png_bytep dp = row; /* destination */
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -05002734 png_bytep ep = sp + row_info->rowbytes; /* end+1 */
2735
2736 while (sp < ep)
2737 {
John Bowler8d261262011-06-18 13:37:11 -05002738 *dp++ = *sp;
2739 sp += 2; /* skip low byte */
Glenn Randers-Pehrson413138a2011-06-13 22:07:37 -05002740 }
2741
2742 row_info->bit_depth = 8;
2743 row_info->pixel_depth = (png_byte)(8 * row_info->channels);
2744 row_info->rowbytes = row_info->width * row_info->channels;
2745 }
2746}
Glenn Randers-Pehrsone6a80602011-06-17 22:28:23 -05002747#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002748
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002749#ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002750void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002751png_do_read_swap_alpha(png_row_infop row_info, png_bytep row)
2752{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05002753 png_debug(1, "in png_do_read_swap_alpha");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05002754
Andreas Dilger47a0c421997-05-16 02:46:07 -05002755 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002756 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002757 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
2758 {
2759 /* This converts from RGBA to ARGB */
2760 if (row_info->bit_depth == 8)
2761 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002762 png_bytep sp = row + row_info->rowbytes;
2763 png_bytep dp = sp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002764 png_byte save;
2765 png_uint_32 i;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002766
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002767 for (i = 0; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002768 {
2769 save = *(--sp);
2770 *(--dp) = *(--sp);
2771 *(--dp) = *(--sp);
2772 *(--dp) = *(--sp);
2773 *(--dp) = save;
2774 }
2775 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002776
2777#ifdef PNG_READ_16BIT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002778 /* This converts from RRGGBBAA to AARRGGBB */
2779 else
2780 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002781 png_bytep sp = row + row_info->rowbytes;
2782 png_bytep dp = sp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002783 png_byte save[2];
2784 png_uint_32 i;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002785
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002786 for (i = 0; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002787 {
2788 save[0] = *(--sp);
2789 save[1] = *(--sp);
2790 *(--dp) = *(--sp);
2791 *(--dp) = *(--sp);
2792 *(--dp) = *(--sp);
2793 *(--dp) = *(--sp);
2794 *(--dp) = *(--sp);
2795 *(--dp) = *(--sp);
2796 *(--dp) = save[0];
2797 *(--dp) = save[1];
2798 }
2799 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002800#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002801 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002802
Andreas Dilger47a0c421997-05-16 02:46:07 -05002803 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
2804 {
2805 /* This converts from GA to AG */
2806 if (row_info->bit_depth == 8)
2807 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002808 png_bytep sp = row + row_info->rowbytes;
2809 png_bytep dp = sp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002810 png_byte save;
2811 png_uint_32 i;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002812
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002813 for (i = 0; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002814 {
2815 save = *(--sp);
2816 *(--dp) = *(--sp);
2817 *(--dp) = save;
2818 }
2819 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002820
2821#ifdef PNG_READ_16BIT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002822 /* This converts from GGAA to AAGG */
2823 else
2824 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002825 png_bytep sp = row + row_info->rowbytes;
2826 png_bytep dp = sp;
Andreas Dilger47a0c421997-05-16 02:46:07 -05002827 png_byte save[2];
2828 png_uint_32 i;
2829
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002830 for (i = 0; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002831 {
2832 save[0] = *(--sp);
2833 save[1] = *(--sp);
2834 *(--dp) = *(--sp);
2835 *(--dp) = *(--sp);
2836 *(--dp) = save[0];
2837 *(--dp) = save[1];
2838 }
2839 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002840#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002841 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002842 }
2843}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002844#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002845
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002846#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002847void /* PRIVATE */
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002848png_do_read_invert_alpha(png_row_infop row_info, png_bytep row)
2849{
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002850 png_uint_32 row_width;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05002851 png_debug(1, "in png_do_read_invert_alpha");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05002852
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002853 row_width = row_info->width;
2854 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002855 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002856 if (row_info->bit_depth == 8)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002857 {
2858 /* This inverts the alpha channel in RGBA */
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002859 png_bytep sp = row + row_info->rowbytes;
2860 png_bytep dp = sp;
2861 png_uint_32 i;
2862
2863 for (i = 0; i < row_width; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002864 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002865 *(--dp) = (png_byte)(255 - *(--sp));
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002866
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002867/* This does nothing:
2868 *(--dp) = *(--sp);
2869 *(--dp) = *(--sp);
2870 *(--dp) = *(--sp);
2871 We can replace it with:
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002872*/
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002873 sp-=3;
2874 dp=sp;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002875 }
2876 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002877
2878#ifdef PNG_READ_16BIT_SUPPORTED
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002879 /* This inverts the alpha channel in RRGGBBAA */
2880 else
2881 {
2882 png_bytep sp = row + row_info->rowbytes;
2883 png_bytep dp = sp;
2884 png_uint_32 i;
2885
2886 for (i = 0; i < row_width; i++)
2887 {
2888 *(--dp) = (png_byte)(255 - *(--sp));
2889 *(--dp) = (png_byte)(255 - *(--sp));
2890
2891/* This does nothing:
2892 *(--dp) = *(--sp);
2893 *(--dp) = *(--sp);
2894 *(--dp) = *(--sp);
2895 *(--dp) = *(--sp);
2896 *(--dp) = *(--sp);
2897 *(--dp) = *(--sp);
2898 We can replace it with:
2899*/
2900 sp-=6;
2901 dp=sp;
2902 }
2903 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002904#endif
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002905 }
2906 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
2907 {
2908 if (row_info->bit_depth == 8)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002909 {
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002910 /* This inverts the alpha channel in GA */
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002911 png_bytep sp = row + row_info->rowbytes;
2912 png_bytep dp = sp;
2913 png_uint_32 i;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002914
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002915 for (i = 0; i < row_width; i++)
2916 {
2917 *(--dp) = (png_byte)(255 - *(--sp));
2918 *(--dp) = *(--sp);
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002919 }
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002920 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002921
2922#ifdef PNG_READ_16BIT_SUPPORTED
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002923 else
2924 {
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06002925 /* This inverts the alpha channel in GGAA */
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002926 png_bytep sp = row + row_info->rowbytes;
2927 png_bytep dp = sp;
2928 png_uint_32 i;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002929
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002930 for (i = 0; i < row_width; i++)
2931 {
2932 *(--dp) = (png_byte)(255 - *(--sp));
2933 *(--dp) = (png_byte)(255 - *(--sp));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002934/*
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002935 *(--dp) = *(--sp);
2936 *(--dp) = *(--sp);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002937*/
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002938 sp-=2;
2939 dp=sp;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002940 }
2941 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05002942#endif
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002943 }
2944}
2945#endif
2946
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05002947#ifdef PNG_READ_FILLER_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002948/* Add filler channel if we have RGB color */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002949void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06002950png_do_read_filler(png_row_infop row_info, png_bytep row,
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002951 png_uint_32 filler, png_uint_32 flags)
Guy Schalnat0d580581995-07-20 02:43:20 -05002952{
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002953 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002954 png_uint_32 row_width = row_info->width;
2955
Glenn Randers-Pehrson4554a542010-08-27 10:48:45 -05002956#ifdef PNG_READ_16BIT_SUPPORTED
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05002957 png_byte hi_filler = (png_byte)((filler>>8) & 0xff);
Glenn Randers-Pehrson4554a542010-08-27 10:48:45 -05002958#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002959 png_byte lo_filler = (png_byte)(filler & 0xff);
Andreas Dilger47a0c421997-05-16 02:46:07 -05002960
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05002961 png_debug(1, "in png_do_read_filler");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05002962
Andreas Dilger47a0c421997-05-16 02:46:07 -05002963 if (
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002964 row_info->color_type == PNG_COLOR_TYPE_GRAY)
Guy Schalnat0d580581995-07-20 02:43:20 -05002965 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05002966 if (row_info->bit_depth == 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05002967 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002968 if (flags & PNG_FLAG_FILLER_AFTER)
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002969 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002970 /* This changes the data from G to GX */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002971 png_bytep sp = row + (png_size_t)row_width;
2972 png_bytep dp = sp + (png_size_t)row_width;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002973 for (i = 1; i < row_width; i++)
2974 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002975 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002976 *(--dp) = *(--sp);
2977 }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002978 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002979 row_info->channels = 2;
2980 row_info->pixel_depth = 16;
2981 row_info->rowbytes = row_width * 2;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002982 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002983
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002984 else
2985 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06002986 /* This changes the data from G to XG */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002987 png_bytep sp = row + (png_size_t)row_width;
2988 png_bytep dp = sp + (png_size_t)row_width;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002989 for (i = 0; i < row_width; i++)
2990 {
2991 *(--dp) = *(--sp);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002992 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05002993 }
2994 row_info->channels = 2;
2995 row_info->pixel_depth = 16;
2996 row_info->rowbytes = row_width * 2;
2997 }
Guy Schalnat0d580581995-07-20 02:43:20 -05002998 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05002999
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05003000#ifdef PNG_READ_16BIT_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05003001 else if (row_info->bit_depth == 16)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003002 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003003 if (flags & PNG_FLAG_FILLER_AFTER)
3004 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003005 /* This changes the data from GG to GGXX */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05003006 png_bytep sp = row + (png_size_t)row_width * 2;
3007 png_bytep dp = sp + (png_size_t)row_width * 2;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003008 for (i = 1; i < row_width; i++)
3009 {
3010 *(--dp) = hi_filler;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003011 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003012 *(--dp) = *(--sp);
3013 *(--dp) = *(--sp);
3014 }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003015 *(--dp) = hi_filler;
3016 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003017 row_info->channels = 2;
3018 row_info->pixel_depth = 32;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003019 row_info->rowbytes = row_width * 4;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003020 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003021
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003022 else
3023 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003024 /* This changes the data from GG to XXGG */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05003025 png_bytep sp = row + (png_size_t)row_width * 2;
3026 png_bytep dp = sp + (png_size_t)row_width * 2;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003027 for (i = 0; i < row_width; i++)
3028 {
3029 *(--dp) = *(--sp);
3030 *(--dp) = *(--sp);
3031 *(--dp) = hi_filler;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003032 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003033 }
3034 row_info->channels = 2;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003035 row_info->pixel_depth = 32;
3036 row_info->rowbytes = row_width * 4;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003037 }
3038 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05003039#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003040 } /* COLOR_TYPE == GRAY */
3041 else if (row_info->color_type == PNG_COLOR_TYPE_RGB)
3042 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05003043 if (row_info->bit_depth == 8)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003044 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003045 if (flags & PNG_FLAG_FILLER_AFTER)
3046 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003047 /* This changes the data from RGB to RGBX */
Glenn Randers-Pehrsondff799e2004-08-07 21:42:49 -05003048 png_bytep sp = row + (png_size_t)row_width * 3;
3049 png_bytep dp = sp + (png_size_t)row_width;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003050 for (i = 1; i < row_width; i++)
3051 {
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003052 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003053 *(--dp) = *(--sp);
3054 *(--dp) = *(--sp);
3055 *(--dp) = *(--sp);
3056 }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003057 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003058 row_info->channels = 4;
3059 row_info->pixel_depth = 32;
3060 row_info->rowbytes = row_width * 4;
3061 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003062
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003063 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003064 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003065 /* This changes the data from RGB to XRGB */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003066 png_bytep sp = row + (png_size_t)row_width * 3;
3067 png_bytep dp = sp + (png_size_t)row_width;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003068 for (i = 0; i < row_width; i++)
3069 {
3070 *(--dp) = *(--sp);
3071 *(--dp) = *(--sp);
3072 *(--dp) = *(--sp);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003073 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003074 }
3075 row_info->channels = 4;
3076 row_info->pixel_depth = 32;
3077 row_info->rowbytes = row_width * 4;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003078 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003079 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003080
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05003081#ifdef PNG_READ_16BIT_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05003082 else if (row_info->bit_depth == 16)
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003083 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003084 if (flags & PNG_FLAG_FILLER_AFTER)
3085 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003086 /* This changes the data from RRGGBB to RRGGBBXX */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05003087 png_bytep sp = row + (png_size_t)row_width * 6;
3088 png_bytep dp = sp + (png_size_t)row_width * 2;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003089 for (i = 1; i < row_width; i++)
3090 {
3091 *(--dp) = hi_filler;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003092 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003093 *(--dp) = *(--sp);
3094 *(--dp) = *(--sp);
3095 *(--dp) = *(--sp);
3096 *(--dp) = *(--sp);
3097 *(--dp) = *(--sp);
3098 *(--dp) = *(--sp);
3099 }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003100 *(--dp) = hi_filler;
3101 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003102 row_info->channels = 4;
3103 row_info->pixel_depth = 64;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003104 row_info->rowbytes = row_width * 8;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003105 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003106
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003107 else
3108 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003109 /* This changes the data from RRGGBB to XXRRGGBB */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05003110 png_bytep sp = row + (png_size_t)row_width * 6;
3111 png_bytep dp = sp + (png_size_t)row_width * 2;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003112 for (i = 0; i < row_width; i++)
3113 {
3114 *(--dp) = *(--sp);
3115 *(--dp) = *(--sp);
3116 *(--dp) = *(--sp);
3117 *(--dp) = *(--sp);
3118 *(--dp) = *(--sp);
3119 *(--dp) = *(--sp);
3120 *(--dp) = hi_filler;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003121 *(--dp) = lo_filler;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003122 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003123
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003124 row_info->channels = 4;
3125 row_info->pixel_depth = 64;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003126 row_info->rowbytes = row_width * 8;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003127 }
3128 }
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05003129#endif
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003130 } /* COLOR_TYPE == RGB */
Guy Schalnat0d580581995-07-20 02:43:20 -05003131}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003132#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05003133
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003134#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05003135/* Expand grayscale files to RGB, with or without alpha */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05003136void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06003137png_do_gray_to_rgb(png_row_infop row_info, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -05003138{
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003139 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003140 png_uint_32 row_width = row_info->width;
Guy Schalnat6d764711995-12-19 03:22:19 -06003141
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05003142 png_debug(1, "in png_do_gray_to_rgb");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05003143
Andreas Dilger47a0c421997-05-16 02:46:07 -05003144 if (row_info->bit_depth >= 8 &&
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003145 !(row_info->color_type & PNG_COLOR_MASK_COLOR))
Guy Schalnat0d580581995-07-20 02:43:20 -05003146 {
3147 if (row_info->color_type == PNG_COLOR_TYPE_GRAY)
3148 {
3149 if (row_info->bit_depth == 8)
3150 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003151 /* This changes G to RGB */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003152 png_bytep sp = row + (png_size_t)row_width - 1;
3153 png_bytep dp = sp + (png_size_t)row_width * 2;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003154 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003155 {
3156 *(dp--) = *sp;
3157 *(dp--) = *sp;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003158 *(dp--) = *(sp--);
Guy Schalnat0d580581995-07-20 02:43:20 -05003159 }
3160 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003161
Guy Schalnat0d580581995-07-20 02:43:20 -05003162 else
3163 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003164 /* This changes GG to RRGGBB */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003165 png_bytep sp = row + (png_size_t)row_width * 2 - 1;
3166 png_bytep dp = sp + (png_size_t)row_width * 4;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003167 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003168 {
3169 *(dp--) = *sp;
3170 *(dp--) = *(sp - 1);
3171 *(dp--) = *sp;
3172 *(dp--) = *(sp - 1);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003173 *(dp--) = *(sp--);
3174 *(dp--) = *(sp--);
Guy Schalnat0d580581995-07-20 02:43:20 -05003175 }
3176 }
3177 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003178
Guy Schalnat0d580581995-07-20 02:43:20 -05003179 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
3180 {
3181 if (row_info->bit_depth == 8)
3182 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003183 /* This changes GA to RGBA */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003184 png_bytep sp = row + (png_size_t)row_width * 2 - 1;
3185 png_bytep dp = sp + (png_size_t)row_width * 2;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003186 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003187 {
3188 *(dp--) = *(sp--);
3189 *(dp--) = *sp;
3190 *(dp--) = *sp;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003191 *(dp--) = *(sp--);
Guy Schalnat0d580581995-07-20 02:43:20 -05003192 }
3193 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003194
Guy Schalnat0d580581995-07-20 02:43:20 -05003195 else
3196 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003197 /* This changes GGAA to RRGGBBAA */
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003198 png_bytep sp = row + (png_size_t)row_width * 4 - 1;
3199 png_bytep dp = sp + (png_size_t)row_width * 4;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003200 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003201 {
3202 *(dp--) = *(sp--);
3203 *(dp--) = *(sp--);
3204 *(dp--) = *sp;
3205 *(dp--) = *(sp - 1);
3206 *(dp--) = *sp;
3207 *(dp--) = *(sp - 1);
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05003208 *(dp--) = *(sp--);
3209 *(dp--) = *(sp--);
Guy Schalnat0d580581995-07-20 02:43:20 -05003210 }
3211 }
3212 }
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05003213 row_info->channels = (png_byte)(row_info->channels + 2);
Guy Schalnat0d580581995-07-20 02:43:20 -05003214 row_info->color_type |= PNG_COLOR_MASK_COLOR;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003215 row_info->pixel_depth = (png_byte)(row_info->channels *
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003216 row_info->bit_depth);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05003217 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
Guy Schalnat0d580581995-07-20 02:43:20 -05003218 }
3219}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003220#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05003221
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003222#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05003223/* Reduce RGB files to grayscale, with or without alpha
Glenn Randers-Pehrson99ffac02011-07-29 12:22:38 -05003224 * using the equation given in Poynton's ColorFAQ of 1998-01-04 at
3225 * <http://www.inforamp.net/~poynton/> (THIS LINK IS DEAD June 2008 but
3226 * versions dated 1998 through November 2002 have been archived at
3227 * http://web.archive.org/web/20000816232553/http://www.inforamp.net/
3228 * ~poynton/notes/colour_and_gamma/ColorFAQ.txt )
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -05003229 * Charles Poynton poynton at poynton.com
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003230 *
3231 * Y = 0.212671 * R + 0.715160 * G + 0.072169 * B
3232 *
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003233 * which can be expressed with integers as
3234 *
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06003235 * Y = (6969 * R + 23434 * G + 2365 * B)/32768
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003236 *
Glenn Randers-Pehrson99ffac02011-07-29 12:22:38 -05003237 * Poynton's current link (as of January 2003 through July 2011):
3238 * <http://www.poynton.com/notes/colour_and_gamma/>
3239 * has changed the numbers slightly:
3240 *
3241 * Y = 0.2126*R + 0.7152*G + 0.0722*B
3242 *
3243 * which can be expressed with integers as
3244 *
3245 * Y = (6966 * R + 23436 * G + 2366 * B)/32768
3246 *
John Bowler736f40f2011-08-25 16:19:44 -05003247 * Historically, however, libpng uses numbers derived from the ITU-R Rec 709
3248 * end point chromaticities and the D65 white point. Depending on the
3249 * precision used for the D65 white point this produces a variety of different
3250 * numbers, however if the four decimal place value used in ITU-R Rec 709 is
3251 * used (0.3127,0.3290) the Y calculation would be:
3252 *
3253 * Y = (6968 * R + 23435 * G + 2366 * B)/32768
3254 *
3255 * While this is correct the rounding results in an overflow for white, because
3256 * the sum of the rounded coefficients is 32769, not 32768. Consequently
3257 * libpng uses, instead, the closest non-overflowing approximation:
Glenn Randers-Pehrson99ffac02011-07-29 12:22:38 -05003258 *
3259 * Y = (6968 * R + 23434 * G + 2366 * B)/32768
3260 *
John Bowler736f40f2011-08-25 16:19:44 -05003261 * Starting with libpng-1.5.5, if the image being converted has a cHRM chunk
3262 * (including an sRGB chunk) then the chromaticities are used to calculate the
3263 * coefficients. See the chunk handling in pngrutil.c for more information.
Glenn Randers-Pehrson0bc79772011-08-11 09:01:57 -05003264 *
John Bowler736f40f2011-08-25 16:19:44 -05003265 * In all cases the calculation is to be done in a linear colorspace. If no
3266 * gamma information is available to correct the encoding of the original RGB
3267 * values this results in an implicit assumption that the original PNG RGB
3268 * values were linear.
Glenn Randers-Pehrson0bc79772011-08-11 09:01:57 -05003269 *
John Bowler736f40f2011-08-25 16:19:44 -05003270 * Other integer coefficents can be used via png_set_rgb_to_gray(). Because
3271 * the API takes just red and green coefficients the blue coefficient is
3272 * calculated to make the sum 32768. This will result in different rounding
3273 * to that used above.
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003274 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05003275int /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06003276png_do_rgb_to_gray(png_structrp png_ptr, png_row_infop row_info, png_bytep row)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003277
3278{
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003279 int rgb_error = 0;
3280
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05003281 png_debug(1, "in png_do_rgb_to_gray");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05003282
John Bowlera96117f2011-01-08 14:41:25 -06003283 if (!(row_info->color_type & PNG_COLOR_MASK_PALETTE) &&
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003284 (row_info->color_type & PNG_COLOR_MASK_COLOR))
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003285 {
John Bowler736f40f2011-08-25 16:19:44 -05003286 PNG_CONST png_uint_32 rc = png_ptr->rgb_to_gray_red_coeff;
3287 PNG_CONST png_uint_32 gc = png_ptr->rgb_to_gray_green_coeff;
3288 PNG_CONST png_uint_32 bc = 32768 - rc - gc;
3289 PNG_CONST png_uint_32 row_width = row_info->width;
3290 PNG_CONST int have_alpha =
3291 (row_info->color_type & PNG_COLOR_MASK_ALPHA) != 0;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003292
John Bowler736f40f2011-08-25 16:19:44 -05003293 if (row_info->bit_depth == 8)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003294 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003295#ifdef PNG_READ_GAMMA_SUPPORTED
John Bowler736f40f2011-08-25 16:19:44 -05003296 /* Notice that gamma to/from 1 are not necessarily inverses (if
3297 * there is an overall gamma correction). Prior to 1.5.5 this code
3298 * checked the linearized values for equality; this doesn't match
3299 * the documentation, the original values must be checked.
3300 */
3301 if (png_ptr->gamma_from_1 != NULL && png_ptr->gamma_to_1 != NULL)
3302 {
3303 png_bytep sp = row;
3304 png_bytep dp = row;
3305 png_uint_32 i;
3306
3307 for (i = 0; i < row_width; i++)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003308 {
John Bowler736f40f2011-08-25 16:19:44 -05003309 png_byte red = *(sp++);
3310 png_byte green = *(sp++);
3311 png_byte blue = *(sp++);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003312
John Bowler736f40f2011-08-25 16:19:44 -05003313 if (red != green || red != blue)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003314 {
John Bowler736f40f2011-08-25 16:19:44 -05003315 red = png_ptr->gamma_to_1[red];
3316 green = png_ptr->gamma_to_1[green];
3317 blue = png_ptr->gamma_to_1[blue];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003318
John Bowler736f40f2011-08-25 16:19:44 -05003319 rgb_error |= 1;
3320 *(dp++) = png_ptr->gamma_from_1[
3321 (rc*red + gc*green + bc*blue + 16384)>>15];
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003322 }
John Bowler736f40f2011-08-25 16:19:44 -05003323
3324 else
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003325 {
John Bowler736f40f2011-08-25 16:19:44 -05003326 /* If there is no overall correction the table will not be
3327 * set.
3328 */
3329 if (png_ptr->gamma_table != NULL)
3330 red = png_ptr->gamma_table[red];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003331
John Bowler736f40f2011-08-25 16:19:44 -05003332 *(dp++) = red;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003333 }
John Bowler736f40f2011-08-25 16:19:44 -05003334
3335 if (have_alpha)
3336 *(dp++) = *(sp++);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003337 }
3338 }
John Bowler736f40f2011-08-25 16:19:44 -05003339 else
3340#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003341 {
John Bowler736f40f2011-08-25 16:19:44 -05003342 png_bytep sp = row;
3343 png_bytep dp = row;
3344 png_uint_32 i;
3345
3346 for (i = 0; i < row_width; i++)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003347 {
John Bowler736f40f2011-08-25 16:19:44 -05003348 png_byte red = *(sp++);
3349 png_byte green = *(sp++);
3350 png_byte blue = *(sp++);
3351
3352 if (red != green || red != blue)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003353 {
John Bowler736f40f2011-08-25 16:19:44 -05003354 rgb_error |= 1;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003355 /* NOTE: this is the historical approach which simply
John Bowler736f40f2011-08-25 16:19:44 -05003356 * truncates the results.
3357 */
3358 *(dp++) = (png_byte)((rc*red + gc*green + bc*blue)>>15);
3359 }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003360
John Bowler736f40f2011-08-25 16:19:44 -05003361 else
3362 *(dp++) = red;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003363
John Bowler736f40f2011-08-25 16:19:44 -05003364 if (have_alpha)
3365 *(dp++) = *(sp++);
3366 }
3367 }
3368 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003369
John Bowler736f40f2011-08-25 16:19:44 -05003370 else /* RGB bit_depth == 16 */
3371 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003372#ifdef PNG_READ_GAMMA_SUPPORTED
John Bowler736f40f2011-08-25 16:19:44 -05003373 if (png_ptr->gamma_16_to_1 != NULL && png_ptr->gamma_16_from_1 != NULL)
3374 {
3375 png_bytep sp = row;
3376 png_bytep dp = row;
3377 png_uint_32 i;
3378
3379 for (i = 0; i < row_width; i++)
3380 {
3381 png_uint_16 red, green, blue, w;
3382
3383 red = (png_uint_16)(((*(sp))<<8) | *(sp + 1)); sp += 2;
3384 green = (png_uint_16)(((*(sp))<<8) | *(sp + 1)); sp += 2;
3385 blue = (png_uint_16)(((*(sp))<<8) | *(sp + 1)); sp += 2;
3386
3387 if (red == green && red == blue)
3388 {
3389 if (png_ptr->gamma_16_table != NULL)
3390 w = png_ptr->gamma_16_table[(red&0xff)
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003391 >> png_ptr->gamma_shift][red>>8];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003392
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003393 else
John Bowler736f40f2011-08-25 16:19:44 -05003394 w = red;
3395 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003396
John Bowler736f40f2011-08-25 16:19:44 -05003397 else
3398 {
3399 png_uint_16 red_1 = png_ptr->gamma_16_to_1[(red&0xff)
3400 >> png_ptr->gamma_shift][red>>8];
3401 png_uint_16 green_1 =
3402 png_ptr->gamma_16_to_1[(green&0xff) >>
3403 png_ptr->gamma_shift][green>>8];
3404 png_uint_16 blue_1 = png_ptr->gamma_16_to_1[(blue&0xff)
3405 >> png_ptr->gamma_shift][blue>>8];
3406 png_uint_16 gray16 = (png_uint_16)((rc*red_1 + gc*green_1
3407 + bc*blue_1 + 16384)>>15);
3408 w = png_ptr->gamma_16_from_1[(gray16&0xff) >>
3409 png_ptr->gamma_shift][gray16 >> 8];
3410 rgb_error |= 1;
3411 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003412
John Bowler736f40f2011-08-25 16:19:44 -05003413 *(dp++) = (png_byte)((w>>8) & 0xff);
3414 *(dp++) = (png_byte)(w & 0xff);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003415
John Bowler736f40f2011-08-25 16:19:44 -05003416 if (have_alpha)
3417 {
3418 *(dp++) = *(sp++);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003419 *(dp++) = *(sp++);
3420 }
3421 }
John Bowler736f40f2011-08-25 16:19:44 -05003422 }
3423 else
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003424#endif
John Bowler736f40f2011-08-25 16:19:44 -05003425 {
3426 png_bytep sp = row;
3427 png_bytep dp = row;
3428 png_uint_32 i;
3429
3430 for (i = 0; i < row_width; i++)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003431 {
John Bowler736f40f2011-08-25 16:19:44 -05003432 png_uint_16 red, green, blue, gray16;
3433
3434 red = (png_uint_16)(((*(sp))<<8) | *(sp + 1)); sp += 2;
3435 green = (png_uint_16)(((*(sp))<<8) | *(sp + 1)); sp += 2;
3436 blue = (png_uint_16)(((*(sp))<<8) | *(sp + 1)); sp += 2;
3437
3438 if (red != green || red != blue)
3439 rgb_error |= 1;
3440
Glenn Randers-Pehrsonefc4b692011-11-07 23:31:34 -06003441 /* From 1.5.5 in the 16 bit case do the accurate conversion even
John Bowler736f40f2011-08-25 16:19:44 -05003442 * in the 'fast' case - this is because this is where the code
3443 * ends up when handling linear 16 bit data.
3444 */
3445 gray16 = (png_uint_16)((rc*red + gc*green + bc*blue + 16384) >>
3446 15);
3447 *(dp++) = (png_byte)((gray16>>8) & 0xff);
3448 *(dp++) = (png_byte)(gray16 & 0xff);
3449
3450 if (have_alpha)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003451 {
John Bowler736f40f2011-08-25 16:19:44 -05003452 *(dp++) = *(sp++);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003453 *(dp++) = *(sp++);
3454 }
3455 }
3456 }
3457 }
John Bowler736f40f2011-08-25 16:19:44 -05003458
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -05003459 row_info->channels = (png_byte)(row_info->channels - 2);
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05003460 row_info->color_type = (png_byte)(row_info->color_type &
3461 ~PNG_COLOR_MASK_COLOR);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003462 row_info->pixel_depth = (png_byte)(row_info->channels *
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003463 row_info->bit_depth);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05003464 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003465 }
3466 return rgb_error;
3467}
3468#endif
John Bowler4a12f4a2011-04-17 18:34:22 -05003469#endif /* PNG_READ_TRANSFORMS_SUPPORTED */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06003470
John Bowler4a12f4a2011-04-17 18:34:22 -05003471#ifdef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003472/* Build a grayscale palette. Palette is assumed to be 1 << bit_depth
3473 * large of png_color. This lets grayscale images be treated as
3474 * paletted. Most useful for gamma correction and simplification
John Bowler4a12f4a2011-04-17 18:34:22 -05003475 * of code. This API is not used internally.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003476 */
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -06003477void PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -06003478png_build_grayscale_palette(int bit_depth, png_colorp palette)
Guy Schalnat0d580581995-07-20 02:43:20 -05003479{
3480 int num_palette;
3481 int color_inc;
3482 int i;
3483 int v;
3484
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05003485 png_debug(1, "in png_do_build_grayscale_palette");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05003486
Andreas Dilger47a0c421997-05-16 02:46:07 -05003487 if (palette == NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05003488 return;
3489
3490 switch (bit_depth)
3491 {
3492 case 1:
3493 num_palette = 2;
3494 color_inc = 0xff;
3495 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003496
Guy Schalnat0d580581995-07-20 02:43:20 -05003497 case 2:
3498 num_palette = 4;
3499 color_inc = 0x55;
3500 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003501
Guy Schalnat0d580581995-07-20 02:43:20 -05003502 case 4:
3503 num_palette = 16;
3504 color_inc = 0x11;
3505 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003506
Guy Schalnat0d580581995-07-20 02:43:20 -05003507 case 8:
3508 num_palette = 256;
3509 color_inc = 1;
3510 break;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003511
Guy Schalnat0d580581995-07-20 02:43:20 -05003512 default:
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003513 num_palette = 0;
Guy Schalnat69b14481996-01-10 02:56:49 -06003514 color_inc = 0;
Guy Schalnat0d580581995-07-20 02:43:20 -05003515 break;
3516 }
3517
3518 for (i = 0, v = 0; i < num_palette; i++, v += color_inc)
3519 {
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003520 palette[i].red = (png_byte)v;
3521 palette[i].green = (png_byte)v;
3522 palette[i].blue = (png_byte)v;
Guy Schalnat0d580581995-07-20 02:43:20 -05003523 }
3524}
John Bowler4a12f4a2011-04-17 18:34:22 -05003525#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05003526
Guy Schalnat0d580581995-07-20 02:43:20 -05003527
John Bowler4a12f4a2011-04-17 18:34:22 -05003528#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003529#if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
3530 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05003531/* Replace any alpha or transparency with the supplied background color.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003532 * "background" is already in the screen gamma, while "background_1" is
3533 * at a gamma of 1.0. Paletted files have already been taken care of.
3534 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05003535void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06003536png_do_compose(png_row_infop row_info, png_bytep row, png_structrp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05003537{
John Bowler4a12f4a2011-04-17 18:34:22 -05003538#ifdef PNG_READ_GAMMA_SUPPORTED
3539 png_const_bytep gamma_table = png_ptr->gamma_table;
3540 png_const_bytep gamma_from_1 = png_ptr->gamma_from_1;
3541 png_const_bytep gamma_to_1 = png_ptr->gamma_to_1;
3542 png_const_uint_16pp gamma_16 = png_ptr->gamma_16_table;
3543 png_const_uint_16pp gamma_16_from_1 = png_ptr->gamma_16_from_1;
3544 png_const_uint_16pp gamma_16_to_1 = png_ptr->gamma_16_to_1;
3545 int gamma_shift = png_ptr->gamma_shift;
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003546 int optimize = (png_ptr->flags & PNG_FLAG_OPTIMIZE_ALPHA) != 0;
John Bowler4a12f4a2011-04-17 18:34:22 -05003547#endif
3548
John Bowlerd273ad22011-05-07 21:00:28 -05003549 png_bytep sp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003550 png_uint_32 i;
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003551 png_uint_32 row_width = row_info->width;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003552 int shift;
Guy Schalnate5a37791996-06-05 15:50:50 -05003553
John Bowlerd273ad22011-05-07 21:00:28 -05003554 png_debug(1, "in png_do_compose");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05003555
Guy Schalnat0d580581995-07-20 02:43:20 -05003556 {
3557 switch (row_info->color_type)
3558 {
3559 case PNG_COLOR_TYPE_GRAY:
3560 {
3561 switch (row_info->bit_depth)
3562 {
3563 case 1:
3564 {
Guy Schalnat0d580581995-07-20 02:43:20 -05003565 sp = row;
3566 shift = 7;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003567 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003568 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06003569 if ((png_uint_16)((*sp >> shift) & 0x01)
John Bowler4a12f4a2011-04-17 18:34:22 -05003570 == png_ptr->trans_color.gray)
Guy Schalnat0d580581995-07-20 02:43:20 -05003571 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003572 unsigned int tmp = *sp & (0x7f7f >> (7 - shift));
3573 tmp |= png_ptr->background.gray << shift;
3574 *sp = (png_byte)(tmp & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05003575 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003576
Guy Schalnat0d580581995-07-20 02:43:20 -05003577 if (!shift)
3578 {
3579 shift = 7;
3580 sp++;
3581 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003582
Guy Schalnat0d580581995-07-20 02:43:20 -05003583 else
3584 shift--;
3585 }
3586 break;
3587 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003588
Guy Schalnat0d580581995-07-20 02:43:20 -05003589 case 2:
3590 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003591#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003592 if (gamma_table != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05003593 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003594 sp = row;
3595 shift = 6;
3596 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003597 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06003598 if ((png_uint_16)((*sp >> shift) & 0x03)
John Bowler4a12f4a2011-04-17 18:34:22 -05003599 == png_ptr->trans_color.gray)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003600 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003601 unsigned int tmp = *sp & (0x3f3f >> (6 - shift));
3602 tmp |= png_ptr->background.gray << shift;
3603 *sp = (png_byte)(tmp & 0xff);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003604 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003605
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003606 else
3607 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003608 unsigned int p = (*sp >> shift) & 0x03;
3609 unsigned int g = (gamma_table [p | (p << 2) |
3610 (p << 4) | (p << 6)] >> 6) & 0x03;
3611 unsigned int tmp = *sp & (0x3f3f >> (6 - shift));
3612 tmp |= g << shift;
3613 *sp = (png_byte)(tmp & 0xff);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003614 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003615
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003616 if (!shift)
3617 {
3618 shift = 6;
3619 sp++;
3620 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003621
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003622 else
3623 shift -= 2;
Guy Schalnat0d580581995-07-20 02:43:20 -05003624 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003625 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003626
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003627 else
3628#endif
3629 {
3630 sp = row;
3631 shift = 6;
3632 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003633 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06003634 if ((png_uint_16)((*sp >> shift) & 0x03)
John Bowler4a12f4a2011-04-17 18:34:22 -05003635 == png_ptr->trans_color.gray)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003636 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003637 unsigned int tmp = *sp & (0x3f3f >> (6 - shift));
3638 tmp |= png_ptr->background.gray << shift;
3639 *sp = (png_byte)(tmp & 0xff);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003640 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003641
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003642 if (!shift)
3643 {
3644 shift = 6;
3645 sp++;
3646 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003647
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003648 else
3649 shift -= 2;
Guy Schalnat0d580581995-07-20 02:43:20 -05003650 }
Guy Schalnat0d580581995-07-20 02:43:20 -05003651 }
3652 break;
3653 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003654
Guy Schalnat0d580581995-07-20 02:43:20 -05003655 case 4:
3656 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003657#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003658 if (gamma_table != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05003659 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003660 sp = row;
3661 shift = 4;
3662 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003663 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06003664 if ((png_uint_16)((*sp >> shift) & 0x0f)
John Bowler4a12f4a2011-04-17 18:34:22 -05003665 == png_ptr->trans_color.gray)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003666 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003667 unsigned int tmp = *sp & (0xf0f >> (4 - shift));
3668 tmp |= png_ptr->background.gray << shift;
3669 *sp = (png_byte)(tmp & 0xff);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003670 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003671
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003672 else
3673 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003674 unsigned int p = (*sp >> shift) & 0x0f;
3675 unsigned int g = (gamma_table[p | (p << 4)] >> 4) &
3676 0x0f;
3677 unsigned int tmp = *sp & (0xf0f >> (4 - shift));
3678 tmp |= g << shift;
3679 *sp = (png_byte)(tmp & 0xff);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003680 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003681
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003682 if (!shift)
3683 {
3684 shift = 4;
3685 sp++;
3686 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003687
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003688 else
3689 shift -= 4;
Guy Schalnat0d580581995-07-20 02:43:20 -05003690 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003691 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003692
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003693 else
3694#endif
3695 {
3696 sp = row;
3697 shift = 4;
3698 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003699 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06003700 if ((png_uint_16)((*sp >> shift) & 0x0f)
John Bowler4a12f4a2011-04-17 18:34:22 -05003701 == png_ptr->trans_color.gray)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003702 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003703 unsigned int tmp = *sp & (0xf0f >> (4 - shift));
3704 tmp |= png_ptr->background.gray << shift;
3705 *sp = (png_byte)(tmp & 0xff);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003706 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003707
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003708 if (!shift)
3709 {
3710 shift = 4;
3711 sp++;
3712 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003713
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05003714 else
3715 shift -= 4;
Guy Schalnat0d580581995-07-20 02:43:20 -05003716 }
Guy Schalnat0d580581995-07-20 02:43:20 -05003717 }
3718 break;
3719 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003720
Guy Schalnat0d580581995-07-20 02:43:20 -05003721 case 8:
3722 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003723#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05003724 if (gamma_table != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05003725 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003726 sp = row;
3727 for (i = 0; i < row_width; i++, sp++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003728 {
John Bowler4a12f4a2011-04-17 18:34:22 -05003729 if (*sp == png_ptr->trans_color.gray)
3730 *sp = (png_byte)png_ptr->background.gray;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06003731
Guy Schalnat0d580581995-07-20 02:43:20 -05003732 else
Guy Schalnat0d580581995-07-20 02:43:20 -05003733 *sp = gamma_table[*sp];
Guy Schalnat0d580581995-07-20 02:43:20 -05003734 }
3735 }
3736 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003737#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05003738 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003739 sp = row;
3740 for (i = 0; i < row_width; i++, sp++)
Guy Schalnat0d580581995-07-20 02:43:20 -05003741 {
John Bowler4a12f4a2011-04-17 18:34:22 -05003742 if (*sp == png_ptr->trans_color.gray)
3743 *sp = (png_byte)png_ptr->background.gray;
Guy Schalnat0d580581995-07-20 02:43:20 -05003744 }
3745 }
3746 break;
3747 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003748
Guy Schalnat0d580581995-07-20 02:43:20 -05003749 case 16:
3750 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003751#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05003752 if (gamma_16 != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05003753 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003754 sp = row;
3755 for (i = 0; i < row_width; i++, sp += 2)
Guy Schalnat0d580581995-07-20 02:43:20 -05003756 {
3757 png_uint_16 v;
3758
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05003759 v = (png_uint_16)(((*sp) << 8) + *(sp + 1));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003760
John Bowler4a12f4a2011-04-17 18:34:22 -05003761 if (v == png_ptr->trans_color.gray)
Guy Schalnat0d580581995-07-20 02:43:20 -05003762 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003763 /* Background is already in screen gamma */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003764 *sp = (png_byte)((png_ptr->background.gray >> 8)
3765 & 0xff);
3766 *(sp + 1) = (png_byte)(png_ptr->background.gray
3767 & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05003768 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003769
Guy Schalnat0d580581995-07-20 02:43:20 -05003770 else
3771 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05003772 v = gamma_16[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003773 *sp = (png_byte)((v >> 8) & 0xff);
Guy Schalnat4ee97b01996-01-16 01:51:56 -06003774 *(sp + 1) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05003775 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003776 }
Guy Schalnat0d580581995-07-20 02:43:20 -05003777 }
3778 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003779#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05003780 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003781 sp = row;
3782 for (i = 0; i < row_width; i++, sp += 2)
Guy Schalnat0d580581995-07-20 02:43:20 -05003783 {
3784 png_uint_16 v;
3785
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05003786 v = (png_uint_16)(((*sp) << 8) + *(sp + 1));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003787
John Bowler4a12f4a2011-04-17 18:34:22 -05003788 if (v == png_ptr->trans_color.gray)
Guy Schalnat0d580581995-07-20 02:43:20 -05003789 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003790 *sp = (png_byte)((png_ptr->background.gray >> 8)
3791 & 0xff);
3792 *(sp + 1) = (png_byte)(png_ptr->background.gray
3793 & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05003794 }
3795 }
3796 }
3797 break;
3798 }
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06003799
3800 default:
3801 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05003802 }
3803 break;
3804 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003805
Guy Schalnat0d580581995-07-20 02:43:20 -05003806 case PNG_COLOR_TYPE_RGB:
3807 {
3808 if (row_info->bit_depth == 8)
3809 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003810#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05003811 if (gamma_table != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05003812 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003813 sp = row;
3814 for (i = 0; i < row_width; i++, sp += 3)
Guy Schalnat0d580581995-07-20 02:43:20 -05003815 {
John Bowler4a12f4a2011-04-17 18:34:22 -05003816 if (*sp == png_ptr->trans_color.red &&
3817 *(sp + 1) == png_ptr->trans_color.green &&
3818 *(sp + 2) == png_ptr->trans_color.blue)
Guy Schalnat0d580581995-07-20 02:43:20 -05003819 {
John Bowler4a12f4a2011-04-17 18:34:22 -05003820 *sp = (png_byte)png_ptr->background.red;
3821 *(sp + 1) = (png_byte)png_ptr->background.green;
3822 *(sp + 2) = (png_byte)png_ptr->background.blue;
Guy Schalnat0d580581995-07-20 02:43:20 -05003823 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003824
Guy Schalnat0d580581995-07-20 02:43:20 -05003825 else
3826 {
3827 *sp = gamma_table[*sp];
3828 *(sp + 1) = gamma_table[*(sp + 1)];
3829 *(sp + 2) = gamma_table[*(sp + 2)];
3830 }
3831 }
3832 }
3833 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003834#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05003835 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003836 sp = row;
3837 for (i = 0; i < row_width; i++, sp += 3)
Guy Schalnat0d580581995-07-20 02:43:20 -05003838 {
John Bowler4a12f4a2011-04-17 18:34:22 -05003839 if (*sp == png_ptr->trans_color.red &&
3840 *(sp + 1) == png_ptr->trans_color.green &&
3841 *(sp + 2) == png_ptr->trans_color.blue)
Guy Schalnat0d580581995-07-20 02:43:20 -05003842 {
John Bowler4a12f4a2011-04-17 18:34:22 -05003843 *sp = (png_byte)png_ptr->background.red;
3844 *(sp + 1) = (png_byte)png_ptr->background.green;
3845 *(sp + 2) = (png_byte)png_ptr->background.blue;
Guy Schalnat0d580581995-07-20 02:43:20 -05003846 }
3847 }
3848 }
3849 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05003850 else /* if (row_info->bit_depth == 16) */
Guy Schalnat0d580581995-07-20 02:43:20 -05003851 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003852#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05003853 if (gamma_16 != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05003854 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003855 sp = row;
3856 for (i = 0; i < row_width; i++, sp += 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003857 {
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05003858 png_uint_16 r = (png_uint_16)(((*sp) << 8) + *(sp + 1));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003859
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003860 png_uint_16 g = (png_uint_16)(((*(sp + 2)) << 8)
3861 + *(sp + 3));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003862
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003863 png_uint_16 b = (png_uint_16)(((*(sp + 4)) << 8)
3864 + *(sp + 5));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003865
John Bowler4a12f4a2011-04-17 18:34:22 -05003866 if (r == png_ptr->trans_color.red &&
3867 g == png_ptr->trans_color.green &&
3868 b == png_ptr->trans_color.blue)
Guy Schalnat0d580581995-07-20 02:43:20 -05003869 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003870 /* Background is already in screen gamma */
John Bowler4a12f4a2011-04-17 18:34:22 -05003871 *sp = (png_byte)((png_ptr->background.red >> 8) & 0xff);
3872 *(sp + 1) = (png_byte)(png_ptr->background.red & 0xff);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003873 *(sp + 2) = (png_byte)((png_ptr->background.green >> 8)
3874 & 0xff);
3875 *(sp + 3) = (png_byte)(png_ptr->background.green
3876 & 0xff);
3877 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
3878 & 0xff);
John Bowler4a12f4a2011-04-17 18:34:22 -05003879 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05003880 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003881
Guy Schalnat0d580581995-07-20 02:43:20 -05003882 else
3883 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003884 png_uint_16 v = gamma_16[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003885 *sp = (png_byte)((v >> 8) & 0xff);
Guy Schalnat4ee97b01996-01-16 01:51:56 -06003886 *(sp + 1) = (png_byte)(v & 0xff);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003887
Andreas Dilger47a0c421997-05-16 02:46:07 -05003888 v = gamma_16[*(sp + 3) >> gamma_shift][*(sp + 2)];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003889 *(sp + 2) = (png_byte)((v >> 8) & 0xff);
3890 *(sp + 3) = (png_byte)(v & 0xff);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003891
Andreas Dilger47a0c421997-05-16 02:46:07 -05003892 v = gamma_16[*(sp + 5) >> gamma_shift][*(sp + 4)];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003893 *(sp + 4) = (png_byte)((v >> 8) & 0xff);
3894 *(sp + 5) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05003895 }
3896 }
3897 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003898
Guy Schalnat0d580581995-07-20 02:43:20 -05003899 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003900#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05003901 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003902 sp = row;
3903 for (i = 0; i < row_width; i++, sp += 6)
Guy Schalnat0d580581995-07-20 02:43:20 -05003904 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003905 png_uint_16 r = (png_uint_16)(((*sp) << 8) + *(sp + 1));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003906
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003907 png_uint_16 g = (png_uint_16)(((*(sp + 2)) << 8)
3908 + *(sp + 3));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003909
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003910 png_uint_16 b = (png_uint_16)(((*(sp + 4)) << 8)
3911 + *(sp + 5));
Guy Schalnat0d580581995-07-20 02:43:20 -05003912
John Bowler4a12f4a2011-04-17 18:34:22 -05003913 if (r == png_ptr->trans_color.red &&
3914 g == png_ptr->trans_color.green &&
3915 b == png_ptr->trans_color.blue)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003916 {
John Bowler4a12f4a2011-04-17 18:34:22 -05003917 *sp = (png_byte)((png_ptr->background.red >> 8) & 0xff);
3918 *(sp + 1) = (png_byte)(png_ptr->background.red & 0xff);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003919 *(sp + 2) = (png_byte)((png_ptr->background.green >> 8)
3920 & 0xff);
3921 *(sp + 3) = (png_byte)(png_ptr->background.green
3922 & 0xff);
3923 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
3924 & 0xff);
John Bowler4a12f4a2011-04-17 18:34:22 -05003925 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003926 }
3927 }
3928 }
3929 }
3930 break;
3931 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003932
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06003933 case PNG_COLOR_TYPE_GRAY_ALPHA:
Guy Schalnat0d580581995-07-20 02:43:20 -05003934 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05003935 if (row_info->bit_depth == 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05003936 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003937#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05003938 if (gamma_to_1 != NULL && gamma_from_1 != NULL &&
3939 gamma_table != NULL)
3940 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003941 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05003942 for (i = 0; i < row_width; i++, sp += 2)
Guy Schalnat0d580581995-07-20 02:43:20 -05003943 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003944 png_uint_16 a = *(sp + 1);
Andreas Dilger47a0c421997-05-16 02:46:07 -05003945
Andreas Dilger47a0c421997-05-16 02:46:07 -05003946 if (a == 0xff)
John Bowlerd273ad22011-05-07 21:00:28 -05003947 *sp = gamma_table[*sp];
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06003948
Andreas Dilger47a0c421997-05-16 02:46:07 -05003949 else if (a == 0)
3950 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05003951 /* Background is already in screen gamma */
John Bowlerd273ad22011-05-07 21:00:28 -05003952 *sp = (png_byte)png_ptr->background.gray;
Andreas Dilger47a0c421997-05-16 02:46:07 -05003953 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05003954
Andreas Dilger47a0c421997-05-16 02:46:07 -05003955 else
3956 {
3957 png_byte v, w;
Guy Schalnat0d580581995-07-20 02:43:20 -05003958
Andreas Dilger47a0c421997-05-16 02:46:07 -05003959 v = gamma_to_1[*sp];
John Bowler4a12f4a2011-04-17 18:34:22 -05003960 png_composite(w, v, a, png_ptr->background_1.gray);
John Bowlerd273ad22011-05-07 21:00:28 -05003961 if (!optimize)
3962 w = gamma_from_1[w];
3963 *sp = w;
Guy Schalnat0d580581995-07-20 02:43:20 -05003964 }
3965 }
Guy Schalnat0d580581995-07-20 02:43:20 -05003966 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05003967 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05003968#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05003969 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003970 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05003971 for (i = 0; i < row_width; i++, sp += 2)
Guy Schalnat0d580581995-07-20 02:43:20 -05003972 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05003973 png_byte a = *(sp + 1);
Andreas Dilger47a0c421997-05-16 02:46:07 -05003974
John Bowlerd273ad22011-05-07 21:00:28 -05003975 if (a == 0)
3976 *sp = (png_byte)png_ptr->background.gray;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06003977
John Bowlerd273ad22011-05-07 21:00:28 -05003978 else if (a < 0xff)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06003979 png_composite(*sp, *sp, a, png_ptr->background.gray);
Guy Schalnat0d580581995-07-20 02:43:20 -05003980 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05003981 }
3982 }
3983 else /* if (png_ptr->bit_depth == 16) */
3984 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05003985#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05003986 if (gamma_16 != NULL && gamma_16_from_1 != NULL &&
3987 gamma_16_to_1 != NULL)
3988 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05003989 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05003990 for (i = 0; i < row_width; i++, sp += 4)
Andreas Dilger47a0c421997-05-16 02:46:07 -05003991 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06003992 png_uint_16 a = (png_uint_16)(((*(sp + 2)) << 8)
3993 + *(sp + 3));
Andreas Dilger47a0c421997-05-16 02:46:07 -05003994
Andreas Dilger47a0c421997-05-16 02:46:07 -05003995 if (a == (png_uint_16)0xffff)
3996 {
3997 png_uint_16 v;
3998
3999 v = gamma_16[*(sp + 1) >> gamma_shift][*sp];
John Bowlerd273ad22011-05-07 21:00:28 -05004000 *sp = (png_byte)((v >> 8) & 0xff);
4001 *(sp + 1) = (png_byte)(v & 0xff);
Andreas Dilger47a0c421997-05-16 02:46:07 -05004002 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004003
Andreas Dilger47a0c421997-05-16 02:46:07 -05004004 else if (a == 0)
4005 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004006 /* Background is already in screen gamma */
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004007 *sp = (png_byte)((png_ptr->background.gray >> 8)
4008 & 0xff);
John Bowlerd273ad22011-05-07 21:00:28 -05004009 *(sp + 1) = (png_byte)(png_ptr->background.gray & 0xff);
Andreas Dilger47a0c421997-05-16 02:46:07 -05004010 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004011
Andreas Dilger47a0c421997-05-16 02:46:07 -05004012 else
4013 {
4014 png_uint_16 g, v, w;
4015
4016 g = gamma_16_to_1[*(sp + 1) >> gamma_shift][*sp];
John Bowler4a12f4a2011-04-17 18:34:22 -05004017 png_composite_16(v, g, a, png_ptr->background_1.gray);
John Bowlerd273ad22011-05-07 21:00:28 -05004018 if (optimize)
4019 w = v;
4020 else
4021 w = gamma_16_from_1[(v&0xff) >> gamma_shift][v >> 8];
4022 *sp = (png_byte)((w >> 8) & 0xff);
4023 *(sp + 1) = (png_byte)(w & 0xff);
Andreas Dilger47a0c421997-05-16 02:46:07 -05004024 }
4025 }
4026 }
4027 else
4028#endif
4029 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004030 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05004031 for (i = 0; i < row_width; i++, sp += 4)
Andreas Dilger47a0c421997-05-16 02:46:07 -05004032 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06004033 png_uint_16 a = (png_uint_16)(((*(sp + 2)) << 8)
4034 + *(sp + 3));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004035
John Bowlerd273ad22011-05-07 21:00:28 -05004036 if (a == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -05004037 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004038 *sp = (png_byte)((png_ptr->background.gray >> 8)
4039 & 0xff);
John Bowlerd273ad22011-05-07 21:00:28 -05004040 *(sp + 1) = (png_byte)(png_ptr->background.gray & 0xff);
Andreas Dilger47a0c421997-05-16 02:46:07 -05004041 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004042
John Bowlerd273ad22011-05-07 21:00:28 -05004043 else if (a < 0xffff)
Andreas Dilger47a0c421997-05-16 02:46:07 -05004044 {
4045 png_uint_16 g, v;
4046
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05004047 g = (png_uint_16)(((*sp) << 8) + *(sp + 1));
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004048 png_composite_16(v, g, a, png_ptr->background.gray);
John Bowlerd273ad22011-05-07 21:00:28 -05004049 *sp = (png_byte)((v >> 8) & 0xff);
4050 *(sp + 1) = (png_byte)(v & 0xff);
Andreas Dilger47a0c421997-05-16 02:46:07 -05004051 }
4052 }
Guy Schalnat0d580581995-07-20 02:43:20 -05004053 }
4054 }
4055 break;
4056 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004057
Guy Schalnat0d580581995-07-20 02:43:20 -05004058 case PNG_COLOR_TYPE_RGB_ALPHA:
4059 {
4060 if (row_info->bit_depth == 8)
4061 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05004062#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05004063 if (gamma_to_1 != NULL && gamma_from_1 != NULL &&
4064 gamma_table != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05004065 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004066 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05004067 for (i = 0; i < row_width; i++, sp += 4)
Guy Schalnat0d580581995-07-20 02:43:20 -05004068 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004069 png_byte a = *(sp + 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05004070
Guy Schalnat0d580581995-07-20 02:43:20 -05004071 if (a == 0xff)
4072 {
John Bowlerd273ad22011-05-07 21:00:28 -05004073 *sp = gamma_table[*sp];
4074 *(sp + 1) = gamma_table[*(sp + 1)];
4075 *(sp + 2) = gamma_table[*(sp + 2)];
Guy Schalnat0d580581995-07-20 02:43:20 -05004076 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004077
Guy Schalnat0d580581995-07-20 02:43:20 -05004078 else if (a == 0)
4079 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004080 /* Background is already in screen gamma */
John Bowlerd273ad22011-05-07 21:00:28 -05004081 *sp = (png_byte)png_ptr->background.red;
4082 *(sp + 1) = (png_byte)png_ptr->background.green;
4083 *(sp + 2) = (png_byte)png_ptr->background.blue;
Guy Schalnat0d580581995-07-20 02:43:20 -05004084 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004085
Guy Schalnat0d580581995-07-20 02:43:20 -05004086 else
4087 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05004088 png_byte v, w;
Guy Schalnat0d580581995-07-20 02:43:20 -05004089
4090 v = gamma_to_1[*sp];
John Bowler4a12f4a2011-04-17 18:34:22 -05004091 png_composite(w, v, a, png_ptr->background_1.red);
John Bowlerd273ad22011-05-07 21:00:28 -05004092 if (!optimize) w = gamma_from_1[w];
4093 *sp = w;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004094
Guy Schalnat0d580581995-07-20 02:43:20 -05004095 v = gamma_to_1[*(sp + 1)];
John Bowler4a12f4a2011-04-17 18:34:22 -05004096 png_composite(w, v, a, png_ptr->background_1.green);
John Bowlerd273ad22011-05-07 21:00:28 -05004097 if (!optimize) w = gamma_from_1[w];
4098 *(sp + 1) = w;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004099
Guy Schalnat0d580581995-07-20 02:43:20 -05004100 v = gamma_to_1[*(sp + 2)];
John Bowler4a12f4a2011-04-17 18:34:22 -05004101 png_composite(w, v, a, png_ptr->background_1.blue);
John Bowlerd273ad22011-05-07 21:00:28 -05004102 if (!optimize) w = gamma_from_1[w];
4103 *(sp + 2) = w;
Guy Schalnat0d580581995-07-20 02:43:20 -05004104 }
4105 }
4106 }
4107 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004108#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05004109 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004110 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05004111 for (i = 0; i < row_width; i++, sp += 4)
Guy Schalnat0d580581995-07-20 02:43:20 -05004112 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004113 png_byte a = *(sp + 3);
Guy Schalnat0d580581995-07-20 02:43:20 -05004114
John Bowlerd273ad22011-05-07 21:00:28 -05004115 if (a == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -05004116 {
John Bowlerd273ad22011-05-07 21:00:28 -05004117 *sp = (png_byte)png_ptr->background.red;
4118 *(sp + 1) = (png_byte)png_ptr->background.green;
4119 *(sp + 2) = (png_byte)png_ptr->background.blue;
Guy Schalnat0d580581995-07-20 02:43:20 -05004120 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004121
John Bowlerd273ad22011-05-07 21:00:28 -05004122 else if (a < 0xff)
Guy Schalnat0d580581995-07-20 02:43:20 -05004123 {
John Bowlerd273ad22011-05-07 21:00:28 -05004124 png_composite(*sp, *sp, a, png_ptr->background.red);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004125
John Bowlerd273ad22011-05-07 21:00:28 -05004126 png_composite(*(sp + 1), *(sp + 1), a,
John Bowler4a12f4a2011-04-17 18:34:22 -05004127 png_ptr->background.green);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004128
John Bowlerd273ad22011-05-07 21:00:28 -05004129 png_composite(*(sp + 2), *(sp + 2), a,
John Bowler4a12f4a2011-04-17 18:34:22 -05004130 png_ptr->background.blue);
Guy Schalnat0d580581995-07-20 02:43:20 -05004131 }
4132 }
4133 }
4134 }
Andreas Dilger47a0c421997-05-16 02:46:07 -05004135 else /* if (row_info->bit_depth == 16) */
Guy Schalnat0d580581995-07-20 02:43:20 -05004136 {
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05004137#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05004138 if (gamma_16 != NULL && gamma_16_from_1 != NULL &&
4139 gamma_16_to_1 != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05004140 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004141 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05004142 for (i = 0; i < row_width; i++, sp += 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05004143 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004144 png_uint_16 a = (png_uint_16)(((png_uint_16)(*(sp + 6))
4145 << 8) + (png_uint_16)(*(sp + 7)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004146
Guy Schalnat0d580581995-07-20 02:43:20 -05004147 if (a == (png_uint_16)0xffff)
4148 {
4149 png_uint_16 v;
4150
Andreas Dilger47a0c421997-05-16 02:46:07 -05004151 v = gamma_16[*(sp + 1) >> gamma_shift][*sp];
John Bowlerd273ad22011-05-07 21:00:28 -05004152 *sp = (png_byte)((v >> 8) & 0xff);
4153 *(sp + 1) = (png_byte)(v & 0xff);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004154
Andreas Dilger47a0c421997-05-16 02:46:07 -05004155 v = gamma_16[*(sp + 3) >> gamma_shift][*(sp + 2)];
John Bowlerd273ad22011-05-07 21:00:28 -05004156 *(sp + 2) = (png_byte)((v >> 8) & 0xff);
4157 *(sp + 3) = (png_byte)(v & 0xff);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004158
Andreas Dilger47a0c421997-05-16 02:46:07 -05004159 v = gamma_16[*(sp + 5) >> gamma_shift][*(sp + 4)];
John Bowlerd273ad22011-05-07 21:00:28 -05004160 *(sp + 4) = (png_byte)((v >> 8) & 0xff);
4161 *(sp + 5) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004162 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004163
Guy Schalnat0d580581995-07-20 02:43:20 -05004164 else if (a == 0)
4165 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004166 /* Background is already in screen gamma */
John Bowlerd273ad22011-05-07 21:00:28 -05004167 *sp = (png_byte)((png_ptr->background.red >> 8) & 0xff);
4168 *(sp + 1) = (png_byte)(png_ptr->background.red & 0xff);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004169 *(sp + 2) = (png_byte)((png_ptr->background.green >> 8)
4170 & 0xff);
4171 *(sp + 3) = (png_byte)(png_ptr->background.green
4172 & 0xff);
4173 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
4174 & 0xff);
John Bowlerd273ad22011-05-07 21:00:28 -05004175 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004176 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004177
Guy Schalnat0d580581995-07-20 02:43:20 -05004178 else
4179 {
John Bowlerd273ad22011-05-07 21:00:28 -05004180 png_uint_16 v, w;
Guy Schalnat0d580581995-07-20 02:43:20 -05004181
Andreas Dilger47a0c421997-05-16 02:46:07 -05004182 v = gamma_16_to_1[*(sp + 1) >> gamma_shift][*sp];
John Bowler4a12f4a2011-04-17 18:34:22 -05004183 png_composite_16(w, v, a, png_ptr->background_1.red);
John Bowlerd273ad22011-05-07 21:00:28 -05004184 if (!optimize)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004185 w = gamma_16_from_1[((w&0xff) >> gamma_shift)][w >>
4186 8];
John Bowlerd273ad22011-05-07 21:00:28 -05004187 *sp = (png_byte)((w >> 8) & 0xff);
4188 *(sp + 1) = (png_byte)(w & 0xff);
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004189
Andreas Dilger47a0c421997-05-16 02:46:07 -05004190 v = gamma_16_to_1[*(sp + 3) >> gamma_shift][*(sp + 2)];
John Bowler4a12f4a2011-04-17 18:34:22 -05004191 png_composite_16(w, v, a, png_ptr->background_1.green);
John Bowlerd273ad22011-05-07 21:00:28 -05004192 if (!optimize)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004193 w = gamma_16_from_1[((w&0xff) >> gamma_shift)][w >>
4194 8];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004195
John Bowlerd273ad22011-05-07 21:00:28 -05004196 *(sp + 2) = (png_byte)((w >> 8) & 0xff);
4197 *(sp + 3) = (png_byte)(w & 0xff);
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004198
Andreas Dilger47a0c421997-05-16 02:46:07 -05004199 v = gamma_16_to_1[*(sp + 5) >> gamma_shift][*(sp + 4)];
John Bowler4a12f4a2011-04-17 18:34:22 -05004200 png_composite_16(w, v, a, png_ptr->background_1.blue);
John Bowlerd273ad22011-05-07 21:00:28 -05004201 if (!optimize)
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004202 w = gamma_16_from_1[((w&0xff) >> gamma_shift)][w >>
4203 8];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004204
John Bowlerd273ad22011-05-07 21:00:28 -05004205 *(sp + 4) = (png_byte)((w >> 8) & 0xff);
4206 *(sp + 5) = (png_byte)(w & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004207 }
4208 }
4209 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004210
Guy Schalnat0d580581995-07-20 02:43:20 -05004211 else
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004212#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05004213 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004214 sp = row;
John Bowlerd273ad22011-05-07 21:00:28 -05004215 for (i = 0; i < row_width; i++, sp += 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05004216 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004217 png_uint_16 a = (png_uint_16)(((png_uint_16)(*(sp + 6))
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06004218 << 8) + (png_uint_16)(*(sp + 7)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004219
John Bowlerd273ad22011-05-07 21:00:28 -05004220 if (a == 0)
Guy Schalnat0d580581995-07-20 02:43:20 -05004221 {
John Bowlerd273ad22011-05-07 21:00:28 -05004222 *sp = (png_byte)((png_ptr->background.red >> 8) & 0xff);
4223 *(sp + 1) = (png_byte)(png_ptr->background.red & 0xff);
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004224 *(sp + 2) = (png_byte)((png_ptr->background.green >> 8)
4225 & 0xff);
4226 *(sp + 3) = (png_byte)(png_ptr->background.green
4227 & 0xff);
4228 *(sp + 4) = (png_byte)((png_ptr->background.blue >> 8)
4229 & 0xff);
John Bowlerd273ad22011-05-07 21:00:28 -05004230 *(sp + 5) = (png_byte)(png_ptr->background.blue & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004231 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004232
John Bowlerd273ad22011-05-07 21:00:28 -05004233 else if (a < 0xffff)
Guy Schalnat0d580581995-07-20 02:43:20 -05004234 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004235 png_uint_16 v;
Guy Schalnat0d580581995-07-20 02:43:20 -05004236
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05004237 png_uint_16 r = (png_uint_16)(((*sp) << 8) + *(sp + 1));
4238 png_uint_16 g = (png_uint_16)(((*(sp + 2)) << 8)
4239 + *(sp + 3));
4240 png_uint_16 b = (png_uint_16)(((*(sp + 4)) << 8)
4241 + *(sp + 5));
Andreas Dilger47a0c421997-05-16 02:46:07 -05004242
John Bowler4a12f4a2011-04-17 18:34:22 -05004243 png_composite_16(v, r, a, png_ptr->background.red);
John Bowlerd273ad22011-05-07 21:00:28 -05004244 *sp = (png_byte)((v >> 8) & 0xff);
4245 *(sp + 1) = (png_byte)(v & 0xff);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004246
John Bowler4a12f4a2011-04-17 18:34:22 -05004247 png_composite_16(v, g, a, png_ptr->background.green);
John Bowlerd273ad22011-05-07 21:00:28 -05004248 *(sp + 2) = (png_byte)((v >> 8) & 0xff);
4249 *(sp + 3) = (png_byte)(v & 0xff);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004250
John Bowler4a12f4a2011-04-17 18:34:22 -05004251 png_composite_16(v, b, a, png_ptr->background.blue);
John Bowlerd273ad22011-05-07 21:00:28 -05004252 *(sp + 4) = (png_byte)((v >> 8) & 0xff);
4253 *(sp + 5) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004254 }
4255 }
4256 }
4257 }
4258 break;
4259 }
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06004260
4261 default:
4262 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05004263 }
Guy Schalnat0d580581995-07-20 02:43:20 -05004264 }
4265}
John Bowler07772cb2011-10-14 18:19:47 -05004266#endif /* PNG_READ_BACKGROUND_SUPPORTED || PNG_READ_ALPHA_MODE_SUPPORTED */
Guy Schalnat0d580581995-07-20 02:43:20 -05004267
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05004268#ifdef PNG_READ_GAMMA_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05004269/* Gamma correct the image, avoiding the alpha channel. Make sure
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -05004270 * you do this after you deal with the transparency issue on grayscale
Glenn Randers-Pehrson352ca6b1999-09-18 15:49:20 -05004271 * or RGB images. If your bit depth is 8, use gamma_table, if it
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06004272 * is 16, use gamma_16_table and gamma_shift. Build these with
4273 * build_gamma_table().
4274 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05004275void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06004276png_do_gamma(png_row_infop row_info, png_bytep row, png_structrp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -05004277{
John Bowler4a12f4a2011-04-17 18:34:22 -05004278 png_const_bytep gamma_table = png_ptr->gamma_table;
4279 png_const_uint_16pp gamma_16_table = png_ptr->gamma_16_table;
4280 int gamma_shift = png_ptr->gamma_shift;
4281
Guy Schalnat6d764711995-12-19 03:22:19 -06004282 png_bytep sp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004283 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004284 png_uint_32 row_width=row_info->width;
Guy Schalnat6d764711995-12-19 03:22:19 -06004285
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05004286 png_debug(1, "in png_do_gamma");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05004287
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004288 if (((row_info->bit_depth <= 8 && gamma_table != NULL) ||
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06004289 (row_info->bit_depth == 16 && gamma_16_table != NULL)))
Guy Schalnat0d580581995-07-20 02:43:20 -05004290 {
4291 switch (row_info->color_type)
4292 {
4293 case PNG_COLOR_TYPE_RGB:
4294 {
4295 if (row_info->bit_depth == 8)
4296 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004297 sp = row;
4298 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004299 {
4300 *sp = gamma_table[*sp];
4301 sp++;
4302 *sp = gamma_table[*sp];
4303 sp++;
4304 *sp = gamma_table[*sp];
4305 sp++;
4306 }
4307 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004308
Andreas Dilger47a0c421997-05-16 02:46:07 -05004309 else /* if (row_info->bit_depth == 16) */
Guy Schalnat0d580581995-07-20 02:43:20 -05004310 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004311 sp = row;
4312 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004313 {
4314 png_uint_16 v;
4315
Andreas Dilger47a0c421997-05-16 02:46:07 -05004316 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004317 *sp = (png_byte)((v >> 8) & 0xff);
4318 *(sp + 1) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004319 sp += 2;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004320
Andreas Dilger47a0c421997-05-16 02:46:07 -05004321 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004322 *sp = (png_byte)((v >> 8) & 0xff);
4323 *(sp + 1) = (png_byte)(v & 0xff);
4324 sp += 2;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004325
Andreas Dilger47a0c421997-05-16 02:46:07 -05004326 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004327 *sp = (png_byte)((v >> 8) & 0xff);
4328 *(sp + 1) = (png_byte)(v & 0xff);
4329 sp += 2;
4330 }
4331 }
4332 break;
4333 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004334
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004335 case PNG_COLOR_TYPE_RGB_ALPHA:
4336 {
4337 if (row_info->bit_depth == 8)
4338 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004339 sp = row;
4340 for (i = 0; i < row_width; i++)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004341 {
Guy Schalnat0d580581995-07-20 02:43:20 -05004342 *sp = gamma_table[*sp];
4343 sp++;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004344
Guy Schalnat0d580581995-07-20 02:43:20 -05004345 *sp = gamma_table[*sp];
4346 sp++;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004347
Guy Schalnat0d580581995-07-20 02:43:20 -05004348 *sp = gamma_table[*sp];
4349 sp++;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004350
Guy Schalnat0d580581995-07-20 02:43:20 -05004351 sp++;
4352 }
4353 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004354
Andreas Dilger47a0c421997-05-16 02:46:07 -05004355 else /* if (row_info->bit_depth == 16) */
Guy Schalnat0d580581995-07-20 02:43:20 -05004356 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004357 sp = row;
4358 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004359 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004360 png_uint_16 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004361 *sp = (png_byte)((v >> 8) & 0xff);
4362 *(sp + 1) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004363 sp += 2;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004364
Andreas Dilger47a0c421997-05-16 02:46:07 -05004365 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004366 *sp = (png_byte)((v >> 8) & 0xff);
4367 *(sp + 1) = (png_byte)(v & 0xff);
4368 sp += 2;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004369
Andreas Dilger47a0c421997-05-16 02:46:07 -05004370 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004371 *sp = (png_byte)((v >> 8) & 0xff);
4372 *(sp + 1) = (png_byte)(v & 0xff);
4373 sp += 4;
4374 }
4375 }
Guy Schalnat0d580581995-07-20 02:43:20 -05004376 break;
4377 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004378
Guy Schalnat0d580581995-07-20 02:43:20 -05004379 case PNG_COLOR_TYPE_GRAY_ALPHA:
4380 {
4381 if (row_info->bit_depth == 8)
4382 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004383 sp = row;
4384 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004385 {
4386 *sp = gamma_table[*sp];
Andreas Dilger47a0c421997-05-16 02:46:07 -05004387 sp += 2;
Guy Schalnat0d580581995-07-20 02:43:20 -05004388 }
4389 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004390
Andreas Dilger47a0c421997-05-16 02:46:07 -05004391 else /* if (row_info->bit_depth == 16) */
Guy Schalnat0d580581995-07-20 02:43:20 -05004392 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004393 sp = row;
4394 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004395 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004396 png_uint_16 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004397 *sp = (png_byte)((v >> 8) & 0xff);
4398 *(sp + 1) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004399 sp += 4;
4400 }
4401 }
4402 break;
4403 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004404
Guy Schalnat0d580581995-07-20 02:43:20 -05004405 case PNG_COLOR_TYPE_GRAY:
4406 {
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06004407 if (row_info->bit_depth == 2)
4408 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004409 sp = row;
4410 for (i = 0; i < row_width; i += 4)
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06004411 {
4412 int a = *sp & 0xc0;
4413 int b = *sp & 0x30;
4414 int c = *sp & 0x0c;
4415 int d = *sp & 0x03;
4416
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05004417 *sp = (png_byte)(
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06004418 ((((int)gamma_table[a|(a>>2)|(a>>4)|(a>>6)]) ) & 0xc0)|
4419 ((((int)gamma_table[(b<<2)|b|(b>>2)|(b>>4)])>>2) & 0x30)|
4420 ((((int)gamma_table[(c<<4)|(c<<2)|c|(c>>2)])>>4) & 0x0c)|
4421 ((((int)gamma_table[(d<<6)|(d<<4)|(d<<2)|d])>>6) ));
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06004422 sp++;
4423 }
4424 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004425
Andreas Dilger47a0c421997-05-16 02:46:07 -05004426 if (row_info->bit_depth == 4)
Guy Schalnat0d580581995-07-20 02:43:20 -05004427 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004428 sp = row;
4429 for (i = 0; i < row_width; i += 2)
Andreas Dilger47a0c421997-05-16 02:46:07 -05004430 {
4431 int msb = *sp & 0xf0;
4432 int lsb = *sp & 0x0f;
4433
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05004434 *sp = (png_byte)((((int)gamma_table[msb | (msb >> 4)]) & 0xf0)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06004435 | (((int)gamma_table[(lsb << 4) | lsb]) >> 4));
Andreas Dilger47a0c421997-05-16 02:46:07 -05004436 sp++;
4437 }
4438 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004439
Andreas Dilger47a0c421997-05-16 02:46:07 -05004440 else if (row_info->bit_depth == 8)
4441 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004442 sp = row;
4443 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004444 {
4445 *sp = gamma_table[*sp];
4446 sp++;
4447 }
4448 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004449
Guy Schalnat0d580581995-07-20 02:43:20 -05004450 else if (row_info->bit_depth == 16)
4451 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004452 sp = row;
4453 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004454 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05004455 png_uint_16 v = gamma_16_table[*(sp + 1) >> gamma_shift][*sp];
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004456 *sp = (png_byte)((v >> 8) & 0xff);
4457 *(sp + 1) = (png_byte)(v & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004458 sp += 2;
4459 }
4460 }
4461 break;
4462 }
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06004463
4464 default:
4465 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05004466 }
4467 }
4468}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004469#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05004470
John Bowlerd273ad22011-05-07 21:00:28 -05004471#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
4472/* Encode the alpha channel to the output gamma (the input channel is always
4473 * linear.) Called only with color types that have an alpha channel. Needs the
4474 * from_1 tables.
4475 */
4476void /* PRIVATE */
John Bowler5d567862011-12-24 09:12:00 -06004477png_do_encode_alpha(png_row_infop row_info, png_bytep row, png_structrp png_ptr)
John Bowlerd273ad22011-05-07 21:00:28 -05004478{
4479 png_uint_32 row_width = row_info->width;
4480
4481 png_debug(1, "in png_do_encode_alpha");
4482
4483 if (row_info->color_type & PNG_COLOR_MASK_ALPHA)
4484 {
4485 if (row_info->bit_depth == 8)
4486 {
4487 PNG_CONST png_bytep table = png_ptr->gamma_from_1;
4488
4489 if (table != NULL)
4490 {
4491 PNG_CONST int step =
4492 (row_info->color_type & PNG_COLOR_MASK_COLOR) ? 4 : 2;
4493
4494 /* The alpha channel is the last component: */
4495 row += step - 1;
4496
4497 for (; row_width > 0; --row_width, row += step)
4498 *row = table[*row];
4499
4500 return;
4501 }
4502 }
4503
4504 else if (row_info->bit_depth == 16)
4505 {
4506 PNG_CONST png_uint_16pp table = png_ptr->gamma_16_from_1;
4507 PNG_CONST int gamma_shift = png_ptr->gamma_shift;
4508
4509 if (table != NULL)
4510 {
4511 PNG_CONST int step =
4512 (row_info->color_type & PNG_COLOR_MASK_COLOR) ? 8 : 4;
4513
4514 /* The alpha channel is the last component: */
4515 row += step - 2;
4516
4517 for (; row_width > 0; --row_width, row += step)
4518 {
4519 png_uint_16 v;
4520
4521 v = table[*(row + 1) >> gamma_shift][*row];
4522 *row = (png_byte)((v >> 8) & 0xff);
4523 *(row + 1) = (png_byte)(v & 0xff);
4524 }
4525
4526 return;
4527 }
4528 }
4529 }
4530
4531 /* Only get to here if called with a weird row_info; no harm has been done,
4532 * so just issue a warning.
4533 */
4534 png_warning(png_ptr, "png_do_encode_alpha: unexpected call");
4535}
4536#endif
4537
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05004538#ifdef PNG_READ_EXPAND_SUPPORTED
Glenn Randers-Pehrson352ca6b1999-09-18 15:49:20 -05004539/* Expands a palette row to an RGB or RGBA row depending
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06004540 * upon whether you supply trans and num_trans.
4541 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05004542void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06004543png_do_expand_palette(png_row_infop row_info, png_bytep row,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05004544 png_const_colorp palette, png_const_bytep trans_alpha, int num_trans)
Guy Schalnat0d580581995-07-20 02:43:20 -05004545{
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004546 int shift, value;
Guy Schalnat6d764711995-12-19 03:22:19 -06004547 png_bytep sp, dp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004548 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004549 png_uint_32 row_width=row_info->width;
Guy Schalnat6d764711995-12-19 03:22:19 -06004550
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05004551 png_debug(1, "in png_do_expand_palette");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05004552
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004553 if (row_info->color_type == PNG_COLOR_TYPE_PALETTE)
Guy Schalnat0d580581995-07-20 02:43:20 -05004554 {
4555 if (row_info->bit_depth < 8)
4556 {
4557 switch (row_info->bit_depth)
4558 {
4559 case 1:
4560 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004561 sp = row + (png_size_t)((row_width - 1) >> 3);
4562 dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004563 shift = 7 - (int)((row_width + 7) & 0x07);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004564 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004565 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004566 if ((*sp >> shift) & 0x01)
Guy Schalnat0d580581995-07-20 02:43:20 -05004567 *dp = 1;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004568
Guy Schalnat0d580581995-07-20 02:43:20 -05004569 else
4570 *dp = 0;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004571
Guy Schalnat0d580581995-07-20 02:43:20 -05004572 if (shift == 7)
4573 {
4574 shift = 0;
4575 sp--;
4576 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004577
Guy Schalnat0d580581995-07-20 02:43:20 -05004578 else
4579 shift++;
4580
4581 dp--;
4582 }
4583 break;
4584 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004585
Guy Schalnat0d580581995-07-20 02:43:20 -05004586 case 2:
4587 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004588 sp = row + (png_size_t)((row_width - 1) >> 2);
4589 dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004590 shift = (int)((3 - ((row_width + 3) & 0x03)) << 1);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004591 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004592 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004593 value = (*sp >> shift) & 0x03;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004594 *dp = (png_byte)value;
Guy Schalnat0d580581995-07-20 02:43:20 -05004595 if (shift == 6)
4596 {
4597 shift = 0;
4598 sp--;
4599 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004600
Guy Schalnat0d580581995-07-20 02:43:20 -05004601 else
4602 shift += 2;
4603
4604 dp--;
4605 }
4606 break;
4607 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004608
Guy Schalnat0d580581995-07-20 02:43:20 -05004609 case 4:
4610 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004611 sp = row + (png_size_t)((row_width - 1) >> 1);
4612 dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004613 shift = (int)((row_width & 0x01) << 2);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004614 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004615 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004616 value = (*sp >> shift) & 0x0f;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004617 *dp = (png_byte)value;
Guy Schalnat0d580581995-07-20 02:43:20 -05004618 if (shift == 4)
4619 {
4620 shift = 0;
4621 sp--;
4622 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004623
Guy Schalnat0d580581995-07-20 02:43:20 -05004624 else
4625 shift += 4;
4626
4627 dp--;
4628 }
4629 break;
4630 }
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06004631
4632 default:
4633 break;
Guy Schalnat0d580581995-07-20 02:43:20 -05004634 }
4635 row_info->bit_depth = 8;
4636 row_info->pixel_depth = 8;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004637 row_info->rowbytes = row_width;
Guy Schalnat0d580581995-07-20 02:43:20 -05004638 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004639
John Bowler4e230b02011-01-08 14:49:25 -06004640 if (row_info->bit_depth == 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05004641 {
Guy Schalnat0d580581995-07-20 02:43:20 -05004642 {
John Bowlercd3b0cc2011-06-14 23:01:07 -05004643 if (num_trans > 0)
Guy Schalnat0d580581995-07-20 02:43:20 -05004644 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004645 sp = row + (png_size_t)row_width - 1;
4646 dp = row + (png_size_t)(row_width << 2) - 1;
Guy Schalnat0d580581995-07-20 02:43:20 -05004647
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004648 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004649 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05004650 if ((int)(*sp) >= num_trans)
Guy Schalnat0d580581995-07-20 02:43:20 -05004651 *dp-- = 0xff;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004652
Guy Schalnat0d580581995-07-20 02:43:20 -05004653 else
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -05004654 *dp-- = trans_alpha[*sp];
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004655
Guy Schalnat0d580581995-07-20 02:43:20 -05004656 *dp-- = palette[*sp].blue;
4657 *dp-- = palette[*sp].green;
4658 *dp-- = palette[*sp].red;
4659 sp--;
4660 }
4661 row_info->bit_depth = 8;
4662 row_info->pixel_depth = 32;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004663 row_info->rowbytes = row_width * 4;
Guy Schalnat0d580581995-07-20 02:43:20 -05004664 row_info->color_type = 6;
4665 row_info->channels = 4;
4666 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004667
Guy Schalnat0d580581995-07-20 02:43:20 -05004668 else
4669 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004670 sp = row + (png_size_t)row_width - 1;
4671 dp = row + (png_size_t)(row_width * 3) - 1;
Guy Schalnat0d580581995-07-20 02:43:20 -05004672
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004673 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004674 {
4675 *dp-- = palette[*sp].blue;
4676 *dp-- = palette[*sp].green;
4677 *dp-- = palette[*sp].red;
4678 sp--;
4679 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004680
Guy Schalnat0d580581995-07-20 02:43:20 -05004681 row_info->bit_depth = 8;
4682 row_info->pixel_depth = 24;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004683 row_info->rowbytes = row_width * 3;
Guy Schalnat0d580581995-07-20 02:43:20 -05004684 row_info->color_type = 2;
4685 row_info->channels = 3;
4686 }
Guy Schalnat0d580581995-07-20 02:43:20 -05004687 }
4688 }
4689 }
4690}
4691
Glenn Randers-Pehrson1ce08362006-03-08 23:35:59 -06004692/* If the bit depth < 8, it is expanded to 8. Also, if the already
4693 * expanded transparency value is supplied, an alpha channel is built.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06004694 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05004695void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -06004696png_do_expand(png_row_infop row_info, png_bytep row,
John Bowlercd3b0cc2011-06-14 23:01:07 -05004697 png_const_color_16p trans_color)
Guy Schalnat0d580581995-07-20 02:43:20 -05004698{
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004699 int shift, value;
Guy Schalnat6d764711995-12-19 03:22:19 -06004700 png_bytep sp, dp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004701 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004702 png_uint_32 row_width=row_info->width;
Guy Schalnat6d764711995-12-19 03:22:19 -06004703
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05004704 png_debug(1, "in png_do_expand");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05004705
Guy Schalnat0d580581995-07-20 02:43:20 -05004706 {
Andreas Dilger47a0c421997-05-16 02:46:07 -05004707 if (row_info->color_type == PNG_COLOR_TYPE_GRAY)
Guy Schalnat0d580581995-07-20 02:43:20 -05004708 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004709 unsigned int gray = trans_color ? trans_color->gray : 0;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004710
4711 if (row_info->bit_depth < 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05004712 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004713 switch (row_info->bit_depth)
Guy Schalnat0d580581995-07-20 02:43:20 -05004714 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004715 case 1:
4716 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004717 gray = (gray & 0x01) * 0xff;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004718 sp = row + (png_size_t)((row_width - 1) >> 3);
4719 dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004720 shift = 7 - (int)((row_width + 7) & 0x07);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004721 for (i = 0; i < row_width; i++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004722 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004723 if ((*sp >> shift) & 0x01)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004724 *dp = 0xff;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004725
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004726 else
4727 *dp = 0;
Glenn Randers-Pehrsonf1eb9182010-02-08 15:36:41 -06004728
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004729 if (shift == 7)
4730 {
4731 shift = 0;
4732 sp--;
4733 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004734
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004735 else
4736 shift++;
4737
4738 dp--;
4739 }
4740 break;
4741 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004742
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004743 case 2:
4744 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004745 gray = (gray & 0x03) * 0x55;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004746 sp = row + (png_size_t)((row_width - 1) >> 2);
4747 dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004748 shift = (int)((3 - ((row_width + 3) & 0x03)) << 1);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004749 for (i = 0; i < row_width; i++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004750 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004751 value = (*sp >> shift) & 0x03;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004752 *dp = (png_byte)(value | (value << 2) | (value << 4) |
4753 (value << 6));
4754 if (shift == 6)
4755 {
4756 shift = 0;
4757 sp--;
4758 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004759
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004760 else
4761 shift += 2;
4762
4763 dp--;
4764 }
4765 break;
4766 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004767
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004768 case 4:
4769 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004770 gray = (gray & 0x0f) * 0x11;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004771 sp = row + (png_size_t)((row_width - 1) >> 1);
4772 dp = row + (png_size_t)row_width - 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004773 shift = (int)((1 - ((row_width + 1) & 0x01)) << 2);
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004774 for (i = 0; i < row_width; i++)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004775 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06004776 value = (*sp >> shift) & 0x0f;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004777 *dp = (png_byte)(value | (value << 4));
4778 if (shift == 4)
4779 {
4780 shift = 0;
4781 sp--;
4782 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004783
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004784 else
4785 shift = 4;
4786
4787 dp--;
4788 }
4789 break;
4790 }
Glenn Randers-Pehrsonb3edc732010-11-21 14:06:41 -06004791
4792 default:
4793 break;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004794 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004795
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004796 row_info->bit_depth = 8;
4797 row_info->pixel_depth = 8;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004798 row_info->rowbytes = row_width;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004799 }
4800
John Bowlercd3b0cc2011-06-14 23:01:07 -05004801 if (trans_color != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004802 {
4803 if (row_info->bit_depth == 8)
4804 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05004805 gray = gray & 0xff;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004806 sp = row + (png_size_t)row_width - 1;
4807 dp = row + (png_size_t)(row_width << 1) - 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004808
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004809 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004810 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004811 if (*sp == gray)
4812 *dp-- = 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004813
Guy Schalnat0d580581995-07-20 02:43:20 -05004814 else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004815 *dp-- = 0xff;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004816
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004817 *dp-- = *sp--;
Guy Schalnat0d580581995-07-20 02:43:20 -05004818 }
Guy Schalnat0d580581995-07-20 02:43:20 -05004819 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004820
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004821 else if (row_info->bit_depth == 16)
Guy Schalnat0d580581995-07-20 02:43:20 -05004822 {
Glenn Randers-Pehrson871b1d02013-03-02 14:58:22 -06004823 unsigned int gray_high = (gray >> 8) & 0xff;
4824 unsigned int gray_low = gray & 0xff;
Andreas Dilger47a0c421997-05-16 02:46:07 -05004825 sp = row + row_info->rowbytes - 1;
4826 dp = row + (row_info->rowbytes << 1) - 1;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004827 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004828 {
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -06004829 if (*(sp - 1) == gray_high && *(sp) == gray_low)
Guy Schalnat0d580581995-07-20 02:43:20 -05004830 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004831 *dp-- = 0;
4832 *dp-- = 0;
Guy Schalnat0d580581995-07-20 02:43:20 -05004833 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004834
Guy Schalnat0d580581995-07-20 02:43:20 -05004835 else
Guy Schalnat0d580581995-07-20 02:43:20 -05004836 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004837 *dp-- = 0xff;
4838 *dp-- = 0xff;
Guy Schalnat0d580581995-07-20 02:43:20 -05004839 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004840
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004841 *dp-- = *sp--;
4842 *dp-- = *sp--;
Guy Schalnat0d580581995-07-20 02:43:20 -05004843 }
Guy Schalnat0d580581995-07-20 02:43:20 -05004844 }
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004845
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06004846 row_info->color_type = PNG_COLOR_TYPE_GRAY_ALPHA;
4847 row_info->channels = 2;
4848 row_info->pixel_depth = (png_byte)(row_info->bit_depth << 1);
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05004849 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,
4850 row_width);
Guy Schalnat0d580581995-07-20 02:43:20 -05004851 }
Guy Schalnat0d580581995-07-20 02:43:20 -05004852 }
John Bowlercd3b0cc2011-06-14 23:01:07 -05004853 else if (row_info->color_type == PNG_COLOR_TYPE_RGB && trans_color)
Guy Schalnat0d580581995-07-20 02:43:20 -05004854 {
4855 if (row_info->bit_depth == 8)
4856 {
John Bowlercd3b0cc2011-06-14 23:01:07 -05004857 png_byte red = (png_byte)(trans_color->red & 0xff);
4858 png_byte green = (png_byte)(trans_color->green & 0xff);
4859 png_byte blue = (png_byte)(trans_color->blue & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -05004860 sp = row + (png_size_t)row_info->rowbytes - 1;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004861 dp = row + (png_size_t)(row_width << 2) - 1;
4862 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004863 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05004864 if (*(sp - 2) == red && *(sp - 1) == green && *(sp) == blue)
Guy Schalnat0d580581995-07-20 02:43:20 -05004865 *dp-- = 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004866
Guy Schalnat0d580581995-07-20 02:43:20 -05004867 else
4868 *dp-- = 0xff;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004869
Guy Schalnat0d580581995-07-20 02:43:20 -05004870 *dp-- = *sp--;
4871 *dp-- = *sp--;
4872 *dp-- = *sp--;
4873 }
4874 }
4875 else if (row_info->bit_depth == 16)
4876 {
John Bowlercd3b0cc2011-06-14 23:01:07 -05004877 png_byte red_high = (png_byte)((trans_color->red >> 8) & 0xff);
4878 png_byte green_high = (png_byte)((trans_color->green >> 8) & 0xff);
4879 png_byte blue_high = (png_byte)((trans_color->blue >> 8) & 0xff);
4880 png_byte red_low = (png_byte)(trans_color->red & 0xff);
4881 png_byte green_low = (png_byte)(trans_color->green & 0xff);
4882 png_byte blue_low = (png_byte)(trans_color->blue & 0xff);
Andreas Dilger47a0c421997-05-16 02:46:07 -05004883 sp = row + row_info->rowbytes - 1;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004884 dp = row + (png_size_t)(row_width << 3) - 1;
4885 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004886 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05004887 if (*(sp - 5) == red_high &&
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06004888 *(sp - 4) == red_low &&
4889 *(sp - 3) == green_high &&
4890 *(sp - 2) == green_low &&
4891 *(sp - 1) == blue_high &&
4892 *(sp ) == blue_low)
Guy Schalnat0d580581995-07-20 02:43:20 -05004893 {
4894 *dp-- = 0;
4895 *dp-- = 0;
4896 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004897
Guy Schalnat0d580581995-07-20 02:43:20 -05004898 else
4899 {
4900 *dp-- = 0xff;
4901 *dp-- = 0xff;
4902 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004903
Guy Schalnat0d580581995-07-20 02:43:20 -05004904 *dp-- = *sp--;
4905 *dp-- = *sp--;
4906 *dp-- = *sp--;
4907 *dp-- = *sp--;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004908 *dp-- = *sp--;
Guy Schalnat0d580581995-07-20 02:43:20 -05004909 *dp-- = *sp--;
4910 }
4911 }
4912 row_info->color_type = PNG_COLOR_TYPE_RGB_ALPHA;
4913 row_info->channels = 4;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06004914 row_info->pixel_depth = (png_byte)(row_info->bit_depth << 2);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05004915 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
Guy Schalnat0d580581995-07-20 02:43:20 -05004916 }
4917 }
4918}
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004919#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05004920
John Bowler4d562962011-02-12 09:01:20 -06004921#ifdef PNG_READ_EXPAND_16_SUPPORTED
Glenn Randers-Pehrson8b8aacd2011-08-25 18:10:50 -05004922/* If the bit depth is 8 and the color type is not a palette type expand the
John Bowler4d562962011-02-12 09:01:20 -06004923 * whole row to 16 bits. Has no effect otherwise.
4924 */
4925void /* PRIVATE */
4926png_do_expand_16(png_row_infop row_info, png_bytep row)
4927{
4928 if (row_info->bit_depth == 8 &&
4929 row_info->color_type != PNG_COLOR_TYPE_PALETTE)
4930 {
4931 /* The row have a sequence of bytes containing [0..255] and we need
4932 * to turn it into another row containing [0..65535], to do this we
4933 * calculate:
4934 *
4935 * (input / 255) * 65535
4936 *
4937 * Which happens to be exactly input * 257 and this can be achieved
4938 * simply by byte replication in place (copying backwards).
4939 */
4940 png_byte *sp = row + row_info->rowbytes; /* source, last byte + 1 */
4941 png_byte *dp = sp + row_info->rowbytes; /* destination, end + 1 */
4942 while (dp > sp)
4943 dp[-2] = dp[-1] = *--sp, dp -= 2;
4944
4945 row_info->rowbytes *= 2;
4946 row_info->bit_depth = 16;
4947 row_info->pixel_depth = (png_byte)(row_info->channels * 16);
4948 }
4949}
4950#endif
4951
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05004952#ifdef PNG_READ_QUANTIZE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05004953void /* PRIVATE */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05004954png_do_quantize(png_row_infop row_info, png_bytep row,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05004955 png_const_bytep palette_lookup, png_const_bytep quantize_lookup)
Guy Schalnat0d580581995-07-20 02:43:20 -05004956{
Guy Schalnat6d764711995-12-19 03:22:19 -06004957 png_bytep sp, dp;
Guy Schalnat51f0eb41995-09-26 05:22:39 -05004958 png_uint_32 i;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004959 png_uint_32 row_width=row_info->width;
Guy Schalnat6d764711995-12-19 03:22:19 -06004960
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05004961 png_debug(1, "in png_do_quantize");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05004962
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05004963 if (row_info->bit_depth == 8)
Guy Schalnat0d580581995-07-20 02:43:20 -05004964 {
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05004965 if (row_info->color_type == PNG_COLOR_TYPE_RGB && palette_lookup)
Guy Schalnat0d580581995-07-20 02:43:20 -05004966 {
4967 int r, g, b, p;
Guy Schalnat0d580581995-07-20 02:43:20 -05004968 sp = row;
4969 dp = row;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004970 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05004971 {
4972 r = *sp++;
4973 g = *sp++;
4974 b = *sp++;
4975
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05004976 /* This looks real messy, but the compiler will reduce
4977 * it down to a reasonable formula. For example, with
4978 * 5 bits per color, we get:
4979 * p = (((r >> 3) & 0x1f) << 10) |
4980 * (((g >> 3) & 0x1f) << 5) |
4981 * ((b >> 3) & 0x1f);
4982 */
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05004983 p = (((r >> (8 - PNG_QUANTIZE_RED_BITS)) &
4984 ((1 << PNG_QUANTIZE_RED_BITS) - 1)) <<
4985 (PNG_QUANTIZE_GREEN_BITS + PNG_QUANTIZE_BLUE_BITS)) |
4986 (((g >> (8 - PNG_QUANTIZE_GREEN_BITS)) &
4987 ((1 << PNG_QUANTIZE_GREEN_BITS) - 1)) <<
4988 (PNG_QUANTIZE_BLUE_BITS)) |
4989 ((b >> (8 - PNG_QUANTIZE_BLUE_BITS)) &
4990 ((1 << PNG_QUANTIZE_BLUE_BITS) - 1));
Guy Schalnat0d580581995-07-20 02:43:20 -05004991
4992 *dp++ = palette_lookup[p];
4993 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05004994
Guy Schalnat0d580581995-07-20 02:43:20 -05004995 row_info->color_type = PNG_COLOR_TYPE_PALETTE;
4996 row_info->channels = 1;
4997 row_info->pixel_depth = row_info->bit_depth;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05004998 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
Guy Schalnat0d580581995-07-20 02:43:20 -05004999 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05005000
Guy Schalnat0d580581995-07-20 02:43:20 -05005001 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA &&
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05005002 palette_lookup != NULL)
Guy Schalnat0d580581995-07-20 02:43:20 -05005003 {
5004 int r, g, b, p;
Guy Schalnat0d580581995-07-20 02:43:20 -05005005 sp = row;
5006 dp = row;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05005007 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -05005008 {
5009 r = *sp++;
5010 g = *sp++;
5011 b = *sp++;
5012 sp++;
5013
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05005014 p = (((r >> (8 - PNG_QUANTIZE_RED_BITS)) &
5015 ((1 << PNG_QUANTIZE_RED_BITS) - 1)) <<
5016 (PNG_QUANTIZE_GREEN_BITS + PNG_QUANTIZE_BLUE_BITS)) |
5017 (((g >> (8 - PNG_QUANTIZE_GREEN_BITS)) &
5018 ((1 << PNG_QUANTIZE_GREEN_BITS) - 1)) <<
5019 (PNG_QUANTIZE_BLUE_BITS)) |
5020 ((b >> (8 - PNG_QUANTIZE_BLUE_BITS)) &
5021 ((1 << PNG_QUANTIZE_BLUE_BITS) - 1));
Guy Schalnat0d580581995-07-20 02:43:20 -05005022
5023 *dp++ = palette_lookup[p];
5024 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05005025
Guy Schalnat0d580581995-07-20 02:43:20 -05005026 row_info->color_type = PNG_COLOR_TYPE_PALETTE;
5027 row_info->channels = 1;
5028 row_info->pixel_depth = row_info->bit_depth;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05005029 row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth, row_width);
Guy Schalnat0d580581995-07-20 02:43:20 -05005030 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05005031
Guy Schalnat0d580581995-07-20 02:43:20 -05005032 else if (row_info->color_type == PNG_COLOR_TYPE_PALETTE &&
Glenn Randers-Pehrson925d23b2010-08-26 21:43:18 -05005033 quantize_lookup)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -06005034 {
Guy Schalnat0d580581995-07-20 02:43:20 -05005035 sp = row;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05005036
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05005037 for (i = 0; i < row_width; i++, sp++)
Guy Schalnat0d580581995-07-20 02:43:20 -05005038 {
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05005039 *sp = quantize_lookup[*sp];
Guy Schalnat0d580581995-07-20 02:43:20 -05005040 }
5041 }
5042 }
5043}
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -05005044#endif /* PNG_READ_QUANTIZE_SUPPORTED */
John Bowler4a12f4a2011-04-17 18:34:22 -05005045#endif /* PNG_READ_TRANSFORMS_SUPPORTED */
Guy Schalnat0d580581995-07-20 02:43:20 -05005046
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05005047#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05005048/* Undoes intrapixel differencing */
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005049void /* PRIVATE */
5050png_do_read_intrapixel(png_row_infop row_info, png_bytep row)
5051{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05005052 png_debug(1, "in png_do_read_intrapixel");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05005053
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005054 if (
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005055 (row_info->color_type & PNG_COLOR_MASK_COLOR))
5056 {
5057 int bytes_per_pixel;
5058 png_uint_32 row_width = row_info->width;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05005059
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005060 if (row_info->bit_depth == 8)
5061 {
5062 png_bytep rp;
5063 png_uint_32 i;
5064
5065 if (row_info->color_type == PNG_COLOR_TYPE_RGB)
5066 bytes_per_pixel = 3;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05005067
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005068 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
5069 bytes_per_pixel = 4;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05005070
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005071 else
5072 return;
5073
5074 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel)
5075 {
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06005076 *(rp) = (png_byte)((256 + *rp + *(rp + 1)) & 0xff);
5077 *(rp+2) = (png_byte)((256 + *(rp + 2) + *(rp + 1)) & 0xff);
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005078 }
5079 }
5080 else if (row_info->bit_depth == 16)
5081 {
5082 png_bytep rp;
5083 png_uint_32 i;
5084
5085 if (row_info->color_type == PNG_COLOR_TYPE_RGB)
5086 bytes_per_pixel = 6;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05005087
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005088 else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
5089 bytes_per_pixel = 8;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05005090
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005091 else
5092 return;
5093
5094 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel)
5095 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05005096 png_uint_32 s0 = (*(rp ) << 8) | *(rp + 1);
5097 png_uint_32 s1 = (*(rp + 2) << 8) | *(rp + 3);
5098 png_uint_32 s2 = (*(rp + 4) << 8) | *(rp + 5);
John Bowler75156122011-09-09 17:21:44 -05005099 png_uint_32 red = (s0 + s1 + 65536) & 0xffff;
5100 png_uint_32 blue = (s2 + s1 + 65536) & 0xffff;
Glenn Randers-Pehrsonbc363ec2010-10-12 21:17:00 -05005101 *(rp ) = (png_byte)((red >> 8) & 0xff);
Glenn Randers-Pehrson3ea36752010-03-03 09:35:31 -06005102 *(rp + 1) = (png_byte)(red & 0xff);
5103 *(rp + 4) = (png_byte)((blue >> 8) & 0xff);
5104 *(rp + 5) = (png_byte)(blue & 0xff);
Glenn Randers-Pehrson2ad31ae2000-12-15 08:54:42 -06005105 }
5106 }
5107 }
5108}
5109#endif /* PNG_MNG_FEATURES_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06005110#endif /* PNG_READ_SUPPORTED */