blob: b740afa782be467dd617944a85dcc8f10393c182 [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-Pehrson81fdf8a2000-04-07 10:34:56 -05004 * libpng 1.0.6d - April 7, 2000
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
7 * Copyright (c) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06008 * Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009 *
10 * The functions here are used during reads to store data from the file
11 * into the info struct, and during writes to store application data
12 * into the info struct for writing into the file. This abstracts the
13 * info struct and allows us to change the structure in the future.
14 */
Andreas Dilger47a0c421997-05-16 02:46:07 -050015
16#define PNG_INTERNAL
17#include "png.h"
18
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060019#if defined(PNG_bKGD_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -050020void
21png_set_bKGD(png_structp png_ptr, png_infop info_ptr, png_color_16p background)
22{
23 png_debug1(1, "in %s storage function\n", "bKGD");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -060024 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -050025 return;
26
27 png_memcpy(&(info_ptr->background), background, sizeof(png_color_16));
28 info_ptr->valid |= PNG_INFO_bKGD;
29}
30#endif
31
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060032#if defined(PNG_cHRM_SUPPORTED)
33#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -050034void
35png_set_cHRM(png_structp png_ptr, png_infop info_ptr,
36 double white_x, double white_y, double red_x, double red_y,
37 double green_x, double green_y, double blue_x, double blue_y)
38{
39 png_debug1(1, "in %s storage function\n", "cHRM");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -060040 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -050041 return;
42
43 info_ptr->x_white = (float)white_x;
44 info_ptr->y_white = (float)white_y;
45 info_ptr->x_red = (float)red_x;
46 info_ptr->y_red = (float)red_y;
47 info_ptr->x_green = (float)green_x;
48 info_ptr->y_green = (float)green_y;
49 info_ptr->x_blue = (float)blue_x;
50 info_ptr->y_blue = (float)blue_y;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060051#ifdef PNG_FIXED_POINT_SUPPORTED
52 info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
53 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
54 info_ptr->int_x_red = (png_fixed_point)(red_x*100000.+0.5);
55 info_ptr->int_y_red = (png_fixed_point)(red_y*100000.+0.5);
56 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
57 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
58 info_ptr->int_x_blue = (png_fixed_point)(blue_x*100000.+0.5);
59 info_ptr->int_y_blue = (png_fixed_point)(blue_y*100000.+0.5);
60#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -050061 info_ptr->valid |= PNG_INFO_cHRM;
62}
63#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060064#ifdef PNG_FIXED_POINT_SUPPORTED
65void
66png_set_cHRM_fixed(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060067 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
68 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
69 png_fixed_point blue_x, png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060070{
71 png_debug1(1, "in %s storage function\n", "cHRM");
72 if (png_ptr == NULL || info_ptr == NULL)
73 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -050074
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060075 info_ptr->int_x_white = white_x;
76 info_ptr->int_y_white = white_y;
77 info_ptr->int_x_red = red_x;
78 info_ptr->int_y_red = red_y;
79 info_ptr->int_x_green = green_x;
80 info_ptr->int_y_green = green_y;
81 info_ptr->int_x_blue = blue_x;
82 info_ptr->int_y_blue = blue_y;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060083#ifdef PNG_FLOATING_POINT_SUPPORTED
84 info_ptr->x_white = (float)(white_x/100000.);
85 info_ptr->y_white = (float)(white_y/100000.);
86 info_ptr->x_red = (float)(red_x/100000.);
87 info_ptr->y_red = (float)(red_y/100000.);
88 info_ptr->x_green = (float)(green_x/100000.);
89 info_ptr->y_green = (float)(green_y/100000.);
90 info_ptr->x_blue = (float)(blue_x/100000.);
91 info_ptr->y_blue = (float)(blue_y/100000.);
92#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060093 info_ptr->valid |= PNG_INFO_cHRM;
94}
95#endif
96#endif
97
98#if defined(PNG_gAMA_SUPPORTED)
99#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500100void
101png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
102{
103 png_debug1(1, "in %s storage function\n", "gAMA");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600104 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500105 return;
106
107 info_ptr->gamma = (float)file_gamma;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600108#ifdef PNG_FIXED_POINT_SUPPORTED
109 info_ptr->int_gamma = (int)(file_gamma*100000.+.5);
110#endif
111 info_ptr->valid |= PNG_INFO_gAMA;
112}
113#endif
114#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600115void
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600116png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
117 int_gamma)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600118{
119 png_debug1(1, "in %s storage function\n", "gAMA");
120 if (png_ptr == NULL || info_ptr == NULL)
121 return;
122
123#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600124 info_ptr->gamma = (float)(int_gamma/100000.);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600125#endif
126 info_ptr->int_gamma = int_gamma;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500127 info_ptr->valid |= PNG_INFO_gAMA;
128}
Andreas Dilger47a0c421997-05-16 02:46:07 -0500129
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600130#if defined(PNG_hIST_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500131void
132png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
133{
134 png_debug1(1, "in %s storage function\n", "hIST");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600135 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500136 return;
137
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600138 info_ptr->hist = hist;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500139 info_ptr->valid |= PNG_INFO_hIST;
140}
141#endif
142
143void
144png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
145 png_uint_32 width, png_uint_32 height, int bit_depth,
146 int color_type, int interlace_type, int compression_type,
147 int filter_type)
148{
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600149 int rowbytes_per_pixel;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500150 png_debug1(1, "in %s storage function\n", "IHDR");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600151 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500152 return;
153
154 info_ptr->width = width;
155 info_ptr->height = height;
156 info_ptr->bit_depth = (png_byte)bit_depth;
157 info_ptr->color_type =(png_byte) color_type;
158 info_ptr->compression_type = (png_byte)compression_type;
159 info_ptr->filter_type = (png_byte)filter_type;
160 info_ptr->interlace_type = (png_byte)interlace_type;
161 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
162 info_ptr->channels = 1;
163 else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
164 info_ptr->channels = 3;
165 else
166 info_ptr->channels = 1;
167 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
168 info_ptr->channels++;
169 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600170
171 /* check for overflow */
172 rowbytes_per_pixel = (info_ptr->pixel_depth + 7) >> 3;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500173 if (( width > PNG_MAX_UINT/rowbytes_per_pixel))
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600174 {
175 png_warning(png_ptr,
176 "Width too large to process image data; rowbytes will overflow.");
177 info_ptr->rowbytes = (png_size_t)0;
178 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500179 else
180 info_ptr->rowbytes = (info_ptr->width * info_ptr->pixel_depth + 7) >> 3;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500181}
182
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600183#if defined(PNG_oFFs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500184void
185png_set_oFFs(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600186 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500187{
188 png_debug1(1, "in %s storage function\n", "oFFs");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600189 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500190 return;
191
192 info_ptr->x_offset = offset_x;
193 info_ptr->y_offset = offset_y;
194 info_ptr->offset_unit_type = (png_byte)unit_type;
195 info_ptr->valid |= PNG_INFO_oFFs;
196}
197#endif
198
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600199#if defined(PNG_pCAL_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500200void
201png_set_pCAL(png_structp png_ptr, png_infop info_ptr,
202 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
203 png_charp units, png_charpp params)
204{
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600205 png_uint_32 length;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600206 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500207
208 png_debug1(1, "in %s storage function\n", "pCAL");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600209 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500210 return;
211
212 length = png_strlen(purpose) + 1;
213 png_debug1(3, "allocating purpose for info (%d bytes)\n", length);
214 info_ptr->pcal_purpose = (png_charp)png_malloc(png_ptr, length);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600215 png_memcpy(info_ptr->pcal_purpose, purpose, (png_size_t)length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500216
217 png_debug(3, "storing X0, X1, type, and nparams in info\n");
218 info_ptr->pcal_X0 = X0;
219 info_ptr->pcal_X1 = X1;
220 info_ptr->pcal_type = (png_byte)type;
221 info_ptr->pcal_nparams = (png_byte)nparams;
222
223 length = png_strlen(units) + 1;
224 png_debug1(3, "allocating units for info (%d bytes)\n", length);
225 info_ptr->pcal_units = (png_charp)png_malloc(png_ptr, length);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600226 png_memcpy(info_ptr->pcal_units, units, (png_size_t)length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500227
228 info_ptr->pcal_params = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600229 (png_uint_32)((nparams + 1) * sizeof(png_charp)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500230 info_ptr->pcal_params[nparams] = NULL;
231
232 for (i = 0; i < nparams; i++)
233 {
234 length = png_strlen(params[i]) + 1;
235 png_debug2(3, "allocating parameter %d for info (%d bytes)\n", i, length);
236 info_ptr->pcal_params[i] = (png_charp)png_malloc(png_ptr, length);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600237 png_memcpy(info_ptr->pcal_params[i], params[i], (png_size_t)length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500238 }
239
240 info_ptr->valid |= PNG_INFO_pCAL;
241}
242#endif
243
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600244#if defined(PNG_READ_sCAL_SUPPORTED) || defined(PNG_WRITE_sCAL_SUPPORTED)
245#ifdef PNG_FLOATING_POINT_SUPPORTED
246void
247png_set_sCAL(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600248 int unit, double width, double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600249{
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600250 png_debug1(1, "in %s storage function\n", "sCAL");
251 if (png_ptr == NULL || info_ptr == NULL)
252 return;
253
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600254 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600255 info_ptr->scal_pixel_width = width;
256 info_ptr->scal_pixel_height = height;
257
258 info_ptr->valid |= PNG_INFO_sCAL;
259}
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600260#else
261#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600262void
263png_set_sCAL_s(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600264 int unit, png_charp swidth, png_charp sheight)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600265{
266 png_uint_32 length;
267
268 png_debug1(1, "in %s storage function\n", "sCAL");
269 if (png_ptr == NULL || info_ptr == NULL)
270 return;
271
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600272 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600273
274 length = png_strlen(swidth) + 1;
275 png_debug1(3, "allocating unit for info (%d bytes)\n", length);
276 info_ptr->scal_s_width = (png_charp)png_malloc(png_ptr, length);
277 png_memcpy(info_ptr->scal_s_width, swidth, (png_size_t)length);
278
279 length = png_strlen(sheight) + 1;
280 png_debug1(3, "allocating unit for info (%d bytes)\n", length);
281 info_ptr->scal_s_width = (png_charp)png_malloc(png_ptr, length);
282 png_memcpy(info_ptr->scal_s_height, sheight, (png_size_t)length);
283
284 info_ptr->valid |= PNG_INFO_sCAL;
285}
286#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600287#endif
288#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600289
290#if defined(PNG_pHYs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500291void
292png_set_pHYs(png_structp png_ptr, png_infop info_ptr,
293 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
294{
295 png_debug1(1, "in %s storage function\n", "pHYs");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600296 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500297 return;
298
299 info_ptr->x_pixels_per_unit = res_x;
300 info_ptr->y_pixels_per_unit = res_y;
301 info_ptr->phys_unit_type = (png_byte)unit_type;
302 info_ptr->valid |= PNG_INFO_pHYs;
303}
304#endif
305
306void
307png_set_PLTE(png_structp png_ptr, png_infop info_ptr,
308 png_colorp palette, int num_palette)
309{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600310
Andreas Dilger47a0c421997-05-16 02:46:07 -0500311 png_debug1(1, "in %s storage function\n", "PLTE");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600312 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500313 return;
314
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600315 info_ptr->palette = palette;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600316
Andreas Dilger47a0c421997-05-16 02:46:07 -0500317 info_ptr->num_palette = (png_uint_16)num_palette;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600318 info_ptr->valid |= PNG_INFO_PLTE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500319}
320
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600321#if defined(PNG_sBIT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500322void
323png_set_sBIT(png_structp png_ptr, png_infop info_ptr,
324 png_color_8p sig_bit)
325{
326 png_debug1(1, "in %s storage function\n", "sBIT");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600327 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500328 return;
329
330 png_memcpy(&(info_ptr->sig_bit), sig_bit, sizeof (png_color_8));
331 info_ptr->valid |= PNG_INFO_sBIT;
332}
333#endif
334
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600335#if defined(PNG_sRGB_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600336void
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600337png_set_sRGB(png_structp png_ptr, png_infop info_ptr, int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600338{
339 png_debug1(1, "in %s storage function\n", "sRGB");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600340 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600341 return;
342
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600343 info_ptr->srgb_intent = (png_byte)intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600344 info_ptr->valid |= PNG_INFO_sRGB;
345}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600346
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600347void
348png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600349 int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600350{
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600351#if defined(PNG_gAMA_SUPPORTED)
352#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600353 float file_gamma;
354#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600355#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600356 png_fixed_point int_file_gamma;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600357#endif
358#endif
359#if defined(PNG_cHRM_SUPPORTED)
360#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600361 float white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y;
362#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600363#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600364 png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, int_green_x,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600365 int_green_y, int_blue_x, int_blue_y;
366#endif
367#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600368 png_debug1(1, "in %s storage function\n", "sRGB_gAMA_and_cHRM");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600369 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600370 return;
371
372 png_set_sRGB(png_ptr, info_ptr, intent);
373
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600374#if defined(PNG_gAMA_SUPPORTED)
375#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonab1e5831999-10-06 04:57:42 -0500376 file_gamma = (float).45455;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600377 png_set_gAMA(png_ptr, info_ptr, file_gamma);
378#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600379#ifdef PNG_FIXED_POINT_SUPPORTED
380 int_file_gamma = 45455L;
381 png_set_gAMA_fixed(png_ptr, info_ptr, int_file_gamma);
382#endif
383#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600384
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600385#if defined(PNG_cHRM_SUPPORTED)
386#ifdef PNG_FIXED_POINT_SUPPORTED
387 int_white_x = 31270L;
388 int_white_y = 32900L;
389 int_red_x = 64000L;
390 int_red_y = 33000L;
391 int_green_x = 30000L;
392 int_green_y = 60000L;
393 int_blue_x = 15000L;
394 int_blue_y = 6000L;
395
396 png_set_cHRM_fixed(png_ptr, info_ptr,
397 int_white_x, int_white_y, int_red_x, int_red_y, int_green_x, int_green_y,
398 int_blue_x, int_blue_y);
399#endif
400#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600401 white_x = (float).3127;
402 white_y = (float).3290;
403 red_x = (float).64;
404 red_y = (float).33;
405 green_x = (float).30;
406 green_y = (float).60;
407 blue_x = (float).15;
408 blue_y = (float).06;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600409
410 png_set_cHRM(png_ptr, info_ptr,
411 white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600412#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600413#endif
414}
415#endif
416
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600417
418#if defined(PNG_iCCP_SUPPORTED)
419void
420png_set_iCCP(png_structp png_ptr, png_infop info_ptr,
421 png_charp name, int compression_type,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600422 png_charp profile, png_uint_32 proflen)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600423{
424 png_debug1(1, "in %s storage function\n", "iCCP");
425 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
426 return;
427
428 info_ptr->iccp_name = png_malloc(png_ptr, png_strlen(name)+1);
429 strcpy(info_ptr->iccp_name, name);
430 info_ptr->iccp_profile = png_malloc(png_ptr, proflen);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600431 png_memcpy(info_ptr->iccp_profile, profile, (png_size_t)proflen);
432 info_ptr->iccp_proflen = proflen;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600433 /* Compression is always zero but is here so the API and info structure
434 * does not have to change * if we introduce multiple compression types */
435 info_ptr->iccp_compression = (png_byte)compression_type;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600436 info_ptr->free_me |= PNG_FREE_ICCP;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600437 info_ptr->valid |= PNG_INFO_iCCP;
438}
439#endif
440
441#if defined(PNG_TEXT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500442void
443png_set_text(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
444 int num_text)
445{
446 int i;
447
448 png_debug1(1, "in %s storage function\n", (png_ptr->chunk_name[0] == '\0' ?
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600449 "text" : (png_const_charp)png_ptr->chunk_name));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500450
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600451 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500452 return;
453
454 /* Make sure we have enough space in the "text" array in info_struct
455 * to hold all of the incoming text_ptr objects.
456 */
457 if (info_ptr->num_text + num_text > info_ptr->max_text)
458 {
459 if (info_ptr->text != NULL)
460 {
461 png_textp old_text;
462 int old_max;
463
464 old_max = info_ptr->max_text;
465 info_ptr->max_text = info_ptr->num_text + num_text + 8;
466 old_text = info_ptr->text;
467 info_ptr->text = (png_textp)png_malloc(png_ptr,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600468 (png_uint_32)(info_ptr->max_text * sizeof (png_text)));
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600469 png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
470 sizeof(png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500471 png_free(png_ptr, old_text);
472 }
473 else
474 {
475 info_ptr->max_text = num_text + 8;
476 info_ptr->num_text = 0;
477 info_ptr->text = (png_textp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600478 (png_uint_32)(info_ptr->max_text * sizeof (png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500479 }
480 png_debug1(3, "allocated %d entries for info_ptr->text\n",
481 info_ptr->max_text);
482 }
483
484 for (i = 0; i < num_text; i++)
485 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600486 png_size_t text_length,key_len,lang_len,lang_key_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500487 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
488
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500489 if (text_ptr[i].key == (png_charp)NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600490 continue;
491
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600492 key_len = png_strlen(text_ptr[i].key);
493
494 if(text_ptr[i].compression > 0)
495 {
496 /* set iTXt data */
497 lang_len = png_strlen(text_ptr[i].lang);
498 lang_key_len = png_strlen(text_ptr[i].lang_key);
499 }
500 else
501 {
502 lang_len = 0;
503 lang_key_len = 0;
504 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500505
506 if (text_ptr[i].text[0] == '\0')
507 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600508 text_length = 0;
509 if(text_ptr[i].compression > 0)
510 textp->compression = PNG_ITXT_COMPRESSION_NONE;
511 else
512 textp->compression = PNG_TEXT_COMPRESSION_NONE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500513 }
514 else
515 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600516 text_length = png_strlen(text_ptr[i].text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500517 textp->compression = text_ptr[i].compression;
518 }
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500519
520 textp->key = (png_charp)png_malloc(png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600521 (png_uint_32)(key_len + lang_len + lang_key_len + text_length + 4));
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500522 png_debug2(2, "Allocated %d bytes at %x in png_set_text\n",
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600523 key_len + lang_len + lang_key_len + text_length + 4, textp->key);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500524
525 png_memcpy(textp->key, text_ptr[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600526 (png_size_t)(key_len));
527 *(textp->key+key_len) = '\0';
528 if (text_ptr[i].compression > 0)
529 {
530 textp->lang=textp->key + key_len + 1;
531 png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
532 *(textp->lang+lang_len) = '\0';
533 textp->lang_key=textp->lang + lang_len + 1;
534 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
535 *(textp->lang_key+lang_key_len) = '\0';
536 textp->text=textp->lang_key + lang_key_len + 1;
537 }
538 else
539 {
540 textp->lang=NULL;
541 textp->lang_key=NULL;
542 textp->text=textp->key + key_len + 1;
543 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600544
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600545 if(text_length)
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500546 {
547 png_memcpy(textp->text, text_ptr[i].text,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600548 (png_size_t)(text_length));
549 *(textp->text+text_length) = '\0';
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500550 }
551 else
552 textp->text--;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600553
554 if(textp->compression > 0)
555 {
556 textp->text_length = 0;
557 textp->itxt_length = text_length;
558 }
559 else
560 {
561 textp->text_length = text_length;
562 textp->itxt_length = 0;
563 }
564
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500565 info_ptr->text[info_ptr->num_text]= *textp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500566 info_ptr->num_text++;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600567 info_ptr->free_me |= PNG_FREE_TEXT;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500568 png_debug1(3, "transferred text chunk %d\n", info_ptr->num_text);
569 }
570}
571#endif
572
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600573#if defined(PNG_tIME_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500574void
575png_set_tIME(png_structp png_ptr, png_infop info_ptr, png_timep mod_time)
576{
577 png_debug1(1, "in %s storage function\n", "tIME");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500578 if (png_ptr == NULL || info_ptr == NULL ||
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600579 (png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500580 return;
581
582 png_memcpy(&(info_ptr->mod_time), mod_time, sizeof (png_time));
583 info_ptr->valid |= PNG_INFO_tIME;
584}
585#endif
586
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600587#if defined(PNG_tRNS_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500588void
589png_set_tRNS(png_structp png_ptr, png_infop info_ptr,
590 png_bytep trans, int num_trans, png_color_16p trans_values)
591{
592 png_debug1(1, "in %s storage function\n", "tRNS");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600593 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500594 return;
595
596 if (trans != NULL)
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600597 info_ptr->trans = trans;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500598
599 if (trans_values != NULL)
600 {
601 png_memcpy(&(info_ptr->trans_values), trans_values,
602 sizeof(png_color_16));
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600603 if (num_trans == 0)
604 num_trans = 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500605 }
606 info_ptr->num_trans = (png_uint_16)num_trans;
607 info_ptr->valid |= PNG_INFO_tRNS;
608}
609#endif
610
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600611#if defined(PNG_sPLT_SUPPORTED)
612void
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600613png_set_sPLT(png_structp png_ptr,
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600614 png_infop info_ptr, png_sPLT_tp entries, int nentries)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600615{
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600616 png_sPLT_tp np;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600617 int i;
618
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600619 np = (png_sPLT_tp)png_malloc(png_ptr,
620 (info_ptr->splt_palettes_num + nentries) * sizeof(png_sPLT_t));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600621
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600622 png_memcpy(np, info_ptr->splt_palettes,
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600623 info_ptr->splt_palettes_num * sizeof(png_sPLT_t));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600624 png_free(png_ptr, info_ptr->splt_palettes);
625
626 for (i = 0; i < nentries; i++)
627 {
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600628 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
629 png_sPLT_tp from = entries + i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600630
631 to->name = (png_charp)png_malloc(png_ptr,
632 png_strlen(from->name) + 1);
633 png_strcpy(to->name, from->name);
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600634 to->entries = (png_sPLT_entryp)png_malloc(png_ptr,
635 from->nentries * sizeof(png_sPLT_t));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600636 png_memcpy(to->entries, from->entries,
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600637 from->nentries * sizeof(png_sPLT_t));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600638 to->nentries = from->nentries;
639 to->depth = from->depth;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600640 }
641
642 info_ptr->splt_palettes = np;
643 info_ptr->splt_palettes_num += nentries;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600644 info_ptr->valid |= PNG_INFO_sPLT;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600645 info_ptr->free_me |= PNG_FREE_SPLT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600646}
647#endif /* PNG_sPLT_SUPPORTED */
648
649#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
650void
651png_set_unknown_chunks(png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600652 png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600653{
654 png_unknown_chunkp np;
655 int i;
656
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600657 if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
658 return;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600659
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600660 np = (png_unknown_chunkp)png_malloc(png_ptr,
661 (info_ptr->unknown_chunks_num + num_unknowns) *
662 sizeof(png_unknown_chunk));
663
664 png_memcpy(np, info_ptr->unknown_chunks,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600665 info_ptr->unknown_chunks_num * sizeof(png_unknown_chunk));
666 png_free(png_ptr, info_ptr->unknown_chunks);
667
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600668 for (i = 0; i < num_unknowns; i++)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600669 {
670 png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
671 png_unknown_chunkp from = unknowns + i;
672
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600673 png_strcpy((png_charp)to->name, (png_charp)from->name);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600674 to->data = (png_bytep)png_malloc(png_ptr, from->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600675 png_memcpy(to->data, from->data, from->size);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600676 to->size = from->size;
677
678 /* note our location in the read or write sequence */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600679 to->location = (png_byte)(png_ptr->mode & 0xff);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600680 }
681
682 info_ptr->unknown_chunks = np;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600683 info_ptr->unknown_chunks_num += num_unknowns;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600684 info_ptr->free_me |= PNG_FREE_UNKN;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600685}
686#endif
687
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600688#if defined(PNG_READ_EMPTY_PLTE_SUPPORTED) || \
689 defined(PNG_WRITE_EMPTY_PLTE_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500690void
691png_permit_empty_plte (png_structp png_ptr, int empty_plte_permitted)
692{
693 png_debug1(1, "in png_permit_empty_plte\n", "");
694 if (png_ptr == NULL)
695 return;
696 png_ptr->empty_plte_permitted=(png_byte)empty_plte_permitted;
697}
698#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600699
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600700#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
701void
702png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_bytep
703 chunk_list, int num_chunks)
704{
705 png_bytep new_list, p;
706 int i, old_num_chunks;
707 if (num_chunks == 0)
708 {
709 if(keep == HANDLE_CHUNK_ALWAYS || keep == HANDLE_CHUNK_IF_SAFE)
710 png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
711 else
712 png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600713
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600714 if(keep == HANDLE_CHUNK_ALWAYS)
715 png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
716 else
717 png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
718 return;
719 }
720 if (chunk_list == NULL)
721 return;
722 old_num_chunks=png_ptr->num_chunk_list;
723 new_list=png_malloc(png_ptr,5*(num_chunks+old_num_chunks));
724 if(png_ptr->chunk_list != (png_bytep)NULL)
725 {
726 png_memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks);
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600727 png_free(png_ptr, png_ptr->chunk_list);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600728 }
729 png_memcpy(new_list+5*old_num_chunks, chunk_list, 5*num_chunks);
730 for (p=new_list+5*old_num_chunks+4, i=0; i<num_chunks; i++, p+=5)
731 *p=(png_byte)keep;
732 png_ptr->num_chunk_list=old_num_chunks+num_chunks;
733 png_ptr->chunk_list=new_list;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600734 png_ptr->free_me |= PNG_FREE_LIST;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600735}
736#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600737
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600738#if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
739void
740png_set_read_user_chunk_fn(png_structp png_ptr, png_voidp user_chunk_ptr,
741 png_user_chunk_ptr read_user_chunk_fn)
742{
743 png_debug(1, "in png_set_read_user_chunk_fn\n");
744 png_ptr->read_user_chunk_fn = read_user_chunk_fn;
745 png_ptr->user_chunk_ptr = user_chunk_ptr;
746}
747#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600748
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600749#if defined(PNG_INFO_IMAGE_SUPPORTED)
750void
751png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers)
752{
753 png_debug1(1, "in %s storage function\n", "rows");
754 if (png_ptr == NULL || info_ptr == NULL)
755 return;
756
757 info_ptr->row_pointers = row_pointers;
758 info_ptr->free_me |= PNG_FREE_ROWS;
759}
760#endif
761