blob: 1c6d75155cb784dcc258907df2efd8f385b9b3b7 [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-Pehrson67ee8ce2011-12-22 08:21:00 -06004 * Last changed in libpng 1.6.0 [(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
John Bowler4f67e402011-12-28 08:43:37 -060025png_set_bKGD(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050026 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
John Bowlerfcd301d2011-12-28 21:34:27 -060030 if (png_ptr == NULL || info_ptr == NULL || background == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -050031 return;
32
John Bowlerfcd301d2011-12-28 21:34:27 -060033 info_ptr->background = *background;
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
John Bowler4f67e402011-12-28 08:43:37 -060040png_set_cHRM_fixed(png_const_structrp png_ptr, png_inforp 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
John Bowler736f40f2011-08-25 16:19:44 -050067void PNGFAPI
John Bowler4f67e402011-12-28 08:43:37 -060068png_set_cHRM_XYZ_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
John Bowler736f40f2011-08-25 16:19:44 -050069 png_fixed_point int_red_X, png_fixed_point int_red_Y,
70 png_fixed_point int_red_Z, png_fixed_point int_green_X,
71 png_fixed_point int_green_Y, png_fixed_point int_green_Z,
72 png_fixed_point int_blue_X, png_fixed_point int_blue_Y,
73 png_fixed_point int_blue_Z)
74{
75 png_XYZ XYZ;
76 png_xy xy;
77
78 png_debug1(1, "in %s storage function", "cHRM XYZ fixed");
79
80 if (png_ptr == NULL || info_ptr == NULL)
81 return;
82
83 XYZ.redX = int_red_X;
84 XYZ.redY = int_red_Y;
85 XYZ.redZ = int_red_Z;
86 XYZ.greenX = int_green_X;
87 XYZ.greenY = int_green_Y;
88 XYZ.greenZ = int_green_Z;
89 XYZ.blueX = int_blue_X;
90 XYZ.blueY = int_blue_Y;
91 XYZ.blueZ = int_blue_Z;
92
93 if (png_xy_from_XYZ(&xy, XYZ))
94 png_error(png_ptr, "XYZ values out of representable range");
95
96 png_set_cHRM_fixed(png_ptr, info_ptr, xy.whitex, xy.whitey, xy.redx, xy.redy,
97 xy.greenx, xy.greeny, xy.bluex, xy.bluey);
98}
99
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500100# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500101void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600102png_set_cHRM(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500103 double white_x, double white_y, double red_x, double red_y,
104 double green_x, double green_y, double blue_x, double blue_y)
105{
106 png_set_cHRM_fixed(png_ptr, info_ptr,
107 png_fixed(png_ptr, white_x, "cHRM White X"),
108 png_fixed(png_ptr, white_y, "cHRM White Y"),
109 png_fixed(png_ptr, red_x, "cHRM Red X"),
110 png_fixed(png_ptr, red_y, "cHRM Red Y"),
111 png_fixed(png_ptr, green_x, "cHRM Green X"),
112 png_fixed(png_ptr, green_y, "cHRM Green Y"),
113 png_fixed(png_ptr, blue_x, "cHRM Blue X"),
114 png_fixed(png_ptr, blue_y, "cHRM Blue Y"));
115}
John Bowler736f40f2011-08-25 16:19:44 -0500116
117void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600118png_set_cHRM_XYZ(png_const_structrp png_ptr, png_inforp info_ptr, double red_X,
John Bowler736f40f2011-08-25 16:19:44 -0500119 double red_Y, double red_Z, double green_X, double green_Y, double green_Z,
120 double blue_X, double blue_Y, double blue_Z)
121{
122 png_set_cHRM_XYZ_fixed(png_ptr, info_ptr,
123 png_fixed(png_ptr, red_X, "cHRM Red X"),
124 png_fixed(png_ptr, red_Y, "cHRM Red Y"),
125 png_fixed(png_ptr, red_Z, "cHRM Red Z"),
126 png_fixed(png_ptr, green_X, "cHRM Red X"),
127 png_fixed(png_ptr, green_Y, "cHRM Red Y"),
128 png_fixed(png_ptr, green_Z, "cHRM Red Z"),
129 png_fixed(png_ptr, blue_X, "cHRM Red X"),
130 png_fixed(png_ptr, blue_Y, "cHRM Red Y"),
131 png_fixed(png_ptr, blue_Z, "cHRM Red Z"));
132}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500133# endif /* PNG_FLOATING_POINT_SUPPORTED */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500134
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -0600135#endif /* PNG_cHRM_SUPPORTED */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600136
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500137#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500138void PNGFAPI
John Bowler4f67e402011-12-28 08:43:37 -0600139png_set_gAMA_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
140 png_fixed_point file_gamma)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500141{
142 png_debug1(1, "in %s storage function", "gAMA");
143
144 if (png_ptr == NULL || info_ptr == NULL)
145 return;
146
John Bowlerd2f0bc22011-06-11 06:42:06 -0500147 /* Changed in libpng-1.5.4 to limit the values to ensure overflow can't
148 * occur. Since the fixed point representation is assymetrical it is
149 * possible for 1/gamma to overflow the limit of 21474 and this means the
150 * gamma value must be at least 5/100000 and hence at most 20000.0. For
151 * safety the limits here are a little narrower. The values are 0.00016 to
Glenn Randers-Pehrson0bc79772011-08-11 09:01:57 -0500152 * 6250.0, which are truly ridiculous gammma values (and will produce
John Bowlerd2f0bc22011-06-11 06:42:06 -0500153 * displays that are all black or all white.)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500154 */
John Bowlerd2f0bc22011-06-11 06:42:06 -0500155 if (file_gamma < 16 || file_gamma > 625000000)
156 png_warning(png_ptr, "Out of range gamma value ignored");
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500157
158 else
159 {
John Bowler168a4332011-01-16 19:32:22 -0600160 info_ptr->gamma = file_gamma;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500161 info_ptr->valid |= PNG_INFO_gAMA;
162 }
163}
164
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500165# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500166void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600167png_set_gAMA(png_const_structrp png_ptr, png_inforp info_ptr, double file_gamma)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500168{
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500169 png_set_gAMA_fixed(png_ptr, info_ptr, png_fixed(png_ptr, file_gamma,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500170 "png_set_gAMA"));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500171}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500172# endif
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500173#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500174
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500175#ifdef PNG_hIST_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500176void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600177png_set_hIST(png_const_structrp png_ptr, png_inforp info_ptr,
178 png_const_uint_16p hist)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500179{
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500180 int i;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600181
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500182 png_debug1(1, "in %s storage function", "hIST");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500183
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600184 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500185 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500186
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500187 if (info_ptr->num_palette == 0 || info_ptr->num_palette
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600188 > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500189 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500190 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600191 "Invalid palette size, hIST allocation skipped");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500192
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500193 return;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500194 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500195
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600196 png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500197
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500198 /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
199 * version 1.2.1
200 */
John Bowler4f67e402011-12-28 08:43:37 -0600201 info_ptr->hist = png_voidcast(png_uint_16p, png_malloc_warn(png_ptr,
202 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_uint_16)));
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500203
John Bowler4f67e402011-12-28 08:43:37 -0600204 if (info_ptr->hist == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500205 {
206 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
207 return;
208 }
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600209
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600210 info_ptr->free_me |= PNG_FREE_HIST;
John Bowler4f67e402011-12-28 08:43:37 -0600211
212 for (i = 0; i < info_ptr->num_palette; i++)
213 info_ptr->hist[i] = hist[i];
214
215 info_ptr->valid |= PNG_INFO_hIST;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500216}
217#endif
218
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500219void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600220png_set_IHDR(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500221 png_uint_32 width, png_uint_32 height, int bit_depth,
222 int color_type, int interlace_type, int compression_type,
223 int filter_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500224{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500225 png_debug1(1, "in %s storage function", "IHDR");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500226
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600227 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500228 return;
229
230 info_ptr->width = width;
231 info_ptr->height = height;
232 info_ptr->bit_depth = (png_byte)bit_depth;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500233 info_ptr->color_type = (png_byte)color_type;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500234 info_ptr->compression_type = (png_byte)compression_type;
235 info_ptr->filter_type = (png_byte)filter_type;
236 info_ptr->interlace_type = (png_byte)interlace_type;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500237
238 png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
239 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
240 info_ptr->compression_type, info_ptr->filter_type);
241
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500242 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
243 info_ptr->channels = 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500244
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500245 else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500246 info_ptr->channels = 3;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500247
Andreas Dilger47a0c421997-05-16 02:46:07 -0500248 else
249 info_ptr->channels = 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500250
Andreas Dilger47a0c421997-05-16 02:46:07 -0500251 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
252 info_ptr->channels++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500253
Andreas Dilger47a0c421997-05-16 02:46:07 -0500254 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600255
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500256 /* Check for potential overflow */
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500257 if (width >
258 (PNG_UINT_32_MAX >> 3) /* 8-byte RRGGBBAA pixels */
259 - 48 /* bigrowbuf hack */
260 - 1 /* filter byte */
261 - 7*8 /* rounding of width to multiple of 8 pixels */
262 - 8) /* extra max_pixel_depth pad */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500263 info_ptr->rowbytes = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500264 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500265 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500266}
267
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500268#ifdef PNG_oFFs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500269void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600270png_set_oFFs(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600271 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500272{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500273 png_debug1(1, "in %s storage function", "oFFs");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500274
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600275 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500276 return;
277
278 info_ptr->x_offset = offset_x;
279 info_ptr->y_offset = offset_y;
280 info_ptr->offset_unit_type = (png_byte)unit_type;
281 info_ptr->valid |= PNG_INFO_oFFs;
282}
283#endif
284
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500285#ifdef PNG_pCAL_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500286void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600287png_set_pCAL(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500288 png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type,
289 int nparams, png_const_charp units, png_charpp params)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500290{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500291 png_size_t length;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600292 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500293
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500294 png_debug1(1, "in %s storage function", "pCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500295
John Bowlerfcd301d2011-12-28 21:34:27 -0600296 if (png_ptr == NULL || info_ptr == NULL || purpose == NULL || units == NULL
297 || (nparams > 0 && params == NULL))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500298 return;
299
300 length = png_strlen(purpose) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500301 png_debug1(3, "allocating purpose for info (%lu bytes)",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600302 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500303
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500304 /* TODO: validate format of calibration name and unit name */
305
306 /* Check that the type matches the specification. */
307 if (type < 0 || type > 3)
308 png_error(png_ptr, "Invalid pCAL equation type");
309
John Bowlerfcd301d2011-12-28 21:34:27 -0600310 if (nparams < 0 || nparams > 255)
311 png_error(png_ptr, "Invalid pCAL parameter count");
312
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500313 /* Validate params[nparams] */
314 for (i=0; i<nparams; ++i)
John Bowlerfcd301d2011-12-28 21:34:27 -0600315 if (params[i] == NULL ||
316 !png_check_fp_string(params[i], png_strlen(params[i])))
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500317 png_error(png_ptr, "Invalid format for pCAL parameter");
318
John Bowlerfcd301d2011-12-28 21:34:27 -0600319 info_ptr->pcal_purpose = png_voidcast(png_charp,
320 png_malloc_warn(png_ptr, length));
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500321
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500322 if (info_ptr->pcal_purpose == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500323 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500324 png_warning(png_ptr, "Insufficient memory for pCAL purpose");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500325 return;
326 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500327
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500328 png_memcpy(info_ptr->pcal_purpose, purpose, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500329
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500330 png_debug(3, "storing X0, X1, type, and nparams in info");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500331 info_ptr->pcal_X0 = X0;
332 info_ptr->pcal_X1 = X1;
333 info_ptr->pcal_type = (png_byte)type;
334 info_ptr->pcal_nparams = (png_byte)nparams;
335
336 length = png_strlen(units) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500337 png_debug1(3, "allocating units for info (%lu bytes)",
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500338 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500339
John Bowlerfcd301d2011-12-28 21:34:27 -0600340 info_ptr->pcal_units = png_voidcast(png_charp,
341 png_malloc_warn(png_ptr, length));
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500342
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500343 if (info_ptr->pcal_units == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500344 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500345 png_warning(png_ptr, "Insufficient memory for pCAL units");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500346 return;
347 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500348
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500349 png_memcpy(info_ptr->pcal_units, units, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500350
John Bowlerfcd301d2011-12-28 21:34:27 -0600351 info_ptr->pcal_params = png_voidcast(png_charpp, png_malloc_warn(png_ptr,
352 (png_size_t)((nparams + 1) * png_sizeof(png_charp))));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500353
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500354 if (info_ptr->pcal_params == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500355 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500356 png_warning(png_ptr, "Insufficient memory for pCAL params");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500357 return;
358 }
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500359
Glenn Randers-Pehrson0ffb71a2009-02-28 06:08:20 -0600360 png_memset(info_ptr->pcal_params, 0, (nparams + 1) * png_sizeof(png_charp));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500361
362 for (i = 0; i < nparams; i++)
363 {
364 length = png_strlen(params[i]) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500365 png_debug2(3, "allocating parameter %d for info (%lu bytes)", i,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500366 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500367
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500368 info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500369
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500370 if (info_ptr->pcal_params[i] == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500371 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500372 png_warning(png_ptr, "Insufficient memory for pCAL parameter");
373 return;
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500374 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500375
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500376 png_memcpy(info_ptr->pcal_params[i], params[i], length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500377 }
378
379 info_ptr->valid |= PNG_INFO_pCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500380 info_ptr->free_me |= PNG_FREE_PCAL;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500381}
382#endif
383
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500384#ifdef PNG_sCAL_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500385void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600386png_set_sCAL_s(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500387 int unit, png_const_charp swidth, png_const_charp sheight)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600388{
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500389 png_size_t lengthw = 0, lengthh = 0;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600390
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500391 png_debug1(1, "in %s storage function", "sCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500392
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600393 if (png_ptr == NULL || info_ptr == NULL)
394 return;
395
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500396 /* Double check the unit (should never get here with an invalid
397 * unit unless this is an API call.)
398 */
399 if (unit != 1 && unit != 2)
400 png_error(png_ptr, "Invalid sCAL unit");
401
John Bowlerd2f0bc22011-06-11 06:42:06 -0500402 if (swidth == NULL || (lengthw = png_strlen(swidth)) == 0 ||
Glenn Randers-Pehrsonb75b2412011-04-16 19:35:05 -0500403 swidth[0] == 45 /* '-' */ || !png_check_fp_string(swidth, lengthw))
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500404 png_error(png_ptr, "Invalid sCAL width");
405
John Bowlerd2f0bc22011-06-11 06:42:06 -0500406 if (sheight == NULL || (lengthh = png_strlen(sheight)) == 0 ||
Glenn Randers-Pehrsonb75b2412011-04-16 19:35:05 -0500407 sheight[0] == 45 /* '-' */ || !png_check_fp_string(sheight, lengthh))
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500408 png_error(png_ptr, "Invalid sCAL height");
409
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600410 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600411
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500412 ++lengthw;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500413
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600414 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthw);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500415
John Bowlerfcd301d2011-12-28 21:34:27 -0600416 info_ptr->scal_s_width = png_voidcast(png_charp,
417 png_malloc_warn(png_ptr, lengthw));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500418
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500419 if (info_ptr->scal_s_width == NULL)
420 {
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500421 png_warning(png_ptr, "Memory allocation failed while processing sCAL");
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500422 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500423 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500424
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500425 png_memcpy(info_ptr->scal_s_width, swidth, lengthw);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600426
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500427 ++lengthh;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500428
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600429 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthh);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500430
John Bowlerfcd301d2011-12-28 21:34:27 -0600431 info_ptr->scal_s_height = png_voidcast(png_charp,
432 png_malloc_warn(png_ptr, lengthh));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500433
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500434 if (info_ptr->scal_s_height == NULL)
435 {
436 png_free (png_ptr, info_ptr->scal_s_width);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500437 info_ptr->scal_s_width = NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500438
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500439 png_warning(png_ptr, "Memory allocation failed while processing sCAL");
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500440 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500441 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500442
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500443 png_memcpy(info_ptr->scal_s_height, sheight, lengthh);
444
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600445 info_ptr->valid |= PNG_INFO_sCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500446 info_ptr->free_me |= PNG_FREE_SCAL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600447}
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500448
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500449# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500450void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600451png_set_sCAL(png_const_structrp png_ptr, png_inforp info_ptr, int unit,
452 double width, double height)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500453{
454 png_debug1(1, "in %s storage function", "sCAL");
455
456 /* Check the arguments. */
457 if (width <= 0)
458 png_warning(png_ptr, "Invalid sCAL width ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500459
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500460 else if (height <= 0)
461 png_warning(png_ptr, "Invalid sCAL height ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500462
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500463 else
464 {
465 /* Convert 'width' and 'height' to ASCII. */
466 char swidth[PNG_sCAL_MAX_DIGITS+1];
467 char sheight[PNG_sCAL_MAX_DIGITS+1];
468
469 png_ascii_from_fp(png_ptr, swidth, sizeof swidth, width,
470 PNG_sCAL_PRECISION);
471 png_ascii_from_fp(png_ptr, sheight, sizeof sheight, height,
472 PNG_sCAL_PRECISION);
473
474 png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
475 }
476}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500477# endif
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500478
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500479# ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500480void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600481png_set_sCAL_fixed(png_const_structrp png_ptr, png_inforp info_ptr, int unit,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500482 png_fixed_point width, png_fixed_point height)
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500483{
484 png_debug1(1, "in %s storage function", "sCAL");
485
486 /* Check the arguments. */
487 if (width <= 0)
488 png_warning(png_ptr, "Invalid sCAL width ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500489
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500490 else if (height <= 0)
491 png_warning(png_ptr, "Invalid sCAL height ignored");
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500492
Glenn Randers-Pehrson4009a762010-07-31 06:34:36 -0500493 else
494 {
495 /* Convert 'width' and 'height' to ASCII. */
496 char swidth[PNG_sCAL_MAX_DIGITS+1];
497 char sheight[PNG_sCAL_MAX_DIGITS+1];
498
499 png_ascii_from_fixed(png_ptr, swidth, sizeof swidth, width);
500 png_ascii_from_fixed(png_ptr, sheight, sizeof sheight, height);
501
502 png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
503 }
504}
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500505# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600506#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600507
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500508#ifdef PNG_pHYs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500509void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600510png_set_pHYs(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600511 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500512{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500513 png_debug1(1, "in %s storage function", "pHYs");
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
518 info_ptr->x_pixels_per_unit = res_x;
519 info_ptr->y_pixels_per_unit = res_y;
520 info_ptr->phys_unit_type = (png_byte)unit_type;
521 info_ptr->valid |= PNG_INFO_pHYs;
522}
523#endif
524
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500525void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600526png_set_PLTE(png_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500527 png_const_colorp palette, int num_palette)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500528{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600529
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500530 png_debug1(1, "in %s storage function", "PLTE");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500531
John Bowlerfcd301d2011-12-28 21:34:27 -0600532 if (png_ptr == NULL || info_ptr == NULL || palette == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500533 return;
534
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600535 if (num_palette < 0 || num_palette > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500536 {
537 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600538 png_error(png_ptr, "Invalid palette length");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500539
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500540 else
541 {
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600542 png_warning(png_ptr, "Invalid palette length");
543 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500544 }
545 }
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600546
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600547 /* It may not actually be necessary to set png_ptr->palette here;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600548 * we do it for backward compatibility with the way the png_handle_tRNS
549 * function used to do the allocation.
John Bowler4f67e402011-12-28 08:43:37 -0600550 *
551 * 1.6.0: the above statement appears to be incorrect; something has to set
552 * the palette inside png_struct on read.
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600553 */
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600554 png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500555
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600556 /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500557 * of num_palette entries, in case of an invalid PNG file that has
558 * too-large sample values.
559 */
John Bowlerfcd301d2011-12-28 21:34:27 -0600560 png_ptr->palette = png_voidcast(png_colorp, png_calloc(png_ptr,
561 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_color)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500562
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500563 png_memcpy(png_ptr->palette, palette, num_palette * png_sizeof(png_color));
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600564 info_ptr->palette = png_ptr->palette;
565 info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600566
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600567 info_ptr->free_me |= PNG_FREE_PLTE;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600568
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600569 info_ptr->valid |= PNG_INFO_PLTE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500570}
571
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500572#ifdef PNG_sBIT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500573void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600574png_set_sBIT(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500575 png_const_color_8p sig_bit)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500576{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500577 png_debug1(1, "in %s storage function", "sBIT");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500578
John Bowlerfcd301d2011-12-28 21:34:27 -0600579 if (png_ptr == NULL || info_ptr == NULL || sig_bit == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500580 return;
581
John Bowlerfcd301d2011-12-28 21:34:27 -0600582 info_ptr->sig_bit = *sig_bit;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500583 info_ptr->valid |= PNG_INFO_sBIT;
584}
585#endif
586
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500587#ifdef PNG_sRGB_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500588void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600589png_set_sRGB(png_const_structrp png_ptr, png_inforp info_ptr, int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600590{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500591 png_debug1(1, "in %s storage function", "sRGB");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500592
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600593 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600594 return;
595
Glenn Randers-Pehrson8d0bc0f2011-01-25 22:15:58 -0600596 info_ptr->srgb_intent = (png_byte)srgb_intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600597 info_ptr->valid |= PNG_INFO_sRGB;
598}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600599
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500600void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600601png_set_sRGB_gAMA_and_cHRM(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrson8d0bc0f2011-01-25 22:15:58 -0600602 int srgb_intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600603{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500604 png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500605
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600606 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600607 return;
608
Glenn Randers-Pehrson8d0bc0f2011-01-25 22:15:58 -0600609 png_set_sRGB(png_ptr, info_ptr, srgb_intent);
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600610
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500611# ifdef PNG_gAMA_SUPPORTED
John Bowlerf70c7d02011-05-10 22:54:37 -0500612 png_set_gAMA_fixed(png_ptr, info_ptr, PNG_GAMMA_sRGB_INVERSE);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500613# endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600614
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500615# ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson85b02372009-09-24 19:49:13 -0500616 png_set_cHRM_fixed(png_ptr, info_ptr,
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500617 /* color x y */
John Bowler75156122011-09-09 17:21:44 -0500618 /* white */ 31270, 32900,
619 /* red */ 64000, 33000,
620 /* green */ 30000, 60000,
621 /* blue */ 15000, 6000
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500622 );
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500623# endif /* cHRM */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600624}
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600625#endif /* sRGB */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600626
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600627
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500628#ifdef PNG_iCCP_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500629void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600630png_set_iCCP(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500631 png_const_charp name, int compression_type,
632 png_const_bytep profile, png_uint_32 proflen)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600633{
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500634 png_charp new_iccp_name;
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500635 png_bytep new_iccp_profile;
John Bowlerf3f7e142011-09-09 07:32:37 -0500636 png_size_t length;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500637
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500638 png_debug1(1, "in %s storage function", "iCCP");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500639
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600640 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
641 return;
642
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500643 length = png_strlen(name)+1;
John Bowlerfcd301d2011-12-28 21:34:27 -0600644 new_iccp_name = png_voidcast(png_charp, png_malloc_warn(png_ptr, length));
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500645
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500646 if (new_iccp_name == NULL)
647 {
John Bowlerfcd301d2011-12-28 21:34:27 -0600648 png_warning(png_ptr, "Insufficient memory to process iCCP chunk");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500649 return;
650 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500651
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500652 png_memcpy(new_iccp_name, name, length);
John Bowlerfcd301d2011-12-28 21:34:27 -0600653 new_iccp_profile = png_voidcast(png_bytep,
654 png_malloc_warn(png_ptr, proflen));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500655
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500656 if (new_iccp_profile == NULL)
657 {
658 png_free (png_ptr, new_iccp_name);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500659 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600660 "Insufficient memory to process iCCP profile");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500661 return;
662 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500663
John Bowlerfcd301d2011-12-28 21:34:27 -0600664 png_memcpy(new_iccp_profile, profile, proflen);
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500665
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500666 png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500667
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600668 info_ptr->iccp_proflen = proflen;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500669 info_ptr->iccp_name = new_iccp_name;
670 info_ptr->iccp_profile = new_iccp_profile;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600671 /* Compression is always zero but is here so the API and info structure
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600672 * does not have to change if we introduce multiple compression types
673 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600674 info_ptr->iccp_compression = (png_byte)compression_type;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600675 info_ptr->free_me |= PNG_FREE_ICCP;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600676 info_ptr->valid |= PNG_INFO_iCCP;
677}
678#endif
679
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500680#ifdef PNG_TEXT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500681void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600682png_set_text(png_const_structrp png_ptr, png_inforp info_ptr,
683 png_const_textp text_ptr, int num_text)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500684{
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500685 int ret;
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500686 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500687
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500688 if (ret)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500689 png_error(png_ptr, "Insufficient memory to store text");
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500690}
691
692int /* PRIVATE */
John Bowler4f67e402011-12-28 08:43:37 -0600693png_set_text_2(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500694 png_const_textp text_ptr, int num_text)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500695{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500696 int i;
697
Glenn Randers-Pehrsonbb5cb142011-09-22 12:41:58 -0500698 png_debug1(1, "in %lx storage function", png_ptr == NULL ? "unexpected" :
699 (unsigned long)png_ptr->chunk_name);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500700
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600701 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500702 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500703
704 /* Make sure we have enough space in the "text" array in info_struct
705 * to hold all of the incoming text_ptr objects.
706 */
707 if (info_ptr->num_text + num_text > info_ptr->max_text)
708 {
709 if (info_ptr->text != NULL)
710 {
711 png_textp old_text;
712 int old_max;
713
714 old_max = info_ptr->max_text;
715 info_ptr->max_text = info_ptr->num_text + num_text + 8;
716 old_text = info_ptr->text;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500717 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500718 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500719
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500720 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500721 {
722 png_free(png_ptr, old_text);
723 return(1);
724 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500725
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600726 png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600727 png_sizeof(png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500728 png_free(png_ptr, old_text);
729 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500730
Andreas Dilger47a0c421997-05-16 02:46:07 -0500731 else
732 {
733 info_ptr->max_text = num_text + 8;
734 info_ptr->num_text = 0;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500735 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600736 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500737 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500738 return(1);
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500739 info_ptr->free_me |= PNG_FREE_TEXT;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500740 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500741
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500742 png_debug1(3, "allocated %d entries for info_ptr->text",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600743 info_ptr->max_text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500744 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500745 for (i = 0; i < num_text; i++)
746 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500747 png_size_t text_length, key_len;
748 png_size_t lang_len, lang_key_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500749 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
750
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500751 if (text_ptr[i].key == NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600752 continue;
753
Glenn Randers-Pehrson79b2d642010-10-13 07:31:14 -0500754 if (text_ptr[i].compression < PNG_TEXT_COMPRESSION_NONE ||
755 text_ptr[i].compression >= PNG_TEXT_COMPRESSION_LAST)
Glenn Randers-Pehrsone34f80e2010-10-13 06:55:30 -0500756 {
757 png_warning(png_ptr, "text compression mode is out of range");
758 continue;
759 }
760
Glenn Randers-Pehrson79b2d642010-10-13 07:31:14 -0500761 key_len = png_strlen(text_ptr[i].key);
762
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500763 if (text_ptr[i].compression <= 0)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500764 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500765 lang_len = 0;
766 lang_key_len = 0;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500767 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500768
Glenn Randers-Pehrsondd78d522010-03-30 08:34:02 -0500769 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500770# ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600771 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500772 /* Set iTXt data */
Glenn Randers-Pehrsond6ea40a2009-11-02 07:32:00 -0600773
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500774 if (text_ptr[i].lang != NULL)
775 lang_len = png_strlen(text_ptr[i].lang);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500776
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500777 else
778 lang_len = 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500779
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500780 if (text_ptr[i].lang_key != NULL)
781 lang_key_len = png_strlen(text_ptr[i].lang_key);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500782
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500783 else
784 lang_key_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600785 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500786# else /* PNG_iTXt_SUPPORTED */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500787 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500788 png_warning(png_ptr, "iTXt chunk not supported");
789 continue;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500790 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500791# endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500792
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500793 if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
Andreas Dilger47a0c421997-05-16 02:46:07 -0500794 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600795 text_length = 0;
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500796# ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500797 if (text_ptr[i].compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600798 textp->compression = PNG_ITXT_COMPRESSION_NONE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500799
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600800 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500801# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600802 textp->compression = PNG_TEXT_COMPRESSION_NONE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500803 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500804
Andreas Dilger47a0c421997-05-16 02:46:07 -0500805 else
806 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600807 text_length = png_strlen(text_ptr[i].text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500808 textp->compression = text_ptr[i].compression;
809 }
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500810
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500811 textp->key = (png_charp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600812 (png_size_t)
813 (key_len + text_length + lang_len + lang_key_len + 4));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500814
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500815 if (textp->key == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500816 return(1);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500817
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600818 png_debug2(2, "Allocated %lu bytes at %p in png_set_text",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600819 (unsigned long)(png_uint_32)
820 (key_len + lang_len + lang_key_len + text_length + 4),
Glenn Randers-Pehrsonb764c602011-01-14 21:18:37 -0600821 textp->key);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500822
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500823 png_memcpy(textp->key, text_ptr[i].key,(png_size_t)(key_len));
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500824 *(textp->key + key_len) = '\0';
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500825
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600826 if (text_ptr[i].compression > 0)
827 {
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500828 textp->lang = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600829 png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500830 *(textp->lang + lang_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500831 textp->lang_key = textp->lang + lang_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600832 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500833 *(textp->lang_key + lang_key_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500834 textp->text = textp->lang_key + lang_key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600835 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500836
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600837 else
838 {
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500839 textp->lang=NULL;
840 textp->lang_key=NULL;
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500841 textp->text = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600842 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500843
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500844 if (text_length)
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500845 png_memcpy(textp->text, text_ptr[i].text,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600846 (png_size_t)(text_length));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500847
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500848 *(textp->text + text_length) = '\0';
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600849
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500850# ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500851 if (textp->compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600852 {
853 textp->text_length = 0;
854 textp->itxt_length = text_length;
855 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500856
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600857 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500858# endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600859 {
860 textp->text_length = text_length;
861 textp->itxt_length = 0;
862 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500863
Andreas Dilger47a0c421997-05-16 02:46:07 -0500864 info_ptr->num_text++;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500865 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500866 }
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500867 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500868}
869#endif
870
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500871#ifdef PNG_tIME_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500872void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600873png_set_tIME(png_const_structrp png_ptr, png_inforp info_ptr,
874 png_const_timep mod_time)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500875{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500876 png_debug1(1, "in %s storage function", "tIME");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500877
John Bowlerfcd301d2011-12-28 21:34:27 -0600878 if (png_ptr == NULL || info_ptr == NULL || mod_time == NULL ||
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600879 (png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500880 return;
881
Glenn Randers-Pehrson29fca792011-11-19 15:08:04 -0600882 if (mod_time->month == 0 || mod_time->month > 12 ||
883 mod_time->day == 0 || mod_time->day > 31 ||
884 mod_time->hour > 23 || mod_time->minute > 59 ||
885 mod_time->second > 60)
886 {
887 png_warning(png_ptr, "Ignoring invalid time value");
888 return;
889 }
890
John Bowlerfcd301d2011-12-28 21:34:27 -0600891 info_ptr->mod_time = *mod_time;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500892 info_ptr->valid |= PNG_INFO_tIME;
893}
894#endif
895
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500896#ifdef PNG_tRNS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500897void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -0600898png_set_tRNS(png_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500899 png_const_bytep trans_alpha, int num_trans, png_const_color_16p trans_color)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500900{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500901 png_debug1(1, "in %s storage function", "tRNS");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500902
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600903 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500904 return;
905
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500906 if (trans_alpha != NULL)
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600907 {
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500908 /* It may not actually be necessary to set png_ptr->trans_alpha here;
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500909 * we do it for backward compatibility with the way the png_handle_tRNS
910 * function used to do the allocation.
John Bowler4f67e402011-12-28 08:43:37 -0600911 *
912 * 1.6.0: The above statement is incorrect; png_handle_tRNS effectively
913 * relies on png_set_tRNS storing the information in png_struct
914 * (otherwise it won't be there for the code in pngrtran.c).
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500915 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500916
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600917 png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500918
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600919 /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
John Bowler4f67e402011-12-28 08:43:37 -0600920 png_ptr->trans_alpha = info_ptr->trans_alpha = png_voidcast(png_bytep,
921 png_malloc(png_ptr, PNG_MAX_PALETTE_LENGTH));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500922
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500923 if (num_trans > 0 && num_trans <= PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500924 png_memcpy(info_ptr->trans_alpha, trans_alpha, (png_size_t)num_trans);
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600925 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500926
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500927 if (trans_color != NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500928 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500929 int sample_max = (1 << info_ptr->bit_depth);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500930
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500931 if ((info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
John Bowler4f67e402011-12-28 08:43:37 -0600932 trans_color->gray > sample_max) ||
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500933 (info_ptr->color_type == PNG_COLOR_TYPE_RGB &&
John Bowler4f67e402011-12-28 08:43:37 -0600934 (trans_color->red > sample_max ||
935 trans_color->green > sample_max ||
936 trans_color->blue > sample_max)))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500937 png_warning(png_ptr,
938 "tRNS chunk has out-of-range samples for bit_depth");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500939
John Bowlerfcd301d2011-12-28 21:34:27 -0600940 info_ptr->trans_color = *trans_color;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500941
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600942 if (num_trans == 0)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500943 num_trans = 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500944 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500945
Andreas Dilger47a0c421997-05-16 02:46:07 -0500946 info_ptr->num_trans = (png_uint_16)num_trans;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500947
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500948 if (num_trans != 0)
949 {
950 info_ptr->valid |= PNG_INFO_tRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500951 info_ptr->free_me |= PNG_FREE_TRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500952 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500953}
954#endif
955
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500956#ifdef PNG_sPLT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500957void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -0600958png_set_sPLT(png_const_structrp png_ptr,
John Bowler5d567862011-12-24 09:12:00 -0600959 png_inforp info_ptr, png_const_sPLT_tp entries, int nentries)
Glenn Randers-Pehrson3779c692006-11-07 20:38:11 -0600960/*
961 * entries - array of png_sPLT_t structures
962 * to be added to the list of palettes
963 * in the info structure.
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -0500964 *
Glenn Randers-Pehrson3779c692006-11-07 20:38:11 -0600965 * nentries - number of palette structures to be
966 * added.
967 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600968{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500969 png_sPLT_tp np;
970 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600971
John Bowlerfcd301d2011-12-28 21:34:27 -0600972 if (png_ptr == NULL || info_ptr == NULL || nentries <= 0 ||
973 entries == NULL)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500974 return;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600975
John Bowlerfcd301d2011-12-28 21:34:27 -0600976 np = png_voidcast(png_sPLT_tp, png_malloc_warn(png_ptr,
977 (info_ptr->splt_palettes_num + nentries) * png_sizeof(png_sPLT_t)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500978
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500979 if (np == NULL)
980 {
981 png_warning(png_ptr, "No memory for sPLT palettes");
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600982 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500983 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600984
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500985 png_memcpy(np, info_ptr->splt_palettes,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600986 info_ptr->splt_palettes_num * png_sizeof(png_sPLT_t));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500987
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500988 png_free(png_ptr, info_ptr->splt_palettes);
989 info_ptr->splt_palettes=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600990
John Bowlerfcd301d2011-12-28 21:34:27 -0600991 /* TODO: fix this, it apparently leaves NULL entries in the event of OOM
992 * below.
993 */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500994 for (i = 0; i < nentries; i++)
995 {
996 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500997 png_const_sPLT_tp from = entries + i;
John Bowlerf3f7e142011-09-09 07:32:37 -0500998 png_size_t length;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500999
John Bowlerfcd301d2011-12-28 21:34:27 -06001000 /* In event of error below the name and entries fields must be set to
1001 * NULL, otherwise libpng will crash later on while trying to free the
1002 * uninitialized pointers.
1003 */
1004 png_memset(to, 0, sizeof *to);
1005
1006 if (from->name == NULL || from->entries == NULL)
1007 continue;
1008
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001009 length = png_strlen(from->name) + 1;
John Bowlerfcd301d2011-12-28 21:34:27 -06001010 to->name = png_voidcast(png_charp, png_malloc_warn(png_ptr, length));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001011
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001012 if (to->name == NULL)
1013 {
1014 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001015 "Out of memory while processing sPLT chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001016 continue;
1017 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001018
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001019 png_memcpy(to->name, from->name, length);
John Bowlerfcd301d2011-12-28 21:34:27 -06001020 to->entries = png_voidcast(png_sPLT_entryp, png_malloc_warn(png_ptr,
1021 from->nentries * png_sizeof(png_sPLT_entry)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001022
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001023 if (to->entries == NULL)
1024 {
John Bowlerfcd301d2011-12-28 21:34:27 -06001025 png_warning(png_ptr, "Out of memory while processing sPLT chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001026 png_free(png_ptr, to->name);
1027 to->name = NULL;
1028 continue;
1029 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001030
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001031 png_memcpy(to->entries, from->entries,
1032 from->nentries * png_sizeof(png_sPLT_entry));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001033
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001034 to->nentries = from->nentries;
1035 to->depth = from->depth;
1036 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001037
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001038 info_ptr->splt_palettes = np;
1039 info_ptr->splt_palettes_num += nentries;
1040 info_ptr->valid |= PNG_INFO_sPLT;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001041 info_ptr->free_me |= PNG_FREE_SPLT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001042}
1043#endif /* PNG_sPLT_SUPPORTED */
1044
Glenn Randers-Pehrson6ba90882009-12-25 14:26:13 -06001045#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001046void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -06001047png_set_unknown_chunks(png_const_structrp png_ptr,
John Bowler5d567862011-12-24 09:12:00 -06001048 png_inforp info_ptr, png_const_unknown_chunkp unknowns, int num_unknowns)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001049{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001050 png_unknown_chunkp np;
1051 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001052
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001053 if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -05001054 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001055
John Bowler40b26032011-12-22 08:09:15 -06001056 np = png_voidcast(png_unknown_chunkp, png_malloc_warn(png_ptr,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001057 (png_size_t)(info_ptr->unknown_chunks_num + num_unknowns) *
John Bowler40b26032011-12-22 08:09:15 -06001058 png_sizeof(png_unknown_chunk)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001059
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001060 if (np == NULL)
1061 {
1062 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001063 "Out of memory while processing unknown chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001064 return;
1065 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001066
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001067 png_memcpy(np, info_ptr->unknown_chunks,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001068 (png_size_t)info_ptr->unknown_chunks_num *
1069 png_sizeof(png_unknown_chunk));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001070
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001071 png_free(png_ptr, info_ptr->unknown_chunks);
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001072 info_ptr->unknown_chunks = NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001073
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001074 for (i = 0; i < num_unknowns; i++)
1075 {
1076 png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001077 png_const_unknown_chunkp from = unknowns + i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001078
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001079 png_memcpy(to->name, from->name, png_sizeof(from->name));
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001080 to->name[png_sizeof(to->name)-1] = '\0';
1081 to->size = from->size;
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001082
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001083 /* Note our location in the read or write sequence */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001084 to->location = (png_byte)(png_ptr->mode & 0xff);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001085
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001086 if (from->size == 0)
1087 to->data=NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001088
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001089 else
1090 {
1091 to->data = (png_bytep)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001092 (png_size_t)from->size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001093
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001094 if (to->data == NULL)
1095 {
1096 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001097 "Out of memory while processing unknown chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001098 to->size = 0;
1099 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001100
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001101 else
1102 png_memcpy(to->data, from->data, from->size);
1103 }
1104 }
1105
1106 info_ptr->unknown_chunks = np;
1107 info_ptr->unknown_chunks_num += num_unknowns;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001108 info_ptr->free_me |= PNG_FREE_UNKN;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001109}
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001110
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001111void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -06001112png_set_unknown_chunk_location(png_const_structrp png_ptr, png_inforp info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001113 int chunk, int location)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001114{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001115 if (png_ptr != NULL && info_ptr != NULL && chunk >= 0 && chunk <
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001116 info_ptr->unknown_chunks_num)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001117 info_ptr->unknown_chunks[chunk].location = (png_byte)location;
1118}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001119#endif
1120
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001121
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001122#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001123png_uint_32 PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001124png_permit_mng_features (png_structrp png_ptr, png_uint_32 mng_features)
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001125{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001126 png_debug(1, "in png_permit_mng_features");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001127
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001128 if (png_ptr == NULL)
John Bowler4f67e402011-12-28 08:43:37 -06001129 return 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001130
John Bowler4f67e402011-12-28 08:43:37 -06001131 png_ptr->mng_features_permitted = mng_features & PNG_ALL_MNG_FEATURES;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001132
John Bowler4f67e402011-12-28 08:43:37 -06001133 return png_ptr->mng_features_permitted;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001134}
1135#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001136
Glenn Randers-Pehrson6ba90882009-12-25 14:26:13 -06001137#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001138void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -06001139png_set_keep_unknown_chunks(png_structrp png_ptr, int keep,
John Bowlerfcd301d2011-12-28 21:34:27 -06001140 png_const_bytep chunk_list, int num_chunksIn)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001141{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001142 png_bytep new_list, p;
John Bowlerfcd301d2011-12-28 21:34:27 -06001143 unsigned int i, num_chunks, old_num_chunks;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001144 if (png_ptr == NULL)
1145 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001146
John Bowlerfcd301d2011-12-28 21:34:27 -06001147 if (num_chunksIn <= 0)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001148 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001149 if (keep == PNG_HANDLE_CHUNK_ALWAYS || keep == PNG_HANDLE_CHUNK_IF_SAFE)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001150 png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001151
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001152 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001153 png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001154
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001155 if (keep == PNG_HANDLE_CHUNK_ALWAYS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001156 png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001157
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001158 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001159 png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001160
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001161 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001162 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001163
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001164 if (chunk_list == NULL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001165 return;
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001166
John Bowlerfcd301d2011-12-28 21:34:27 -06001167 /* The argument is >0 */
1168 num_chunks = (unsigned int)num_chunksIn;
1169
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001170 old_num_chunks = png_ptr->num_chunk_list;
John Bowlerfcd301d2011-12-28 21:34:27 -06001171 new_list = png_voidcast(png_bytep, png_malloc(png_ptr,
1172 5 * (num_chunks + old_num_chunks)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001173
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001174 if (png_ptr->chunk_list != NULL)
1175 {
John Bowler4f67e402011-12-28 08:43:37 -06001176 png_memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001177 png_free(png_ptr, png_ptr->chunk_list);
1178 png_ptr->chunk_list=NULL;
1179 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001180
John Bowlerfcd301d2011-12-28 21:34:27 -06001181 png_memcpy(new_list + 5*old_num_chunks, chunk_list,
1182 5*(unsigned int)num_chunks);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001183
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001184 for (p = new_list + 5*old_num_chunks + 4, i = 0; i<num_chunks; i++, p += 5)
1185 *p=(png_byte)keep;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001186
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001187 png_ptr->num_chunk_list = old_num_chunks + num_chunks;
1188 png_ptr->chunk_list = new_list;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001189 png_ptr->free_me |= PNG_FREE_LIST;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001190}
1191#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001192
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001193#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001194void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001195png_set_read_user_chunk_fn(png_structrp png_ptr, png_voidp user_chunk_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001196 png_user_chunk_ptr read_user_chunk_fn)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001197{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001198 png_debug(1, "in png_set_read_user_chunk_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001199
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001200 if (png_ptr == NULL)
1201 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -05001202
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001203 png_ptr->read_user_chunk_fn = read_user_chunk_fn;
1204 png_ptr->user_chunk_ptr = user_chunk_ptr;
1205}
1206#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001207
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001208#ifdef PNG_INFO_IMAGE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001209void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -06001210png_set_rows(png_const_structrp png_ptr, png_inforp info_ptr,
1211 png_bytepp row_pointers)
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001212{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001213 png_debug1(1, "in %s storage function", "rows");
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001214
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001215 if (png_ptr == NULL || info_ptr == NULL)
1216 return;
1217
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001218 if (info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001219 png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001220
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001221 info_ptr->row_pointers = row_pointers;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001222
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001223 if (row_pointers)
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001224 info_ptr->valid |= PNG_INFO_IDAT;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001225}
1226#endif
1227
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001228void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001229png_set_compression_buffer_size(png_structrp png_ptr, png_size_t size)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001230{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001231 if (png_ptr == NULL)
1232 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001233
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001234 png_free(png_ptr, png_ptr->zbuf);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001235
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001236 if (size > ZLIB_IO_MAX)
1237 {
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001238 png_warning(png_ptr, "Attempt to set buffer size beyond max ignored");
1239 png_ptr->zbuf_size = ZLIB_IO_MAX;
1240 size = ZLIB_IO_MAX; /* must fit */
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001241 }
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001242
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001243 else
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001244 png_ptr->zbuf_size = (uInt)size;
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001245
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001246 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr, size);
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001247
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001248 /* The following ensures a relatively safe failure if this gets called while
1249 * the buffer is actually in use.
1250 */
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001251 png_ptr->zstream.next_out = png_ptr->zbuf;
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -05001252 png_ptr->zstream.avail_out = 0;
1253 png_ptr->zstream.avail_in = 0;
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001254}
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001255
1256void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001257png_set_invalid(png_const_structrp png_ptr, png_inforp info_ptr, int mask)
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001258{
1259 if (png_ptr && info_ptr)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001260 info_ptr->valid &= ~mask;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001261}
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06001262
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -05001263
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001264#ifdef PNG_SET_USER_LIMITS_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001265/* This function was added to libpng 1.2.6 */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001266void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001267png_set_user_limits (png_structrp png_ptr, png_uint_32 user_width_max,
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001268 png_uint_32 user_height_max)
1269{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001270 /* Images with dimensions larger than these limits will be
1271 * rejected by png_set_IHDR(). To accept any PNG datastream
1272 * regardless of dimensions, set both limits to 0x7ffffffL.
1273 */
1274 if (png_ptr == NULL)
1275 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001276
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001277 png_ptr->user_width_max = user_width_max;
1278 png_ptr->user_height_max = user_height_max;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001279}
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001280
Glenn Randers-Pehrson17ca3402009-11-09 06:51:16 -06001281/* This function was added to libpng 1.4.0 */
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001282void PNGAPI
John Bowler4f67e402011-12-28 08:43:37 -06001283png_set_chunk_cache_max (png_structrp png_ptr, png_uint_32 user_chunk_cache_max)
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001284{
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001285 if (png_ptr)
1286 png_ptr->user_chunk_cache_max = user_chunk_cache_max;
1287}
1288
1289/* This function was added to libpng 1.4.1 */
1290void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001291png_set_chunk_malloc_max (png_structrp png_ptr,
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001292 png_alloc_size_t user_chunk_malloc_max)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001293{
Glenn Randers-Pehrson62333ba2010-10-23 08:48:51 -05001294 if (png_ptr)
1295 png_ptr->user_chunk_malloc_max = user_chunk_malloc_max;
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001296}
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001297#endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */
1298
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001299
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001300#ifdef PNG_BENIGN_ERRORS_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001301void PNGAPI
John Bowler5d567862011-12-24 09:12:00 -06001302png_set_benign_errors(png_structrp png_ptr, int allowed)
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001303{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001304 png_debug(1, "in png_set_benign_errors");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001305
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001306 if (allowed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001307 png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001308
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001309 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001310 png_ptr->flags &= ~PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001311}
1312#endif /* PNG_BENIGN_ERRORS_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06001313#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */