blob: f8df29a39eb74f85fee2ac061661266e89bad687 [file] [log] [blame]
Andreas Dilger47a0c421997-05-16 02:46:07 -05001
2/* pngset.c - storage of image information into info struct
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -06004 * Last changed in libpng 1.5.1 [(PENDING RELEASE)]
Glenn Randers-Pehrson64b863c2011-01-04 09:57:06 -06005 * Copyright (c) 1998-2011 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-Pehrsonb6ce43d1998-01-01 07:13:13 -060013 * The functions here are used during reads to store data from the file
14 * into the info struct, and during writes to store application data
15 * into the info struct for writing into the file. This abstracts the
16 * info struct and allows us to change the structure in the future.
17 */
Andreas Dilger47a0c421997-05-16 02:46:07 -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#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
22
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050023#ifdef PNG_bKGD_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050024void PNGAPI
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050025png_set_bKGD(png_structp png_ptr, png_infop info_ptr,
26 png_const_color_16p background)
Andreas Dilger47a0c421997-05-16 02:46:07 -050027{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -050028 png_debug1(1, "in %s storage function", "bKGD");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050029
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -060030 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -050031 return;
32
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050033 png_memcpy(&(info_ptr->background), background, png_sizeof(png_color_16));
Andreas Dilger47a0c421997-05-16 02:46:07 -050034 info_ptr->valid |= PNG_INFO_bKGD;
35}
36#endif
37
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050038#ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050039void PNGFAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060040png_set_cHRM_fixed(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -060041 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
42 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
43 png_fixed_point blue_x, png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060044{
Glenn Randers-Pehrsond6d80752008-12-02 09:49:43 -060045 png_debug1(1, "in %s storage function", "cHRM fixed");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050046
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060047 if (png_ptr == NULL || info_ptr == NULL)
48 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -050049
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -050050# ifdef PNG_CHECK_cHRM_SUPPORTED
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -060051 if (png_check_cHRM_fixed(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -060052 white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y))
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -050053# endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050054 {
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050055 info_ptr->x_white = white_x;
56 info_ptr->y_white = white_y;
57 info_ptr->x_red = red_x;
58 info_ptr->y_red = red_y;
59 info_ptr->x_green = green_x;
60 info_ptr->y_green = green_y;
61 info_ptr->x_blue = blue_x;
62 info_ptr->y_blue = blue_y;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050063 info_ptr->valid |= PNG_INFO_cHRM;
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -060064 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060065}
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050066
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -050067# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050068void PNGAPI
69png_set_cHRM(png_structp png_ptr, png_infop info_ptr,
70 double white_x, double white_y, double red_x, double red_y,
71 double green_x, double green_y, double blue_x, double blue_y)
72{
73 png_set_cHRM_fixed(png_ptr, info_ptr,
74 png_fixed(png_ptr, white_x, "cHRM White X"),
75 png_fixed(png_ptr, white_y, "cHRM White Y"),
76 png_fixed(png_ptr, red_x, "cHRM Red X"),
77 png_fixed(png_ptr, red_y, "cHRM Red Y"),
78 png_fixed(png_ptr, green_x, "cHRM Green X"),
79 png_fixed(png_ptr, green_y, "cHRM Green Y"),
80 png_fixed(png_ptr, blue_x, "cHRM Blue X"),
81 png_fixed(png_ptr, blue_y, "cHRM Blue Y"));
82}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -050083# endif /* PNG_FLOATING_POINT_SUPPORTED */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050084
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -060085#endif /* PNG_cHRM_SUPPORTED */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060086
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050087#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050088void PNGFAPI
89png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
John Bowler168a4332011-01-16 19:32:22 -060090 file_gamma)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050091{
92 png_debug1(1, "in %s storage function", "gAMA");
93
94 if (png_ptr == NULL || info_ptr == NULL)
95 return;
96
97 /* Previously these values were limited, however they must be
Glenn Randers-Pehrson363f96e2010-08-11 09:00:26 -050098 * wrong, therefore storing them (and setting PNG_INFO_gAMA)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050099 * must be wrong too.
100 */
John Bowler168a4332011-01-16 19:32:22 -0600101 if (file_gamma > (png_fixed_point)PNG_UINT_31_MAX)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500102 png_warning(png_ptr, "Gamma too large, ignored");
103
John Bowler168a4332011-01-16 19:32:22 -0600104 else if (file_gamma <= 0)
Glenn Randers-Pehrson363f96e2010-08-11 09:00:26 -0500105 png_warning(png_ptr, "Negative or zero gamma ignored");
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500106
107 else
108 {
John Bowler168a4332011-01-16 19:32:22 -0600109 info_ptr->gamma = file_gamma;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500110 info_ptr->valid |= PNG_INFO_gAMA;
111 }
112}
113
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500114# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500115void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500116png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
117{
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500118 png_set_gAMA_fixed(png_ptr, info_ptr, png_fixed(png_ptr, file_gamma,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500119 "png_set_gAMA"));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500120}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500121# endif
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500122#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500123
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500124#ifdef PNG_hIST_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500125void PNGAPI
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500126png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_const_uint_16p hist)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500127{
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500128 int i;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600129
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500130 png_debug1(1, "in %s storage function", "hIST");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500131
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600132 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500133 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500134
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500135 if (info_ptr->num_palette == 0 || info_ptr->num_palette
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600136 > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500137 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500138 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600139 "Invalid palette size, hIST allocation skipped");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500140
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500141 return;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500142 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500143
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600144 png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500145
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500146 /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
147 * version 1.2.1
148 */
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500149 png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600150 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_uint_16));
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500151
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500152 if (png_ptr->hist == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500153 {
154 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
155 return;
156 }
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600157
158 for (i = 0; i < info_ptr->num_palette; i++)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500159 png_ptr->hist[i] = hist[i];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500160
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600161 info_ptr->hist = png_ptr->hist;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500162 info_ptr->valid |= PNG_INFO_hIST;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600163 info_ptr->free_me |= PNG_FREE_HIST;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500164}
165#endif
166
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500167void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500168png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500169 png_uint_32 width, png_uint_32 height, int bit_depth,
170 int color_type, int interlace_type, int compression_type,
171 int filter_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500172{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500173 png_debug1(1, "in %s storage function", "IHDR");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500174
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600175 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500176 return;
177
178 info_ptr->width = width;
179 info_ptr->height = height;
180 info_ptr->bit_depth = (png_byte)bit_depth;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500181 info_ptr->color_type = (png_byte)color_type;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500182 info_ptr->compression_type = (png_byte)compression_type;
183 info_ptr->filter_type = (png_byte)filter_type;
184 info_ptr->interlace_type = (png_byte)interlace_type;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500185
186 png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
187 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
188 info_ptr->compression_type, info_ptr->filter_type);
189
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500190 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
191 info_ptr->channels = 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500192
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500193 else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500194 info_ptr->channels = 3;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500195
Andreas Dilger47a0c421997-05-16 02:46:07 -0500196 else
197 info_ptr->channels = 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500198
Andreas Dilger47a0c421997-05-16 02:46:07 -0500199 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
200 info_ptr->channels++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500201
Andreas Dilger47a0c421997-05-16 02:46:07 -0500202 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600203
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500204 /* Check for potential overflow */
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500205 if (width >
206 (PNG_UINT_32_MAX >> 3) /* 8-byte RRGGBBAA pixels */
207 - 48 /* bigrowbuf hack */
208 - 1 /* filter byte */
209 - 7*8 /* rounding of width to multiple of 8 pixels */
210 - 8) /* extra max_pixel_depth pad */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500211 info_ptr->rowbytes = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500212 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500213 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500214}
215
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500216#ifdef PNG_oFFs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500217void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500218png_set_oFFs(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600219 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500220{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500221 png_debug1(1, "in %s storage function", "oFFs");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500222
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600223 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500224 return;
225
226 info_ptr->x_offset = offset_x;
227 info_ptr->y_offset = offset_y;
228 info_ptr->offset_unit_type = (png_byte)unit_type;
229 info_ptr->valid |= PNG_INFO_oFFs;
230}
231#endif
232
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500233#ifdef PNG_pCAL_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500234void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500235png_set_pCAL(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500236 png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type,
237 int nparams, png_const_charp units, png_charpp params)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500238{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500239 png_size_t length;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600240 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500241
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500242 png_debug1(1, "in %s storage function", "pCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500243
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600244 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500245 return;
246
247 length = png_strlen(purpose) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500248 png_debug1(3, "allocating purpose for info (%lu bytes)",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600249 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500250
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500251 /* TODO: validate format of calibration name and unit name */
252
253 /* Check that the type matches the specification. */
254 if (type < 0 || type > 3)
255 png_error(png_ptr, "Invalid pCAL equation type");
256
257 /* Validate params[nparams] */
258 for (i=0; i<nparams; ++i)
259 if (!png_check_fp_string(params[i], png_strlen(params[i])))
260 png_error(png_ptr, "Invalid format for pCAL parameter");
261
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500262 info_ptr->pcal_purpose = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500263
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500264 if (info_ptr->pcal_purpose == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500265 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500266 png_warning(png_ptr, "Insufficient memory for pCAL purpose");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500267 return;
268 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500269
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500270 png_memcpy(info_ptr->pcal_purpose, purpose, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500271
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500272 png_debug(3, "storing X0, X1, type, and nparams in info");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500273 info_ptr->pcal_X0 = X0;
274 info_ptr->pcal_X1 = X1;
275 info_ptr->pcal_type = (png_byte)type;
276 info_ptr->pcal_nparams = (png_byte)nparams;
277
278 length = png_strlen(units) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500279 png_debug1(3, "allocating units for info (%lu bytes)",
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500280 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500281
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500282 info_ptr->pcal_units = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500283
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500284 if (info_ptr->pcal_units == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500285 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500286 png_warning(png_ptr, "Insufficient memory for pCAL units");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500287 return;
288 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500289
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500290 png_memcpy(info_ptr->pcal_units, units, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500291
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500292 info_ptr->pcal_params = (png_charpp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500293 (png_size_t)((nparams + 1) * png_sizeof(png_charp)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500294
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500295 if (info_ptr->pcal_params == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500296 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500297 png_warning(png_ptr, "Insufficient memory for pCAL params");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500298 return;
299 }
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500300
Glenn Randers-Pehrson0ffb71a2009-02-28 06:08:20 -0600301 png_memset(info_ptr->pcal_params, 0, (nparams + 1) * png_sizeof(png_charp));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500302
303 for (i = 0; i < nparams; i++)
304 {
305 length = png_strlen(params[i]) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500306 png_debug2(3, "allocating parameter %d for info (%lu bytes)", i,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500307 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500308
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500309 info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500310
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500311 if (info_ptr->pcal_params[i] == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500312 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500313 png_warning(png_ptr, "Insufficient memory for pCAL parameter");
314 return;
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500315 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500316
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500317 png_memcpy(info_ptr->pcal_params[i], params[i], length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500318 }
319
320 info_ptr->valid |= PNG_INFO_pCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500321 info_ptr->free_me |= PNG_FREE_PCAL;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500322}
323#endif
324
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500325#ifdef PNG_sCAL_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500326void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600327png_set_sCAL_s(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500328 int unit, png_const_charp swidth, png_const_charp sheight)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600329{
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500330 png_size_t lengthw = 0, lengthh = 0;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600331
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500332 png_debug1(1, "in %s storage function", "sCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500333
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600334 if (png_ptr == NULL || info_ptr == NULL)
335 return;
336
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500337 /* Double check the unit (should never get here with an invalid
338 * unit unless this is an API call.)
339 */
340 if (unit != 1 && unit != 2)
341 png_error(png_ptr, "Invalid sCAL unit");
342
343 if (swidth == NULL || (lengthw = png_strlen(swidth)) <= 0 ||
344 swidth[0] == 45 /*'-'*/ || !png_check_fp_string(swidth, lengthw))
345 png_error(png_ptr, "Invalid sCAL width");
346
347 if (sheight == NULL || (lengthh = png_strlen(sheight)) <= 0 ||
348 sheight[0] == 45 /*'-'*/ || !png_check_fp_string(sheight, lengthh))
349 png_error(png_ptr, "Invalid sCAL height");
350
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600351 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600352
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500353 ++lengthw;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500354
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600355 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthw);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500356
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500357 info_ptr->scal_s_width = (png_charp)png_malloc_warn(png_ptr, lengthw);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500358
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500359 if (info_ptr->scal_s_width == NULL)
360 {
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500361 png_warning(png_ptr, "Memory allocation failed while processing sCAL");
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500362 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500363 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500364
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500365 png_memcpy(info_ptr->scal_s_width, swidth, lengthw);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600366
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500367 ++lengthh;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500368
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600369 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthh);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500370
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500371 info_ptr->scal_s_height = (png_charp)png_malloc_warn(png_ptr, lengthh);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500372
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500373 if (info_ptr->scal_s_height == NULL)
374 {
375 png_free (png_ptr, info_ptr->scal_s_width);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500376 info_ptr->scal_s_width = NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500377
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500378 png_warning(png_ptr, "Memory allocation failed while processing sCAL");
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500379 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500380 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500381
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500382 png_memcpy(info_ptr->scal_s_height, sheight, lengthh);
383
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600384 info_ptr->valid |= PNG_INFO_sCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500385 info_ptr->free_me |= PNG_FREE_SCAL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600386}
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500387
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500388# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500389void PNGAPI
390png_set_sCAL(png_structp png_ptr, png_infop info_ptr, int unit, double width,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500391 double height)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500392{
393 png_debug1(1, "in %s storage function", "sCAL");
394
395 /* Check the arguments. */
396 if (width <= 0)
397 png_warning(png_ptr, "Invalid sCAL width ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500398
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500399 else if (height <= 0)
400 png_warning(png_ptr, "Invalid sCAL height ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500401
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500402 else
403 {
404 /* Convert 'width' and 'height' to ASCII. */
405 char swidth[PNG_sCAL_MAX_DIGITS+1];
406 char sheight[PNG_sCAL_MAX_DIGITS+1];
407
408 png_ascii_from_fp(png_ptr, swidth, sizeof swidth, width,
409 PNG_sCAL_PRECISION);
410 png_ascii_from_fp(png_ptr, sheight, sizeof sheight, height,
411 PNG_sCAL_PRECISION);
412
413 png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
414 }
415}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500416# endif
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500417
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500418# ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500419void PNGAPI
420png_set_sCAL_fixed(png_structp png_ptr, png_infop info_ptr, int unit,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500421 png_fixed_point width, png_fixed_point height)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500422{
423 png_debug1(1, "in %s storage function", "sCAL");
424
425 /* Check the arguments. */
426 if (width <= 0)
427 png_warning(png_ptr, "Invalid sCAL width ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500428
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500429 else if (height <= 0)
430 png_warning(png_ptr, "Invalid sCAL height ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500431
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500432 else
433 {
434 /* Convert 'width' and 'height' to ASCII. */
435 char swidth[PNG_sCAL_MAX_DIGITS+1];
436 char sheight[PNG_sCAL_MAX_DIGITS+1];
437
438 png_ascii_from_fixed(png_ptr, swidth, sizeof swidth, width);
439 png_ascii_from_fixed(png_ptr, sheight, sizeof sheight, height);
440
441 png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
442 }
443}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500444# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600445#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600446
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500447#ifdef PNG_pHYs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500448void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500449png_set_pHYs(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600450 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500451{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500452 png_debug1(1, "in %s storage function", "pHYs");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500453
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600454 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500455 return;
456
457 info_ptr->x_pixels_per_unit = res_x;
458 info_ptr->y_pixels_per_unit = res_y;
459 info_ptr->phys_unit_type = (png_byte)unit_type;
460 info_ptr->valid |= PNG_INFO_pHYs;
461}
462#endif
463
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500464void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500465png_set_PLTE(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500466 png_const_colorp palette, int num_palette)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500467{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600468
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500469 png_debug1(1, "in %s storage function", "PLTE");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500470
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600471 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500472 return;
473
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600474 if (num_palette < 0 || num_palette > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500475 {
476 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600477 png_error(png_ptr, "Invalid palette length");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500478
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500479 else
480 {
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600481 png_warning(png_ptr, "Invalid palette length");
482 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500483 }
484 }
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600485
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600486 /* It may not actually be necessary to set png_ptr->palette here;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600487 * we do it for backward compatibility with the way the png_handle_tRNS
488 * function used to do the allocation.
489 */
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600490 png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500491
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600492 /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500493 * of num_palette entries, in case of an invalid PNG file that has
494 * too-large sample values.
495 */
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600496 png_ptr->palette = (png_colorp)png_calloc(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600497 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_color));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500498
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500499 png_memcpy(png_ptr->palette, palette, num_palette * png_sizeof(png_color));
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600500 info_ptr->palette = png_ptr->palette;
501 info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600502
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600503 info_ptr->free_me |= PNG_FREE_PLTE;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600504
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600505 info_ptr->valid |= PNG_INFO_PLTE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500506}
507
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500508#ifdef PNG_sBIT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500509void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500510png_set_sBIT(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500511 png_const_color_8p sig_bit)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500512{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500513 png_debug1(1, "in %s storage function", "sBIT");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500514
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600515 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500516 return;
517
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500518 png_memcpy(&(info_ptr->sig_bit), sig_bit, png_sizeof(png_color_8));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500519 info_ptr->valid |= PNG_INFO_sBIT;
520}
521#endif
522
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500523#ifdef PNG_sRGB_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500524void PNGAPI
Glenn Randers-Pehrson8d0bc0f2011-01-25 22:15:58 -0600525png_set_sRGB(png_structp png_ptr, png_infop info_ptr, int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600526{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500527 png_debug1(1, "in %s storage function", "sRGB");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500528
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600529 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600530 return;
531
Glenn Randers-Pehrson8d0bc0f2011-01-25 22:15:58 -0600532 info_ptr->srgb_intent = (png_byte)srgb_intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600533 info_ptr->valid |= PNG_INFO_sRGB;
534}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600535
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500536void PNGAPI
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600537png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson8d0bc0f2011-01-25 22:15:58 -0600538 int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600539{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500540 png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500541
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600542 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600543 return;
544
Glenn Randers-Pehrson8d0bc0f2011-01-25 22:15:58 -0600545 png_set_sRGB(png_ptr, info_ptr, srgb_intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600546
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500547# ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500548 png_set_gAMA_fixed(png_ptr, info_ptr, 45455L);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500549# endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600550
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500551# ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson85b02372009-09-24 19:49:13 -0500552 png_set_cHRM_fixed(png_ptr, info_ptr,
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500553 /* color x y */
554 /* white */ 31270L, 32900L,
555 /* red */ 64000L, 33000L,
556 /* green */ 30000L, 60000L,
557 /* blue */ 15000L, 6000L
558 );
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500559# endif /* cHRM */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600560}
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600561#endif /* sRGB */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600562
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600563
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500564#ifdef PNG_iCCP_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500565void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600566png_set_iCCP(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500567 png_const_charp name, int compression_type,
568 png_const_bytep profile, png_uint_32 proflen)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600569{
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500570 png_charp new_iccp_name;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500571 png_bytep new_iccp_profile;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500572 png_uint_32 length;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500573
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500574 png_debug1(1, "in %s storage function", "iCCP");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500575
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600576 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
577 return;
578
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500579 length = png_strlen(name)+1;
580 new_iccp_name = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500581
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500582 if (new_iccp_name == NULL)
583 {
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600584 png_warning(png_ptr, "Insufficient memory to process iCCP chunk");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500585 return;
586 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500587
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500588 png_memcpy(new_iccp_name, name, length);
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500589 new_iccp_profile = (png_bytep)png_malloc_warn(png_ptr, proflen);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500590
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500591 if (new_iccp_profile == NULL)
592 {
593 png_free (png_ptr, new_iccp_name);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500594 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600595 "Insufficient memory to process iCCP profile");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500596 return;
597 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500598
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500599 png_memcpy(new_iccp_profile, profile, (png_size_t)proflen);
600
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500601 png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500602
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600603 info_ptr->iccp_proflen = proflen;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500604 info_ptr->iccp_name = new_iccp_name;
605 info_ptr->iccp_profile = new_iccp_profile;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600606 /* Compression is always zero but is here so the API and info structure
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600607 * does not have to change if we introduce multiple compression types
608 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600609 info_ptr->iccp_compression = (png_byte)compression_type;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600610 info_ptr->free_me |= PNG_FREE_ICCP;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600611 info_ptr->valid |= PNG_INFO_iCCP;
612}
613#endif
614
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500615#ifdef PNG_TEXT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500616void PNGAPI
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500617png_set_text(png_structp png_ptr, png_infop info_ptr, png_const_textp text_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600618 int num_text)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500619{
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500620 int ret;
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500621 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500622
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500623 if (ret)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500624 png_error(png_ptr, "Insufficient memory to store text");
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500625}
626
627int /* PRIVATE */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500628png_set_text_2(png_structp png_ptr, png_infop info_ptr,
629 png_const_textp text_ptr, int num_text)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500630{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500631 int i;
632
Glenn Randers-Pehrsone2a118f2009-07-27 22:08:25 -0500633 png_debug1(1, "in %s storage function", ((png_ptr == NULL ||
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500634 png_ptr->chunk_name[0] == '\0') ?
635 "text" : (png_const_charp)png_ptr->chunk_name));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500636
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600637 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500638 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500639
640 /* Make sure we have enough space in the "text" array in info_struct
641 * to hold all of the incoming text_ptr objects.
642 */
643 if (info_ptr->num_text + num_text > info_ptr->max_text)
644 {
645 if (info_ptr->text != NULL)
646 {
647 png_textp old_text;
648 int old_max;
649
650 old_max = info_ptr->max_text;
651 info_ptr->max_text = info_ptr->num_text + num_text + 8;
652 old_text = info_ptr->text;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500653 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500654 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500655
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500656 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500657 {
658 png_free(png_ptr, old_text);
659 return(1);
660 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500661
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600662 png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600663 png_sizeof(png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500664 png_free(png_ptr, old_text);
665 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500666
Andreas Dilger47a0c421997-05-16 02:46:07 -0500667 else
668 {
669 info_ptr->max_text = num_text + 8;
670 info_ptr->num_text = 0;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500671 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600672 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500673 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500674 return(1);
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500675 info_ptr->free_me |= PNG_FREE_TEXT;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500676 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500677
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500678 png_debug1(3, "allocated %d entries for info_ptr->text",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600679 info_ptr->max_text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500680 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500681 for (i = 0; i < num_text; i++)
682 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500683 png_size_t text_length, key_len;
684 png_size_t lang_len, lang_key_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500685 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
686
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500687 if (text_ptr[i].key == NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600688 continue;
689
Glenn Randers-Pehrson79b2d642010-10-13 07:31:14 -0500690 if (text_ptr[i].compression < PNG_TEXT_COMPRESSION_NONE ||
691 text_ptr[i].compression >= PNG_TEXT_COMPRESSION_LAST)
Glenn Randers-Pehrsone34f80e2010-10-13 06:55:30 -0500692 {
693 png_warning(png_ptr, "text compression mode is out of range");
694 continue;
695 }
696
Glenn Randers-Pehrson79b2d642010-10-13 07:31:14 -0500697 key_len = png_strlen(text_ptr[i].key);
698
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500699 if (text_ptr[i].compression <= 0)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500700 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500701 lang_len = 0;
702 lang_key_len = 0;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500703 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500704
Glenn Randers-Pehrsondd78d522010-03-30 08:34:02 -0500705 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500706# ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600707 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500708 /* Set iTXt data */
Glenn Randers-Pehrsond6ea40a2009-11-02 07:32:00 -0600709
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500710 if (text_ptr[i].lang != NULL)
711 lang_len = png_strlen(text_ptr[i].lang);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500712
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500713 else
714 lang_len = 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500715
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500716 if (text_ptr[i].lang_key != NULL)
717 lang_key_len = png_strlen(text_ptr[i].lang_key);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500718
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500719 else
720 lang_key_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600721 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500722# else /* PNG_iTXt_SUPPORTED */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500723 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500724 png_warning(png_ptr, "iTXt chunk not supported");
725 continue;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500726 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500727# endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500728
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500729 if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
Andreas Dilger47a0c421997-05-16 02:46:07 -0500730 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600731 text_length = 0;
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500732# ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500733 if (text_ptr[i].compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600734 textp->compression = PNG_ITXT_COMPRESSION_NONE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500735
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600736 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500737# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600738 textp->compression = PNG_TEXT_COMPRESSION_NONE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500739 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500740
Andreas Dilger47a0c421997-05-16 02:46:07 -0500741 else
742 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600743 text_length = png_strlen(text_ptr[i].text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500744 textp->compression = text_ptr[i].compression;
745 }
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500746
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500747 textp->key = (png_charp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600748 (png_size_t)
749 (key_len + text_length + lang_len + lang_key_len + 4));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500750
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500751 if (textp->key == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500752 return(1);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500753
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600754 png_debug2(2, "Allocated %lu bytes at %p in png_set_text",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600755 (unsigned long)(png_uint_32)
756 (key_len + lang_len + lang_key_len + text_length + 4),
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600757 textp->key);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500758
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500759 png_memcpy(textp->key, text_ptr[i].key,(png_size_t)(key_len));
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500760 *(textp->key + key_len) = '\0';
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500761
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600762 if (text_ptr[i].compression > 0)
763 {
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500764 textp->lang = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600765 png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500766 *(textp->lang + lang_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500767 textp->lang_key = textp->lang + lang_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600768 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500769 *(textp->lang_key + lang_key_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500770 textp->text = textp->lang_key + lang_key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600771 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500772
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600773 else
774 {
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500775 textp->lang=NULL;
776 textp->lang_key=NULL;
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500777 textp->text = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600778 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500779
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500780 if (text_length)
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500781 png_memcpy(textp->text, text_ptr[i].text,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600782 (png_size_t)(text_length));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500783
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500784 *(textp->text + text_length) = '\0';
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600785
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500786# ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500787 if (textp->compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600788 {
789 textp->text_length = 0;
790 textp->itxt_length = text_length;
791 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500792
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600793 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500794# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600795 {
796 textp->text_length = text_length;
797 textp->itxt_length = 0;
798 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500799
Andreas Dilger47a0c421997-05-16 02:46:07 -0500800 info_ptr->num_text++;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500801 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500802 }
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500803 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500804}
805#endif
806
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500807#ifdef PNG_tIME_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500808void PNGAPI
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500809png_set_tIME(png_structp png_ptr, png_infop info_ptr, png_const_timep mod_time)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500810{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500811 png_debug1(1, "in %s storage function", "tIME");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500812
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500813 if (png_ptr == NULL || info_ptr == NULL ||
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600814 (png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500815 return;
816
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500817 png_memcpy(&(info_ptr->mod_time), mod_time, png_sizeof(png_time));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500818 info_ptr->valid |= PNG_INFO_tIME;
819}
820#endif
821
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500822#ifdef PNG_tRNS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500823void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500824png_set_tRNS(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500825 png_const_bytep trans_alpha, int num_trans, png_const_color_16p trans_color)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500826{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500827 png_debug1(1, "in %s storage function", "tRNS");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500828
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600829 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500830 return;
831
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500832 if (trans_alpha != NULL)
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600833 {
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500834 /* It may not actually be necessary to set png_ptr->trans_alpha here;
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500835 * we do it for backward compatibility with the way the png_handle_tRNS
836 * function used to do the allocation.
837 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500838
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600839 png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500840
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600841 /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500842 png_ptr->trans_alpha = info_ptr->trans_alpha =
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500843 (png_bytep)png_malloc(png_ptr, (png_size_t)PNG_MAX_PALETTE_LENGTH);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500844
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500845 if (num_trans > 0 && num_trans <= PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500846 png_memcpy(info_ptr->trans_alpha, trans_alpha, (png_size_t)num_trans);
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600847 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500848
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500849 if (trans_color != NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500850 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500851 int sample_max = (1 << info_ptr->bit_depth);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500852
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500853 if ((info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500854 (int)trans_color->gray > sample_max) ||
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500855 (info_ptr->color_type == PNG_COLOR_TYPE_RGB &&
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500856 ((int)trans_color->red > sample_max ||
857 (int)trans_color->green > sample_max ||
858 (int)trans_color->blue > sample_max)))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500859 png_warning(png_ptr,
860 "tRNS chunk has out-of-range samples for bit_depth");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500861
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500862 png_memcpy(&(info_ptr->trans_color), trans_color,
863 png_sizeof(png_color_16));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500864
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600865 if (num_trans == 0)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500866 num_trans = 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500867 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500868
Andreas Dilger47a0c421997-05-16 02:46:07 -0500869 info_ptr->num_trans = (png_uint_16)num_trans;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500870
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500871 if (num_trans != 0)
872 {
873 info_ptr->valid |= PNG_INFO_tRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500874 info_ptr->free_me |= PNG_FREE_TRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500875 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500876}
877#endif
878
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500879#ifdef PNG_sPLT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500880void PNGAPI
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600881png_set_sPLT(png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500882 png_infop info_ptr, png_const_sPLT_tp entries, int nentries)
Glenn Randers-Pehrson3779c692006-11-07 20:38:11 -0600883/*
884 * entries - array of png_sPLT_t structures
885 * to be added to the list of palettes
886 * in the info structure.
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500887 *
Glenn Randers-Pehrson3779c692006-11-07 20:38:11 -0600888 * nentries - number of palette structures to be
889 * added.
890 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600891{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500892 png_sPLT_tp np;
893 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600894
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500895 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500896 return;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600897
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500898 np = (png_sPLT_tp)png_malloc_warn(png_ptr,
899 (info_ptr->splt_palettes_num + nentries) *
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500900 (png_size_t)png_sizeof(png_sPLT_t));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500901
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500902 if (np == NULL)
903 {
904 png_warning(png_ptr, "No memory for sPLT palettes");
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600905 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500906 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600907
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500908 png_memcpy(np, info_ptr->splt_palettes,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600909 info_ptr->splt_palettes_num * png_sizeof(png_sPLT_t));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500910
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500911 png_free(png_ptr, info_ptr->splt_palettes);
912 info_ptr->splt_palettes=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600913
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500914 for (i = 0; i < nentries; i++)
915 {
916 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500917 png_const_sPLT_tp from = entries + i;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500918 png_uint_32 length;
919
920 length = png_strlen(from->name) + 1;
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600921 to->name = (png_charp)png_malloc_warn(png_ptr, (png_size_t)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500922
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500923 if (to->name == NULL)
924 {
925 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600926 "Out of memory while processing sPLT chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500927 continue;
928 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500929
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500930 png_memcpy(to->name, from->name, length);
931 to->entries = (png_sPLT_entryp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600932 (png_size_t)(from->nentries * png_sizeof(png_sPLT_entry)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500933
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500934 if (to->entries == NULL)
935 {
936 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600937 "Out of memory while processing sPLT chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500938 png_free(png_ptr, to->name);
939 to->name = NULL;
940 continue;
941 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500942
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500943 png_memcpy(to->entries, from->entries,
944 from->nentries * png_sizeof(png_sPLT_entry));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500945
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500946 to->nentries = from->nentries;
947 to->depth = from->depth;
948 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600949
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500950 info_ptr->splt_palettes = np;
951 info_ptr->splt_palettes_num += nentries;
952 info_ptr->valid |= PNG_INFO_sPLT;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500953 info_ptr->free_me |= PNG_FREE_SPLT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600954}
955#endif /* PNG_sPLT_SUPPORTED */
956
Glenn Randers-Pehrson6ba90882009-12-25 14:26:13 -0600957#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500958void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600959png_set_unknown_chunks(png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500960 png_infop info_ptr, png_const_unknown_chunkp unknowns, int num_unknowns)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600961{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500962 png_unknown_chunkp np;
963 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600964
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500965 if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500966 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600967
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500968 np = (png_unknown_chunkp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500969 (png_size_t)(info_ptr->unknown_chunks_num + num_unknowns) *
970 png_sizeof(png_unknown_chunk));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500971
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500972 if (np == NULL)
973 {
974 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600975 "Out of memory while processing unknown chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500976 return;
977 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600978
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500979 png_memcpy(np, info_ptr->unknown_chunks,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -0500980 (png_size_t)info_ptr->unknown_chunks_num *
981 png_sizeof(png_unknown_chunk));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500982
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500983 png_free(png_ptr, info_ptr->unknown_chunks);
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600984 info_ptr->unknown_chunks = NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600985
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500986 for (i = 0; i < num_unknowns; i++)
987 {
988 png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500989 png_const_unknown_chunkp from = unknowns + i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600990
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500991 png_memcpy(to->name, from->name, png_sizeof(from->name));
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500992 to->name[png_sizeof(to->name)-1] = '\0';
993 to->size = from->size;
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500994
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500995 /* Note our location in the read or write sequence */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500996 to->location = (png_byte)(png_ptr->mode & 0xff);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600997
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500998 if (from->size == 0)
999 to->data=NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001000
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001001 else
1002 {
1003 to->data = (png_bytep)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001004 (png_size_t)from->size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001005
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001006 if (to->data == NULL)
1007 {
1008 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001009 "Out of memory while processing unknown chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001010 to->size = 0;
1011 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001012
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001013 else
1014 png_memcpy(to->data, from->data, from->size);
1015 }
1016 }
1017
1018 info_ptr->unknown_chunks = np;
1019 info_ptr->unknown_chunks_num += num_unknowns;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001020 info_ptr->free_me |= PNG_FREE_UNKN;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001021}
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001022
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001023void PNGAPI
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001024png_set_unknown_chunk_location(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001025 int chunk, int location)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001026{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001027 if (png_ptr != NULL && info_ptr != NULL && chunk >= 0 && chunk <
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001028 info_ptr->unknown_chunks_num)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001029 info_ptr->unknown_chunks[chunk].location = (png_byte)location;
1030}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001031#endif
1032
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001033
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001034#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001035png_uint_32 PNGAPI
1036png_permit_mng_features (png_structp png_ptr, png_uint_32 mng_features)
1037{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001038 png_debug(1, "in png_permit_mng_features");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001039
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001040 if (png_ptr == NULL)
1041 return (png_uint_32)0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001042
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001043 png_ptr->mng_features_permitted =
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001044 (png_byte)(mng_features & PNG_ALL_MNG_FEATURES);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001045
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001046 return (png_uint_32)png_ptr->mng_features_permitted;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001047}
1048#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001049
Glenn Randers-Pehrson6ba90882009-12-25 14:26:13 -06001050#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001051void PNGAPI
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001052png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_const_bytep
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001053 chunk_list, int num_chunks)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001054{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001055 png_bytep new_list, p;
1056 int i, old_num_chunks;
1057 if (png_ptr == NULL)
1058 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001059
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001060 if (num_chunks == 0)
1061 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001062 if (keep == PNG_HANDLE_CHUNK_ALWAYS || keep == PNG_HANDLE_CHUNK_IF_SAFE)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001063 png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001064
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001065 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001066 png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001067
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001068 if (keep == PNG_HANDLE_CHUNK_ALWAYS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001069 png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001070
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001071 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001072 png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001073
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001074 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001075 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001076
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001077 if (chunk_list == NULL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001078 return;
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001079
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001080 old_num_chunks = png_ptr->num_chunk_list;
1081 new_list=(png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001082 (png_size_t)(5*(num_chunks + old_num_chunks)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001083
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001084 if (png_ptr->chunk_list != NULL)
1085 {
1086 png_memcpy(new_list, png_ptr->chunk_list,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001087 (png_size_t)(5*old_num_chunks));
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001088 png_free(png_ptr, png_ptr->chunk_list);
1089 png_ptr->chunk_list=NULL;
1090 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001091
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001092 png_memcpy(new_list + 5*old_num_chunks, chunk_list,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001093 (png_size_t)(5*num_chunks));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001094
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001095 for (p = new_list + 5*old_num_chunks + 4, i = 0; i<num_chunks; i++, p += 5)
1096 *p=(png_byte)keep;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001097
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001098 png_ptr->num_chunk_list = old_num_chunks + num_chunks;
1099 png_ptr->chunk_list = new_list;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001100 png_ptr->free_me |= PNG_FREE_LIST;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001101}
1102#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001103
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001104#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001105void PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001106png_set_read_user_chunk_fn(png_structp png_ptr, png_voidp user_chunk_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001107 png_user_chunk_ptr read_user_chunk_fn)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001108{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001109 png_debug(1, "in png_set_read_user_chunk_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001110
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001111 if (png_ptr == NULL)
1112 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -05001113
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001114 png_ptr->read_user_chunk_fn = read_user_chunk_fn;
1115 png_ptr->user_chunk_ptr = user_chunk_ptr;
1116}
1117#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001118
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001119#ifdef PNG_INFO_IMAGE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001120void PNGAPI
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001121png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers)
1122{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001123 png_debug1(1, "in %s storage function", "rows");
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001124
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001125 if (png_ptr == NULL || info_ptr == NULL)
1126 return;
1127
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001128 if (info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001129 png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001130
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001131 info_ptr->row_pointers = row_pointers;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001132
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001133 if (row_pointers)
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001134 info_ptr->valid |= PNG_INFO_IDAT;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001135}
1136#endif
1137
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001138void PNGAPI
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001139png_set_compression_buffer_size(png_structp png_ptr, png_size_t size)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001140{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001141 if (png_ptr == NULL)
1142 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001143
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001144 png_free(png_ptr, png_ptr->zbuf);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001145
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001146 if (size > ZLIB_IO_MAX)
1147 {
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001148 png_warning(png_ptr, "Attempt to set buffer size beyond max ignored");
1149 png_ptr->zbuf_size = ZLIB_IO_MAX;
1150 size = ZLIB_IO_MAX; /* must fit */
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001151 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001152
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001153 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001154 png_ptr->zbuf_size = (uInt)size;
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001155
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001156 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr, size);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001157
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001158 /* The following ensures a relatively safe failure if this gets called while
1159 * the buffer is actually in use.
1160 */
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001161 png_ptr->zstream.next_out = png_ptr->zbuf;
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001162 png_ptr->zstream.avail_out = 0;
1163 png_ptr->zstream.avail_in = 0;
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001164}
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001165
1166void PNGAPI
1167png_set_invalid(png_structp png_ptr, png_infop info_ptr, int mask)
1168{
1169 if (png_ptr && info_ptr)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001170 info_ptr->valid &= ~mask;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001171}
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06001172
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -05001173
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001174
1175#ifdef PNG_SET_USER_LIMITS_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001176/* This function was added to libpng 1.2.6 */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001177void PNGAPI
1178png_set_user_limits (png_structp png_ptr, png_uint_32 user_width_max,
1179 png_uint_32 user_height_max)
1180{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001181 /* Images with dimensions larger than these limits will be
1182 * rejected by png_set_IHDR(). To accept any PNG datastream
1183 * regardless of dimensions, set both limits to 0x7ffffffL.
1184 */
1185 if (png_ptr == NULL)
1186 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001187
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001188 png_ptr->user_width_max = user_width_max;
1189 png_ptr->user_height_max = user_height_max;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001190}
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001191
Glenn Randers-Pehrson17ca3402009-11-09 06:51:16 -06001192/* This function was added to libpng 1.4.0 */
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001193void PNGAPI
1194png_set_chunk_cache_max (png_structp png_ptr,
1195 png_uint_32 user_chunk_cache_max)
1196{
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001197 if (png_ptr)
1198 png_ptr->user_chunk_cache_max = user_chunk_cache_max;
1199}
1200
1201/* This function was added to libpng 1.4.1 */
1202void PNGAPI
1203png_set_chunk_malloc_max (png_structp png_ptr,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001204 png_alloc_size_t user_chunk_malloc_max)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001205{
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001206 if (png_ptr)
1207 png_ptr->user_chunk_malloc_max = user_chunk_malloc_max;
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001208}
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001209#endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */
1210
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001211
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001212#ifdef PNG_BENIGN_ERRORS_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001213void PNGAPI
1214png_set_benign_errors(png_structp png_ptr, int allowed)
1215{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001216 png_debug(1, "in png_set_benign_errors");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001217
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001218 if (allowed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001219 png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001220
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001221 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001222 png_ptr->flags &= ~PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001223}
1224#endif /* PNG_BENIGN_ERRORS_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06001225#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */