blob: 011f459f275b98e3d3c1cd9bcaafe1386e02679f [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-Pehrson61c32d92000-02-04 23:40:16 -06004 * libpng 1.0.5q - February 5, 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-Pehrson61c32d92000-02-04 23:40:16 -0600138 info_ptr->hist = png_malloc(png_ptr, sizeof(png_uint_16) *
139 info_ptr->num_palette);
140 png_memcpy(info_ptr->hist, hist, sizeof(png_uint_16) * info_ptr->num_palette);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500141 info_ptr->valid |= PNG_INFO_hIST;
142}
143#endif
144
145void
146png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
147 png_uint_32 width, png_uint_32 height, int bit_depth,
148 int color_type, int interlace_type, int compression_type,
149 int filter_type)
150{
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600151 int rowbytes_per_pixel;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500152 png_debug1(1, "in %s storage function\n", "IHDR");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600153 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500154 return;
155
156 info_ptr->width = width;
157 info_ptr->height = height;
158 info_ptr->bit_depth = (png_byte)bit_depth;
159 info_ptr->color_type =(png_byte) color_type;
160 info_ptr->compression_type = (png_byte)compression_type;
161 info_ptr->filter_type = (png_byte)filter_type;
162 info_ptr->interlace_type = (png_byte)interlace_type;
163 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
164 info_ptr->channels = 1;
165 else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
166 info_ptr->channels = 3;
167 else
168 info_ptr->channels = 1;
169 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
170 info_ptr->channels++;
171 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600172
173 /* check for overflow */
174 rowbytes_per_pixel = (info_ptr->pixel_depth + 7) >> 3;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500175 if (( width > PNG_MAX_UINT/rowbytes_per_pixel))
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600176 {
177 png_warning(png_ptr,
178 "Width too large to process image data; rowbytes will overflow.");
179 info_ptr->rowbytes = (png_size_t)0;
180 }
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500181 else
182 info_ptr->rowbytes = (info_ptr->width * info_ptr->pixel_depth + 7) >> 3;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500183}
184
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600185#if defined(PNG_oFFs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500186void
187png_set_oFFs(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600188 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500189{
190 png_debug1(1, "in %s storage function\n", "oFFs");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600191 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500192 return;
193
194 info_ptr->x_offset = offset_x;
195 info_ptr->y_offset = offset_y;
196 info_ptr->offset_unit_type = (png_byte)unit_type;
197 info_ptr->valid |= PNG_INFO_oFFs;
198}
199#endif
200
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600201#if defined(PNG_pCAL_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500202void
203png_set_pCAL(png_structp png_ptr, png_infop info_ptr,
204 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
205 png_charp units, png_charpp params)
206{
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600207 png_uint_32 length;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600208 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500209
210 png_debug1(1, "in %s storage function\n", "pCAL");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600211 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500212 return;
213
214 length = png_strlen(purpose) + 1;
215 png_debug1(3, "allocating purpose for info (%d bytes)\n", length);
216 info_ptr->pcal_purpose = (png_charp)png_malloc(png_ptr, length);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600217 png_memcpy(info_ptr->pcal_purpose, purpose, (png_size_t)length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500218
219 png_debug(3, "storing X0, X1, type, and nparams in info\n");
220 info_ptr->pcal_X0 = X0;
221 info_ptr->pcal_X1 = X1;
222 info_ptr->pcal_type = (png_byte)type;
223 info_ptr->pcal_nparams = (png_byte)nparams;
224
225 length = png_strlen(units) + 1;
226 png_debug1(3, "allocating units for info (%d bytes)\n", length);
227 info_ptr->pcal_units = (png_charp)png_malloc(png_ptr, length);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600228 png_memcpy(info_ptr->pcal_units, units, (png_size_t)length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500229
230 info_ptr->pcal_params = (png_charpp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600231 (png_uint_32)((nparams + 1) * sizeof(png_charp)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500232 info_ptr->pcal_params[nparams] = NULL;
233
234 for (i = 0; i < nparams; i++)
235 {
236 length = png_strlen(params[i]) + 1;
237 png_debug2(3, "allocating parameter %d for info (%d bytes)\n", i, length);
238 info_ptr->pcal_params[i] = (png_charp)png_malloc(png_ptr, length);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600239 png_memcpy(info_ptr->pcal_params[i], params[i], (png_size_t)length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500240 }
241
242 info_ptr->valid |= PNG_INFO_pCAL;
243}
244#endif
245
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600246#if defined(PNG_READ_sCAL_SUPPORTED) || defined(PNG_WRITE_sCAL_SUPPORTED)
247#ifdef PNG_FLOATING_POINT_SUPPORTED
248void
249png_set_sCAL(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600250 int unit, double width, double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600251{
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600252 png_debug1(1, "in %s storage function\n", "sCAL");
253 if (png_ptr == NULL || info_ptr == NULL)
254 return;
255
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600256 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600257 info_ptr->scal_pixel_width = width;
258 info_ptr->scal_pixel_height = height;
259
260 info_ptr->valid |= PNG_INFO_sCAL;
261}
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600262#else
263#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600264void
265png_set_sCAL_s(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600266 int unit, png_charp swidth, png_charp sheight)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600267{
268 png_uint_32 length;
269
270 png_debug1(1, "in %s storage function\n", "sCAL");
271 if (png_ptr == NULL || info_ptr == NULL)
272 return;
273
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600274 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600275
276 length = png_strlen(swidth) + 1;
277 png_debug1(3, "allocating unit for info (%d bytes)\n", length);
278 info_ptr->scal_s_width = (png_charp)png_malloc(png_ptr, length);
279 png_memcpy(info_ptr->scal_s_width, swidth, (png_size_t)length);
280
281 length = png_strlen(sheight) + 1;
282 png_debug1(3, "allocating unit for info (%d bytes)\n", length);
283 info_ptr->scal_s_width = (png_charp)png_malloc(png_ptr, length);
284 png_memcpy(info_ptr->scal_s_height, sheight, (png_size_t)length);
285
286 info_ptr->valid |= PNG_INFO_sCAL;
287}
288#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600289#endif
290#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600291
292#if defined(PNG_pHYs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500293void
294png_set_pHYs(png_structp png_ptr, png_infop info_ptr,
295 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
296{
297 png_debug1(1, "in %s storage function\n", "pHYs");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600298 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500299 return;
300
301 info_ptr->x_pixels_per_unit = res_x;
302 info_ptr->y_pixels_per_unit = res_y;
303 info_ptr->phys_unit_type = (png_byte)unit_type;
304 info_ptr->valid |= PNG_INFO_pHYs;
305}
306#endif
307
308void
309png_set_PLTE(png_structp png_ptr, png_infop info_ptr,
310 png_colorp palette, int num_palette)
311{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600312 png_size_t length = (png_size_t)(3*num_palette);
313
Andreas Dilger47a0c421997-05-16 02:46:07 -0500314 png_debug1(1, "in %s storage function\n", "PLTE");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600315 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500316 return;
317
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600318 png_debug1(3, "allocating PLTE for info (%d bytes)\n", length);
319
320 info_ptr->palette = (png_colorp)png_zalloc(png_ptr, (uInt)num_palette,
321 sizeof (png_color));
322
323 png_memcpy(info_ptr->palette, palette, length);
324
Andreas Dilger47a0c421997-05-16 02:46:07 -0500325 info_ptr->num_palette = (png_uint_16)num_palette;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600326 info_ptr->valid |= (PNG_INFO_PLTE|PNG_ALLOCATED_INFO_PLTE);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500327}
328
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600329#if defined(PNG_sBIT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500330void
331png_set_sBIT(png_structp png_ptr, png_infop info_ptr,
332 png_color_8p sig_bit)
333{
334 png_debug1(1, "in %s storage function\n", "sBIT");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600335 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500336 return;
337
338 png_memcpy(&(info_ptr->sig_bit), sig_bit, sizeof (png_color_8));
339 info_ptr->valid |= PNG_INFO_sBIT;
340}
341#endif
342
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600343#if defined(PNG_sRGB_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600344void
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600345png_set_sRGB(png_structp png_ptr, png_infop info_ptr, int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600346{
347 png_debug1(1, "in %s storage function\n", "sRGB");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600348 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600349 return;
350
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600351 info_ptr->srgb_intent = (png_byte)intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600352 info_ptr->valid |= PNG_INFO_sRGB;
353}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600354
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600355void
356png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600357 int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600358{
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600359#if defined(PNG_gAMA_SUPPORTED)
360#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600361 float file_gamma;
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_file_gamma;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600365#endif
366#endif
367#if defined(PNG_cHRM_SUPPORTED)
368#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600369 float white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y;
370#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600371#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600372 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 -0600373 int_green_y, int_blue_x, int_blue_y;
374#endif
375#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600376 png_debug1(1, "in %s storage function\n", "sRGB_gAMA_and_cHRM");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600377 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600378 return;
379
380 png_set_sRGB(png_ptr, info_ptr, intent);
381
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600382#if defined(PNG_gAMA_SUPPORTED)
383#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonab1e5831999-10-06 04:57:42 -0500384 file_gamma = (float).45455;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600385 png_set_gAMA(png_ptr, info_ptr, file_gamma);
386#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600387#ifdef PNG_FIXED_POINT_SUPPORTED
388 int_file_gamma = 45455L;
389 png_set_gAMA_fixed(png_ptr, info_ptr, int_file_gamma);
390#endif
391#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600392
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600393#if defined(PNG_cHRM_SUPPORTED)
394#ifdef PNG_FIXED_POINT_SUPPORTED
395 int_white_x = 31270L;
396 int_white_y = 32900L;
397 int_red_x = 64000L;
398 int_red_y = 33000L;
399 int_green_x = 30000L;
400 int_green_y = 60000L;
401 int_blue_x = 15000L;
402 int_blue_y = 6000L;
403
404 png_set_cHRM_fixed(png_ptr, info_ptr,
405 int_white_x, int_white_y, int_red_x, int_red_y, int_green_x, int_green_y,
406 int_blue_x, int_blue_y);
407#endif
408#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600409 white_x = (float).3127;
410 white_y = (float).3290;
411 red_x = (float).64;
412 red_y = (float).33;
413 green_x = (float).30;
414 green_y = (float).60;
415 blue_x = (float).15;
416 blue_y = (float).06;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600417
418 png_set_cHRM(png_ptr, info_ptr,
419 white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600420#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600421#endif
422}
423#endif
424
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600425
426#if defined(PNG_iCCP_SUPPORTED)
427void
428png_set_iCCP(png_structp png_ptr, png_infop info_ptr,
429 png_charp name, int compression_type,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600430 png_charp profile, png_uint_32 proflen)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600431{
432 png_debug1(1, "in %s storage function\n", "iCCP");
433 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
434 return;
435
436 info_ptr->iccp_name = png_malloc(png_ptr, png_strlen(name)+1);
437 strcpy(info_ptr->iccp_name, name);
438 info_ptr->iccp_profile = png_malloc(png_ptr, proflen);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600439 png_memcpy(info_ptr->iccp_profile, profile, (png_size_t)proflen);
440 info_ptr->iccp_proflen = proflen;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600441 /* Compression is always zero but is here so the API and info structure
442 * does not have to change * if we introduce multiple compression types */
443 info_ptr->iccp_compression = (png_byte)compression_type;
444 info_ptr->valid |= PNG_INFO_iCCP;
445}
446#endif
447
448#if defined(PNG_TEXT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500449void
450png_set_text(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
451 int num_text)
452{
453 int i;
454
455 png_debug1(1, "in %s storage function\n", (png_ptr->chunk_name[0] == '\0' ?
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600456 "text" : (png_const_charp)png_ptr->chunk_name));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500457
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600458 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500459 return;
460
461 /* Make sure we have enough space in the "text" array in info_struct
462 * to hold all of the incoming text_ptr objects.
463 */
464 if (info_ptr->num_text + num_text > info_ptr->max_text)
465 {
466 if (info_ptr->text != NULL)
467 {
468 png_textp old_text;
469 int old_max;
470
471 old_max = info_ptr->max_text;
472 info_ptr->max_text = info_ptr->num_text + num_text + 8;
473 old_text = info_ptr->text;
474 info_ptr->text = (png_textp)png_malloc(png_ptr,
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600475 (png_uint_32)(info_ptr->max_text * sizeof (png_text)));
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600476 png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
477 sizeof(png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500478 png_free(png_ptr, old_text);
479 }
480 else
481 {
482 info_ptr->max_text = num_text + 8;
483 info_ptr->num_text = 0;
484 info_ptr->text = (png_textp)png_malloc(png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600485 (png_uint_32)(info_ptr->max_text * sizeof (png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500486 }
487 png_debug1(3, "allocated %d entries for info_ptr->text\n",
488 info_ptr->max_text);
489 }
490
491 for (i = 0; i < num_text; i++)
492 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600493 png_size_t text_length,key_len,lang_len,lang_key_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500494 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
495
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500496 if (text_ptr[i].key == (png_charp)NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600497 continue;
498
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600499 key_len = png_strlen(text_ptr[i].key);
500
501 if(text_ptr[i].compression > 0)
502 {
503 /* set iTXt data */
504 lang_len = png_strlen(text_ptr[i].lang);
505 lang_key_len = png_strlen(text_ptr[i].lang_key);
506 }
507 else
508 {
509 lang_len = 0;
510 lang_key_len = 0;
511 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500512
513 if (text_ptr[i].text[0] == '\0')
514 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600515 text_length = 0;
516 if(text_ptr[i].compression > 0)
517 textp->compression = PNG_ITXT_COMPRESSION_NONE;
518 else
519 textp->compression = PNG_TEXT_COMPRESSION_NONE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500520 }
521 else
522 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600523 text_length = png_strlen(text_ptr[i].text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500524 textp->compression = text_ptr[i].compression;
525 }
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500526
527 textp->key = (png_charp)png_malloc(png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600528 (png_uint_32)(key_len + lang_len + lang_key_len + text_length + 4));
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500529 /* Caution: the calling program, not libpng, is responsible for
530 freeing this, if libpng wasn't the caller. */
531 png_debug2(2, "Allocated %d bytes at %x in png_set_text\n",
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600532 key_len + lang_len + lang_key_len + text_length + 4, textp->key);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500533
534 png_memcpy(textp->key, text_ptr[i].key,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600535 (png_size_t)(key_len));
536 *(textp->key+key_len) = '\0';
537 if (text_ptr[i].compression > 0)
538 {
539 textp->lang=textp->key + key_len + 1;
540 png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
541 *(textp->lang+lang_len) = '\0';
542 textp->lang_key=textp->lang + lang_len + 1;
543 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
544 *(textp->lang_key+lang_key_len) = '\0';
545 textp->text=textp->lang_key + lang_key_len + 1;
546 }
547 else
548 {
549 textp->lang=NULL;
550 textp->lang_key=NULL;
551 textp->text=textp->key + key_len + 1;
552 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600553
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600554 if(text_length)
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500555 {
556 png_memcpy(textp->text, text_ptr[i].text,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600557 (png_size_t)(text_length));
558 *(textp->text+text_length) = '\0';
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500559 }
560 else
561 textp->text--;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600562
563 if(textp->compression > 0)
564 {
565 textp->text_length = 0;
566 textp->itxt_length = text_length;
567 }
568 else
569 {
570 textp->text_length = text_length;
571 textp->itxt_length = 0;
572 }
573
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500574 info_ptr->text[info_ptr->num_text]= *textp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500575 info_ptr->num_text++;
576 png_debug1(3, "transferred text chunk %d\n", info_ptr->num_text);
577 }
578}
579#endif
580
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600581#if defined(PNG_tIME_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500582void
583png_set_tIME(png_structp png_ptr, png_infop info_ptr, png_timep mod_time)
584{
585 png_debug1(1, "in %s storage function\n", "tIME");
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500586 if (png_ptr == NULL || info_ptr == NULL ||
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600587 (png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500588 return;
589
590 png_memcpy(&(info_ptr->mod_time), mod_time, sizeof (png_time));
591 info_ptr->valid |= PNG_INFO_tIME;
592}
593#endif
594
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600595#if defined(PNG_tRNS_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500596void
597png_set_tRNS(png_structp png_ptr, png_infop info_ptr,
598 png_bytep trans, int num_trans, png_color_16p trans_values)
599{
600 png_debug1(1, "in %s storage function\n", "tRNS");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600601 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500602 return;
603
604 if (trans != NULL)
605 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600606 info_ptr->trans = png_malloc(png_ptr, num_trans);
607 png_memcpy(info_ptr->trans, trans, num_trans);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500608 }
609
610 if (trans_values != NULL)
611 {
612 png_memcpy(&(info_ptr->trans_values), trans_values,
613 sizeof(png_color_16));
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600614 if (num_trans == 0)
615 num_trans = 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500616 }
617 info_ptr->num_trans = (png_uint_16)num_trans;
618 info_ptr->valid |= PNG_INFO_tRNS;
619}
620#endif
621
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600622#if defined(PNG_sPLT_SUPPORTED)
623void
624png_set_spalettes(png_structp png_ptr,
625 png_infop info_ptr, png_spalette_p entries, int nentries)
626{
627 png_spalette_p np;
628 int i;
629
630 np = (png_spalette_p)png_malloc(png_ptr,
631 (info_ptr->splt_palettes_num + nentries) * sizeof(png_spalette));
632
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600633 png_memcpy(np, info_ptr->splt_palettes,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600634 info_ptr->splt_palettes_num * sizeof(png_spalette));
635 png_free(png_ptr, info_ptr->splt_palettes);
636
637 for (i = 0; i < nentries; i++)
638 {
639 png_spalette_p to = np + info_ptr->splt_palettes_num + i;
640 png_spalette_p from = entries + i;
641
642 to->name = (png_charp)png_malloc(png_ptr,
643 png_strlen(from->name) + 1);
644 png_strcpy(to->name, from->name);
645 to->entries = (png_spalette_entryp)png_malloc(png_ptr,
646 from->nentries * sizeof(png_spalette));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600647 png_memcpy(to->entries, from->entries,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600648 from->nentries * sizeof(png_spalette));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600649 to->nentries = from->nentries;
650 to->depth = from->depth;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600651 }
652
653 info_ptr->splt_palettes = np;
654 info_ptr->splt_palettes_num += nentries;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600655 info_ptr->valid |= PNG_INFO_sPLT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600656}
657#endif /* PNG_sPLT_SUPPORTED */
658
659#if defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED)
660void
661png_set_unknown_chunks(png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600662 png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600663{
664 png_unknown_chunkp np;
665 int i;
666
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600667 if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
668 return;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600669
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600670 np = (png_unknown_chunkp)png_malloc(png_ptr,
671 (info_ptr->unknown_chunks_num + num_unknowns) *
672 sizeof(png_unknown_chunk));
673
674 png_memcpy(np, info_ptr->unknown_chunks,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600675 info_ptr->unknown_chunks_num * sizeof(png_unknown_chunk));
676 png_free(png_ptr, info_ptr->unknown_chunks);
677
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600678 for (i = 0; i < num_unknowns; i++)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600679 {
680 png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
681 png_unknown_chunkp from = unknowns + i;
682
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600683 png_strcpy((png_charp)to->name, (png_charp)from->name);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600684 to->data = (png_bytep)png_malloc(png_ptr, from->size);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600685 png_memcpy(to->data, from->data, from->size);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600686 to->size = from->size;
687
688 /* note our location in the read or write sequence */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600689 to->location = (png_byte)(png_ptr->mode & 0xff);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600690 }
691
692 info_ptr->unknown_chunks = np;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600693 info_ptr->unknown_chunks_num += num_unknowns;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600694}
695#endif
696
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500697#if defined(PNG_READ_EMPTY_PLTE_SUPPORTED)
698void
699png_permit_empty_plte (png_structp png_ptr, int empty_plte_permitted)
700{
701 png_debug1(1, "in png_permit_empty_plte\n", "");
702 if (png_ptr == NULL)
703 return;
704 png_ptr->empty_plte_permitted=(png_byte)empty_plte_permitted;
705}
706#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600707
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600708#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
709void
710png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_bytep
711 chunk_list, int num_chunks)
712{
713 png_bytep new_list, p;
714 int i, old_num_chunks;
715 if (num_chunks == 0)
716 {
717 if(keep == HANDLE_CHUNK_ALWAYS || keep == HANDLE_CHUNK_IF_SAFE)
718 png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
719 else
720 png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600721
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600722 if(keep == HANDLE_CHUNK_ALWAYS)
723 png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
724 else
725 png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
726 return;
727 }
728 if (chunk_list == NULL)
729 return;
730 old_num_chunks=png_ptr->num_chunk_list;
731 new_list=png_malloc(png_ptr,5*(num_chunks+old_num_chunks));
732 if(png_ptr->chunk_list != (png_bytep)NULL)
733 {
734 png_memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks);
735 png_free_chunk_list(png_ptr);
736 }
737 png_memcpy(new_list+5*old_num_chunks, chunk_list, 5*num_chunks);
738 for (p=new_list+5*old_num_chunks+4, i=0; i<num_chunks; i++, p+=5)
739 *p=(png_byte)keep;
740 png_ptr->num_chunk_list=old_num_chunks+num_chunks;
741 png_ptr->chunk_list=new_list;
742}
743#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600744
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600745#if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
746void
747png_set_read_user_chunk_fn(png_structp png_ptr, png_voidp user_chunk_ptr,
748 png_user_chunk_ptr read_user_chunk_fn)
749{
750 png_debug(1, "in png_set_read_user_chunk_fn\n");
751 png_ptr->read_user_chunk_fn = read_user_chunk_fn;
752 png_ptr->user_chunk_ptr = user_chunk_ptr;
753}
754#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600755