blob: 67cd1a5b5dac43f03fb02be86a33d21694d86250 [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-Pehrson915bab52010-07-24 08:22:59 -05004 * Last changed in libpng 1.5.0 [July 24, 2010]
Glenn Randers-Pehrsone69b55d2010-01-01 10:29:06 -06005 * Copyright (c) 1998-2010 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
Andreas Dilger47a0c421997-05-16 02:46:07 -050025png_set_bKGD(png_structp png_ptr, png_infop info_ptr, png_color_16p background)
26{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -050027 png_debug1(1, "in %s storage function", "bKGD");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050028
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -060029 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -050030 return;
31
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050032 png_memcpy(&(info_ptr->background), background, png_sizeof(png_color_16));
Andreas Dilger47a0c421997-05-16 02:46:07 -050033 info_ptr->valid |= PNG_INFO_bKGD;
34}
35#endif
36
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050037#ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060038#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050039void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -050040png_set_cHRM(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -060041 double white_x, double white_y, double red_x, double red_y,
42 double green_x, double green_y, double blue_x, double blue_y)
Andreas Dilger47a0c421997-05-16 02:46:07 -050043{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -050044 png_debug1(1, "in %s storage function", "cHRM");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050045
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -060046 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -050047 return;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -060048
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -050049 /* TODO: call png_check_cHRM_fixed */
Andreas Dilger47a0c421997-05-16 02:46:07 -050050 info_ptr->x_white = (float)white_x;
51 info_ptr->y_white = (float)white_y;
52 info_ptr->x_red = (float)red_x;
53 info_ptr->y_red = (float)red_y;
54 info_ptr->x_green = (float)green_x;
55 info_ptr->y_green = (float)green_y;
56 info_ptr->x_blue = (float)blue_x;
57 info_ptr->y_blue = (float)blue_y;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060058#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -060059 info_ptr->int_x_white = (png_fixed_point)(white_x*100000. + 0.5);
60 info_ptr->int_y_white = (png_fixed_point)(white_y*100000. + 0.5);
61 info_ptr->int_x_red = (png_fixed_point)( red_x*100000. + 0.5);
62 info_ptr->int_y_red = (png_fixed_point)( red_y*100000. + 0.5);
63 info_ptr->int_x_green = (png_fixed_point)(green_x*100000. + 0.5);
64 info_ptr->int_y_green = (png_fixed_point)(green_y*100000. + 0.5);
65 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000. + 0.5);
66 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000. + 0.5);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060067#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -050068 info_ptr->valid |= PNG_INFO_cHRM;
69}
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -060070#endif /* PNG_FLOATING_POINT_SUPPORTED */
71
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060072#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050073void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060074png_set_cHRM_fixed(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -060075 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
76 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
77 png_fixed_point blue_x, png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060078{
Glenn Randers-Pehrsond6d80752008-12-02 09:49:43 -060079 png_debug1(1, "in %s storage function", "cHRM fixed");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050080
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060081 if (png_ptr == NULL || info_ptr == NULL)
82 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -050083
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050084#ifdef PNG_CHECK_cHRM_SUPPORTED
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -060085 if (png_check_cHRM_fixed(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -060086 white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y))
Glenn Randers-Pehrson71a3c1f2008-11-26 12:00:38 -060087#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050088 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050089 info_ptr->int_x_white = white_x;
90 info_ptr->int_y_white = white_y;
91 info_ptr->int_x_red = red_x;
92 info_ptr->int_y_red = red_y;
93 info_ptr->int_x_green = green_x;
94 info_ptr->int_y_green = green_y;
95 info_ptr->int_x_blue = blue_x;
96 info_ptr->int_y_blue = blue_y;
97#ifdef PNG_FLOATING_POINT_SUPPORTED
98 info_ptr->x_white = (float)(white_x/100000.);
99 info_ptr->y_white = (float)(white_y/100000.);
100 info_ptr->x_red = (float)( red_x/100000.);
101 info_ptr->y_red = (float)( red_y/100000.);
102 info_ptr->x_green = (float)(green_x/100000.);
103 info_ptr->y_green = (float)(green_y/100000.);
104 info_ptr->x_blue = (float)( blue_x/100000.);
105 info_ptr->y_blue = (float)( blue_y/100000.);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600106#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500107 info_ptr->valid |= PNG_INFO_cHRM;
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -0600108 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600109}
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -0600110#endif /* PNG_FIXED_POINT_SUPPORTED */
111#endif /* PNG_cHRM_SUPPORTED */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600112
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500113#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600114#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500115void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500116png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
117{
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500118 double png_gamma;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500119
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500120 png_debug1(1, "in %s storage function", "gAMA");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500121
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600122 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500123 return;
124
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600125 /* Check for overflow */
126 if (file_gamma > 21474.83)
127 {
128 png_warning(png_ptr, "Limiting gamma to 21474.83");
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600129 png_gamma = 21474.83;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600130 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500131
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600132 else
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500133 png_gamma = file_gamma;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500134
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500135 info_ptr->gamma = (float)png_gamma;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600136#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson4db4aff2009-04-20 11:49:24 -0500137 info_ptr->int_gamma = (int)(png_gamma*100000.+.5);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600138#endif
139 info_ptr->valid |= PNG_INFO_gAMA;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500140
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500141 if (png_gamma == 0.0)
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600142 png_warning(png_ptr, "Setting gamma = 0");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600143}
144#endif
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500145#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500146void PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600147png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600148 int_gamma)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600149{
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500150 png_fixed_point png_gamma;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600151
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500152 png_debug1(1, "in %s storage function", "gAMA");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500153
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600154 if (png_ptr == NULL || info_ptr == NULL)
155 return;
156
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500157 if (int_gamma > (png_fixed_point)PNG_UINT_31_MAX)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600158 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500159 png_warning(png_ptr, "Limiting gamma to 21474.83");
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600160 png_gamma = PNG_UINT_31_MAX;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600161 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500162
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600163 else
164 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500165 if (int_gamma < 0)
166 {
167 png_warning(png_ptr, "Setting negative gamma to zero");
168 png_gamma = 0;
169 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500170
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500171 else
172 png_gamma = int_gamma;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600173 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600174#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson4db4aff2009-04-20 11:49:24 -0500175 info_ptr->gamma = (float)(png_gamma/100000.);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600176#endif
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500177 info_ptr->int_gamma = png_gamma;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500178 info_ptr->valid |= PNG_INFO_gAMA;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500179
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500180 if (png_gamma == 0)
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600181 png_warning(png_ptr, "Setting gamma = 0");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500182}
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500183#endif
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500184#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500185
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500186#ifdef PNG_hIST_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500187void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500188png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
189{
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500190 int i;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600191
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500192 png_debug1(1, "in %s storage function", "hIST");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500193
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600194 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500195 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500196
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500197 if (info_ptr->num_palette == 0 || info_ptr->num_palette
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600198 > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500199 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500200 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600201 "Invalid palette size, hIST allocation skipped");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500202
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500203 return;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500204 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500205
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600206 png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500207 /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
208 * version 1.2.1
209 */
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500210 png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600211 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_uint_16));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500212 if (png_ptr->hist == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500213 {
214 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
215 return;
216 }
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600217
218 for (i = 0; i < info_ptr->num_palette; i++)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500219 png_ptr->hist[i] = hist[i];
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500220
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600221 info_ptr->hist = png_ptr->hist;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500222 info_ptr->valid |= PNG_INFO_hIST;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600223
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600224 info_ptr->free_me |= PNG_FREE_HIST;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500225}
226#endif
227
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500228void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500229png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
230 png_uint_32 width, png_uint_32 height, int bit_depth,
231 int color_type, int interlace_type, int compression_type,
232 int filter_type)
233{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500234 png_debug1(1, "in %s storage function", "IHDR");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500235
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600236 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500237 return;
238
239 info_ptr->width = width;
240 info_ptr->height = height;
241 info_ptr->bit_depth = (png_byte)bit_depth;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500242 info_ptr->color_type = (png_byte)color_type;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500243 info_ptr->compression_type = (png_byte)compression_type;
244 info_ptr->filter_type = (png_byte)filter_type;
245 info_ptr->interlace_type = (png_byte)interlace_type;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500246
247 png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
248 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
249 info_ptr->compression_type, info_ptr->filter_type);
250
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500251 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
252 info_ptr->channels = 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500253
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500254 else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500255 info_ptr->channels = 3;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500256
Andreas Dilger47a0c421997-05-16 02:46:07 -0500257 else
258 info_ptr->channels = 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500259
Andreas Dilger47a0c421997-05-16 02:46:07 -0500260 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
261 info_ptr->channels++;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500262
Andreas Dilger47a0c421997-05-16 02:46:07 -0500263 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600264
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500265 /* Check for potential overflow */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500266 if (width > (PNG_UINT_32_MAX
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600267 >> 3) /* 8-byte RRGGBBAA pixels */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500268 - 64 /* bigrowbuf hack */
269 - 1 /* filter byte */
270 - 7*8 /* rounding of width to multiple of 8 pixels */
271 - 8) /* extra max_pixel_depth pad */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500272 info_ptr->rowbytes = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500273 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500274 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500275}
276
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500277#ifdef PNG_oFFs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500278void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500279png_set_oFFs(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600280 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500281{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500282 png_debug1(1, "in %s storage function", "oFFs");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500283
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600284 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500285 return;
286
287 info_ptr->x_offset = offset_x;
288 info_ptr->y_offset = offset_y;
289 info_ptr->offset_unit_type = (png_byte)unit_type;
290 info_ptr->valid |= PNG_INFO_oFFs;
291}
292#endif
293
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500294#ifdef PNG_pCAL_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500295void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500296png_set_pCAL(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600297 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
298 png_charp units, png_charpp params)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500299{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500300 png_size_t length;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600301 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500302
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500303 png_debug1(1, "in %s storage function", "pCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500304
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600305 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500306 return;
307
308 length = png_strlen(purpose) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500309 png_debug1(3, "allocating purpose for info (%lu bytes)",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600310 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500311
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500312 info_ptr->pcal_purpose = (png_charp)png_malloc_warn(png_ptr, length);
313 if (info_ptr->pcal_purpose == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500314 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500315 png_warning(png_ptr, "Insufficient memory for pCAL purpose");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500316 return;
317 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500318
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500319 png_memcpy(info_ptr->pcal_purpose, purpose, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500320
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500321 png_debug(3, "storing X0, X1, type, and nparams in info");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500322 info_ptr->pcal_X0 = X0;
323 info_ptr->pcal_X1 = X1;
324 info_ptr->pcal_type = (png_byte)type;
325 info_ptr->pcal_nparams = (png_byte)nparams;
326
327 length = png_strlen(units) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500328 png_debug1(3, "allocating units for info (%lu bytes)",
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500329 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500330
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500331 info_ptr->pcal_units = (png_charp)png_malloc_warn(png_ptr, length);
332 if (info_ptr->pcal_units == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500333 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500334 png_warning(png_ptr, "Insufficient memory for pCAL units");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500335 return;
336 }
337 png_memcpy(info_ptr->pcal_units, units, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500338
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500339 info_ptr->pcal_params = (png_charpp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500340 (png_size_t)((nparams + 1) * png_sizeof(png_charp)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500341
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500342 if (info_ptr->pcal_params == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500343 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500344 png_warning(png_ptr, "Insufficient memory for pCAL params");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500345 return;
346 }
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500347
Glenn Randers-Pehrson0ffb71a2009-02-28 06:08:20 -0600348 png_memset(info_ptr->pcal_params, 0, (nparams + 1) * png_sizeof(png_charp));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500349
350 for (i = 0; i < nparams; i++)
351 {
352 length = png_strlen(params[i]) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500353 png_debug2(3, "allocating parameter %d for info (%lu bytes)", i,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500354 (unsigned long)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500355
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500356 info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500357
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500358 if (info_ptr->pcal_params[i] == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500359 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500360 png_warning(png_ptr, "Insufficient memory for pCAL parameter");
361 return;
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500362 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500363
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500364 png_memcpy(info_ptr->pcal_params[i], params[i], length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500365 }
366
367 info_ptr->valid |= PNG_INFO_pCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500368 info_ptr->free_me |= PNG_FREE_PCAL;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500369}
370#endif
371
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500372#ifdef PNG_sCAL_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600373#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500374void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600375png_set_sCAL(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600376 int unit, double width, double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600377{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500378 png_debug1(1, "in %s storage function", "sCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500379
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600380 if (png_ptr == NULL || info_ptr == NULL)
381 return;
382
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600383 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600384 info_ptr->scal_pixel_width = width;
385 info_ptr->scal_pixel_height = height;
386
387 info_ptr->valid |= PNG_INFO_sCAL;
388}
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500389#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600390#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500391void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600392png_set_sCAL_s(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600393 int unit, png_charp swidth, png_charp sheight)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600394{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500395 png_size_t length;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600396
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500397 png_debug1(1, "in %s storage function", "sCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500398
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600399 if (png_ptr == NULL || info_ptr == NULL)
400 return;
401
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600402 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600403
404 length = png_strlen(swidth) + 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500405
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500406 png_debug1(3, "allocating unit for info (%u bytes)",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600407 (unsigned int)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500408
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500409 info_ptr->scal_s_width = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500410
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500411 if (info_ptr->scal_s_width == NULL)
412 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500413 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600414 "Memory allocation failed while processing sCAL");
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500415 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500416 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500417
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500418 png_memcpy(info_ptr->scal_s_width, swidth, length);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600419
420 length = png_strlen(sheight) + 1;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500421
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500422 png_debug1(3, "allocating unit for info (%u bytes)",
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500423 (unsigned int)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500424
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500425 info_ptr->scal_s_height = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500426
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500427 if (info_ptr->scal_s_height == NULL)
428 {
429 png_free (png_ptr, info_ptr->scal_s_width);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500430 info_ptr->scal_s_width = NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500431
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500432 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600433 "Memory allocation failed while processing sCAL");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500434
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500435 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500436 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500437
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500438 png_memcpy(info_ptr->scal_s_height, sheight, length);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600439 info_ptr->valid |= PNG_INFO_sCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500440 info_ptr->free_me |= PNG_FREE_SCAL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600441}
442#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600443#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600444
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500445#ifdef PNG_pHYs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500446void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500447png_set_pHYs(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600448 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500449{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500450 png_debug1(1, "in %s storage function", "pHYs");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500451
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600452 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500453 return;
454
455 info_ptr->x_pixels_per_unit = res_x;
456 info_ptr->y_pixels_per_unit = res_y;
457 info_ptr->phys_unit_type = (png_byte)unit_type;
458 info_ptr->valid |= PNG_INFO_pHYs;
459}
460#endif
461
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500462void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500463png_set_PLTE(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600464 png_colorp palette, int num_palette)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500465{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600466
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500467 png_debug1(1, "in %s storage function", "PLTE");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500468
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600469 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500470 return;
471
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600472 if (num_palette < 0 || num_palette > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500473 {
474 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600475 png_error(png_ptr, "Invalid palette length");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500476
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500477 else
478 {
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600479 png_warning(png_ptr, "Invalid palette length");
480 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500481 }
482 }
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600483
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600484 /* It may not actually be necessary to set png_ptr->palette here;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600485 * we do it for backward compatibility with the way the png_handle_tRNS
486 * function used to do the allocation.
487 */
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600488 png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500489
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600490 /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500491 * of num_palette entries, in case of an invalid PNG file that has
492 * too-large sample values.
493 */
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600494 png_ptr->palette = (png_colorp)png_calloc(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600495 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_color));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500496
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500497 png_memcpy(png_ptr->palette, palette, num_palette * png_sizeof(png_color));
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600498 info_ptr->palette = png_ptr->palette;
499 info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600500
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600501 info_ptr->free_me |= PNG_FREE_PLTE;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600502
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600503 info_ptr->valid |= PNG_INFO_PLTE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500504}
505
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500506#ifdef PNG_sBIT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500507void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500508png_set_sBIT(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600509 png_color_8p sig_bit)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500510{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500511 png_debug1(1, "in %s storage function", "sBIT");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500512
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600513 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500514 return;
515
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500516 png_memcpy(&(info_ptr->sig_bit), sig_bit, png_sizeof(png_color_8));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500517 info_ptr->valid |= PNG_INFO_sBIT;
518}
519#endif
520
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500521#ifdef PNG_sRGB_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500522void PNGAPI
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600523png_set_sRGB(png_structp png_ptr, png_infop info_ptr, int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600524{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500525 png_debug1(1, "in %s storage function", "sRGB");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500526
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600527 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600528 return;
529
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600530 info_ptr->srgb_intent = (png_byte)intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600531 info_ptr->valid |= PNG_INFO_sRGB;
532}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600533
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500534void PNGAPI
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600535png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600536 int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600537{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500538 png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500539
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600540 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600541 return;
542
543 png_set_sRGB(png_ptr, info_ptr, intent);
544
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500545#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600546#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500547 png_set_gAMA_fixed(png_ptr, info_ptr, 45455L);
548#else
Glenn Randers-Pehrsona272d8f2010-06-25 21:45:31 -0500549 /* Floating point must be set! */
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500550 png_set_gAMA(png_ptr, info_ptr, .45455);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600551#endif
552#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600553
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500554#ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600555#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson85b02372009-09-24 19:49:13 -0500556 png_set_cHRM_fixed(png_ptr, info_ptr,
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500557 /* color x y */
558 /* white */ 31270L, 32900L,
559 /* red */ 64000L, 33000L,
560 /* green */ 30000L, 60000L,
561 /* blue */ 15000L, 6000L
562 );
563#else
564 /* Floating point must be supported! */
Glenn Randers-Pehrson85b02372009-09-24 19:49:13 -0500565 png_set_cHRM(png_ptr, info_ptr,
Glenn Randers-Pehrson82980f32010-06-26 12:31:58 -0500566 /* color x y */
567 /* while */ .3127, .3290,
568 /* red */ .64, .33,
569 /* green */ .30, .60,
570 /* blue */ .15, .06
571 );
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600572#endif
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600573#endif /* cHRM */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600574}
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600575#endif /* sRGB */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600576
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600577
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500578#ifdef PNG_iCCP_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500579void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600580png_set_iCCP(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600581 png_charp name, int compression_type,
582 png_charp profile, png_uint_32 proflen)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600583{
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500584 png_charp new_iccp_name;
585 png_charp new_iccp_profile;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500586 png_uint_32 length;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500587
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500588 png_debug1(1, "in %s storage function", "iCCP");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500589
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600590 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
591 return;
592
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500593 length = png_strlen(name)+1;
594 new_iccp_name = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500595 if (new_iccp_name == NULL)
596 {
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600597 png_warning(png_ptr, "Insufficient memory to process iCCP chunk");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500598 return;
599 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500600 png_memcpy(new_iccp_name, name, length);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500601 new_iccp_profile = (png_charp)png_malloc_warn(png_ptr, proflen);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500602
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500603 if (new_iccp_profile == NULL)
604 {
605 png_free (png_ptr, new_iccp_name);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500606 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600607 "Insufficient memory to process iCCP profile");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500608 return;
609 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500610
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500611 png_memcpy(new_iccp_profile, profile, (png_size_t)proflen);
612
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500613 png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500614
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600615 info_ptr->iccp_proflen = proflen;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500616 info_ptr->iccp_name = new_iccp_name;
617 info_ptr->iccp_profile = new_iccp_profile;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600618 /* Compression is always zero but is here so the API and info structure
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600619 * does not have to change if we introduce multiple compression types
620 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600621 info_ptr->iccp_compression = (png_byte)compression_type;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600622 info_ptr->free_me |= PNG_FREE_ICCP;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600623 info_ptr->valid |= PNG_INFO_iCCP;
624}
625#endif
626
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500627#ifdef PNG_TEXT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500628void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500629png_set_text(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600630 int num_text)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500631{
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500632 int ret;
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500633 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500634
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500635 if (ret)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500636 png_error(png_ptr, "Insufficient memory to store text");
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500637}
638
639int /* PRIVATE */
640png_set_text_2(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600641 int num_text)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500642{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500643 int i;
644
Glenn Randers-Pehrsone2a118f2009-07-27 22:08:25 -0500645 png_debug1(1, "in %s storage function", ((png_ptr == NULL ||
646 png_ptr->chunk_name[0] == '\0') ?
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600647 "text" : (png_const_charp)png_ptr->chunk_name));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500648
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600649 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500650 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500651
652 /* Make sure we have enough space in the "text" array in info_struct
653 * to hold all of the incoming text_ptr objects.
654 */
655 if (info_ptr->num_text + num_text > info_ptr->max_text)
656 {
657 if (info_ptr->text != NULL)
658 {
659 png_textp old_text;
660 int old_max;
661
662 old_max = info_ptr->max_text;
663 info_ptr->max_text = info_ptr->num_text + num_text + 8;
664 old_text = info_ptr->text;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500665 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500666 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500667
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500668 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500669 {
670 png_free(png_ptr, old_text);
671 return(1);
672 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500673
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600674 png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600675 png_sizeof(png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500676 png_free(png_ptr, old_text);
677 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500678
Andreas Dilger47a0c421997-05-16 02:46:07 -0500679 else
680 {
681 info_ptr->max_text = num_text + 8;
682 info_ptr->num_text = 0;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500683 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600684 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500685 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500686 return(1);
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500687 info_ptr->free_me |= PNG_FREE_TEXT;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500688 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500689
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500690 png_debug1(3, "allocated %d entries for info_ptr->text",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600691 info_ptr->max_text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500692 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500693 for (i = 0; i < num_text; i++)
694 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500695 png_size_t text_length, key_len;
696 png_size_t lang_len, lang_key_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500697 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
698
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500699 if (text_ptr[i].key == NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600700 continue;
701
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600702 key_len = png_strlen(text_ptr[i].key);
703
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500704 if (text_ptr[i].compression <= 0)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500705 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500706 lang_len = 0;
707 lang_key_len = 0;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500708 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500709
Glenn Randers-Pehrsondd78d522010-03-30 08:34:02 -0500710 else
Glenn Randers-Pehrson946c3f92010-03-30 14:50:07 -0500711#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600712 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500713 /* Set iTXt data */
Glenn Randers-Pehrsond6ea40a2009-11-02 07:32:00 -0600714
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500715 if (text_ptr[i].lang != NULL)
716 lang_len = png_strlen(text_ptr[i].lang);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500717
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500718 else
719 lang_len = 0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500720
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500721 if (text_ptr[i].lang_key != NULL)
722 lang_key_len = png_strlen(text_ptr[i].lang_key);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500723
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500724 else
725 lang_key_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600726 }
Glenn Randers-Pehrsond6ea40a2009-11-02 07:32:00 -0600727#else /* PNG_iTXt_SUPPORTED */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500728 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500729 png_warning(png_ptr, "iTXt chunk not supported");
730 continue;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500731 }
732#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500733
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500734 if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
Andreas Dilger47a0c421997-05-16 02:46:07 -0500735 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600736 text_length = 0;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500737#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500738 if (text_ptr[i].compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600739 textp->compression = PNG_ITXT_COMPRESSION_NONE;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500740
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600741 else
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500742#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600743 textp->compression = PNG_TEXT_COMPRESSION_NONE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500744 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500745
Andreas Dilger47a0c421997-05-16 02:46:07 -0500746 else
747 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600748 text_length = png_strlen(text_ptr[i].text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500749 textp->compression = text_ptr[i].compression;
750 }
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500751
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500752 textp->key = (png_charp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600753 (png_size_t)
754 (key_len + text_length + lang_len + lang_key_len + 4));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500755
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500756 if (textp->key == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500757 return(1);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500758
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500759 png_debug2(2, "Allocated %lu bytes at %x in png_set_text",
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600760 (unsigned long)(png_uint_32)
761 (key_len + lang_len + lang_key_len + text_length + 4),
762 (int)textp->key);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500763
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500764 png_memcpy(textp->key, text_ptr[i].key,(png_size_t)(key_len));
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500765 *(textp->key + key_len) = '\0';
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500766
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600767 if (text_ptr[i].compression > 0)
768 {
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500769 textp->lang = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600770 png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500771 *(textp->lang + lang_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500772 textp->lang_key = textp->lang + lang_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600773 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500774 *(textp->lang_key + lang_key_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500775 textp->text = textp->lang_key + lang_key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600776 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500777
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600778 else
779 {
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500780 textp->lang=NULL;
781 textp->lang_key=NULL;
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500782 textp->text = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600783 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500784
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500785 if (text_length)
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500786 png_memcpy(textp->text, text_ptr[i].text,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600787 (png_size_t)(text_length));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500788
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500789 *(textp->text + text_length) = '\0';
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600790
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500791#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500792 if (textp->compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600793 {
794 textp->text_length = 0;
795 textp->itxt_length = text_length;
796 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500797
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600798 else
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500799#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600800 {
801 textp->text_length = text_length;
802 textp->itxt_length = 0;
803 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500804
Andreas Dilger47a0c421997-05-16 02:46:07 -0500805 info_ptr->num_text++;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500806 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500807 }
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500808 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500809}
810#endif
811
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500812#ifdef PNG_tIME_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500813void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500814png_set_tIME(png_structp png_ptr, png_infop info_ptr, png_timep mod_time)
815{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500816 png_debug1(1, "in %s storage function", "tIME");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500817
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500818 if (png_ptr == NULL || info_ptr == NULL ||
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600819 (png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500820 return;
821
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500822 png_memcpy(&(info_ptr->mod_time), mod_time, png_sizeof(png_time));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500823 info_ptr->valid |= PNG_INFO_tIME;
824}
825#endif
826
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500827#ifdef PNG_tRNS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500828void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500829png_set_tRNS(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600830 png_bytep trans_alpha, int num_trans, png_color_16p trans_color)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500831{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500832 png_debug1(1, "in %s storage function", "tRNS");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500833
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600834 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500835 return;
836
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500837 if (trans_alpha != NULL)
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600838 {
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500839 /* It may not actually be necessary to set png_ptr->trans_alpha here;
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500840 * we do it for backward compatibility with the way the png_handle_tRNS
841 * function used to do the allocation.
842 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500843
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600844 png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500845
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600846 /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500847 png_ptr->trans_alpha = info_ptr->trans_alpha = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500848 (png_size_t)PNG_MAX_PALETTE_LENGTH);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500849
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500850 if (num_trans > 0 && num_trans <= PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500851 png_memcpy(info_ptr->trans_alpha, trans_alpha, (png_size_t)num_trans);
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600852 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500853
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500854 if (trans_color != NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500855 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500856 int sample_max = (1 << info_ptr->bit_depth);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500857
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500858 if ((info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500859 (int)trans_color->gray > sample_max) ||
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500860 (info_ptr->color_type == PNG_COLOR_TYPE_RGB &&
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500861 ((int)trans_color->red > sample_max ||
862 (int)trans_color->green > sample_max ||
863 (int)trans_color->blue > sample_max)))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500864 png_warning(png_ptr,
865 "tRNS chunk has out-of-range samples for bit_depth");
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500866
867 png_memcpy(&(info_ptr->trans_color), trans_color, png_sizeof(png_color_16));
868
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600869 if (num_trans == 0)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500870 num_trans = 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500871 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500872
Andreas Dilger47a0c421997-05-16 02:46:07 -0500873 info_ptr->num_trans = (png_uint_16)num_trans;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500874
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500875 if (num_trans != 0)
876 {
877 info_ptr->valid |= PNG_INFO_tRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500878 info_ptr->free_me |= PNG_FREE_TRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500879 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500880}
881#endif
882
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500883#ifdef PNG_sPLT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500884void PNGAPI
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600885png_set_sPLT(png_structp png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600886 png_infop info_ptr, png_sPLT_tp entries, int nentries)
Glenn Randers-Pehrson3779c692006-11-07 20:38:11 -0600887/*
888 * entries - array of png_sPLT_t structures
889 * to be added to the list of palettes
890 * in the info structure.
891 * nentries - number of palette structures to be
892 * added.
893 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600894{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500895 png_sPLT_tp np;
896 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600897
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500898 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500899 return;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600900
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500901 np = (png_sPLT_tp)png_malloc_warn(png_ptr,
902 (info_ptr->splt_palettes_num + nentries) *
903 (png_size_t)png_sizeof(png_sPLT_t));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500904
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500905 if (np == NULL)
906 {
907 png_warning(png_ptr, "No memory for sPLT palettes");
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600908 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500909 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600910
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500911 png_memcpy(np, info_ptr->splt_palettes,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600912 info_ptr->splt_palettes_num * png_sizeof(png_sPLT_t));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500913
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500914 png_free(png_ptr, info_ptr->splt_palettes);
915 info_ptr->splt_palettes=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600916
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500917 for (i = 0; i < nentries; i++)
918 {
919 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
920 png_sPLT_tp from = entries + i;
921 png_uint_32 length;
922
923 length = png_strlen(from->name) + 1;
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600924 to->name = (png_charp)png_malloc_warn(png_ptr, (png_size_t)length);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500925
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500926 if (to->name == NULL)
927 {
928 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600929 "Out of memory while processing sPLT chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500930 continue;
931 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500932
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500933 png_memcpy(to->name, from->name, length);
934 to->entries = (png_sPLT_entryp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600935 (png_size_t)(from->nentries * png_sizeof(png_sPLT_entry)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500936
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500937 if (to->entries == NULL)
938 {
939 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -0600940 "Out of memory while processing sPLT chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500941 png_free(png_ptr, to->name);
942 to->name = NULL;
943 continue;
944 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500945
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500946 png_memcpy(to->entries, from->entries,
947 from->nentries * png_sizeof(png_sPLT_entry));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500948
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500949 to->nentries = from->nentries;
950 to->depth = from->depth;
951 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600952
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500953 info_ptr->splt_palettes = np;
954 info_ptr->splt_palettes_num += nentries;
955 info_ptr->valid |= PNG_INFO_sPLT;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500956 info_ptr->free_me |= PNG_FREE_SPLT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600957}
958#endif /* PNG_sPLT_SUPPORTED */
959
Glenn Randers-Pehrson6ba90882009-12-25 14:26:13 -0600960#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500961void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600962png_set_unknown_chunks(png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600963 png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600964{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500965 png_unknown_chunkp np;
966 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600967
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500968 if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500969 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600970
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500971 np = (png_unknown_chunkp)png_malloc_warn(png_ptr,
972 (png_size_t)((info_ptr->unknown_chunks_num + num_unknowns) *
973 png_sizeof(png_unknown_chunk)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500974
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500975 if (np == NULL)
976 {
977 png_warning(png_ptr,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600978 "Out of memory while processing unknown chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500979 return;
980 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600981
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500982 png_memcpy(np, info_ptr->unknown_chunks,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600983 info_ptr->unknown_chunks_num * png_sizeof(png_unknown_chunk));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -0500984
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500985 png_free(png_ptr, info_ptr->unknown_chunks);
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600986 info_ptr->unknown_chunks = NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600987
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500988 for (i = 0; i < num_unknowns; i++)
989 {
990 png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
991 png_unknown_chunkp from = unknowns + i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600992
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -0600993 png_memcpy((png_charp)to->name, (png_charp)from->name,
994 png_sizeof(from->name));
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500995 to->name[png_sizeof(to->name)-1] = '\0';
996 to->size = from->size;
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500997 /* Note our location in the read or write sequence */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500998 to->location = (png_byte)(png_ptr->mode & 0xff);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600999
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001000 if (from->size == 0)
1001 to->data=NULL;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001002
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001003 else
1004 {
1005 to->data = (png_bytep)png_malloc_warn(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001006 (png_size_t)from->size);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001007
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001008 if (to->data == NULL)
1009 {
1010 png_warning(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001011 "Out of memory while processing unknown chunk");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001012 to->size = 0;
1013 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001014
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001015 else
1016 png_memcpy(to->data, from->data, from->size);
1017 }
1018 }
1019
1020 info_ptr->unknown_chunks = np;
1021 info_ptr->unknown_chunks_num += num_unknowns;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001022 info_ptr->free_me |= PNG_FREE_UNKN;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001023}
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001024void PNGAPI
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001025png_set_unknown_chunk_location(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001026 int chunk, int location)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001027{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001028 if (png_ptr != NULL && info_ptr != NULL && chunk >= 0 && chunk <
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001029 (int)info_ptr->unknown_chunks_num)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001030 info_ptr->unknown_chunks[chunk].location = (png_byte)location;
1031}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001032#endif
1033
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001034
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001035#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001036png_uint_32 PNGAPI
1037png_permit_mng_features (png_structp png_ptr, png_uint_32 mng_features)
1038{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001039 png_debug(1, "in png_permit_mng_features");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001040
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001041 if (png_ptr == NULL)
1042 return (png_uint_32)0;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001043
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001044 png_ptr->mng_features_permitted =
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001045 (png_byte)(mng_features & PNG_ALL_MNG_FEATURES);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001046
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001047 return (png_uint_32)png_ptr->mng_features_permitted;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001048}
1049#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001050
Glenn Randers-Pehrson6ba90882009-12-25 14:26:13 -06001051#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001052void PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001053png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_bytep
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001054 chunk_list, int num_chunks)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001055{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001056 png_bytep new_list, p;
1057 int i, old_num_chunks;
1058 if (png_ptr == NULL)
1059 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001060
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001061 if (num_chunks == 0)
1062 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001063 if (keep == PNG_HANDLE_CHUNK_ALWAYS || keep == PNG_HANDLE_CHUNK_IF_SAFE)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001064 png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001065
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001066 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001067 png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001068
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001069 if (keep == PNG_HANDLE_CHUNK_ALWAYS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001070 png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001071
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001072 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001073 png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001074
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001075 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001076 }
1077 if (chunk_list == NULL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001078 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001079 old_num_chunks = png_ptr->num_chunk_list;
1080 new_list=(png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001081 (png_size_t)
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001082 (5*(num_chunks + old_num_chunks)));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001083
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001084 if (png_ptr->chunk_list != NULL)
1085 {
1086 png_memcpy(new_list, png_ptr->chunk_list,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001087 (png_size_t)(5*old_num_chunks));
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001088 png_free(png_ptr, png_ptr->chunk_list);
1089 png_ptr->chunk_list=NULL;
1090 }
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001091
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001092 png_memcpy(new_list + 5*old_num_chunks, chunk_list,
Glenn Randers-Pehrsonf81b50b2009-12-29 16:50:15 -06001093 (png_size_t)(5*num_chunks));
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001094
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001095 for (p = new_list + 5*old_num_chunks + 4, i = 0; i<num_chunks; i++, p += 5)
1096 *p=(png_byte)keep;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001097
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001098 png_ptr->num_chunk_list = old_num_chunks + num_chunks;
1099 png_ptr->chunk_list = new_list;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001100 png_ptr->free_me |= PNG_FREE_LIST;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001101}
1102#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001103
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001104#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001105void PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001106png_set_read_user_chunk_fn(png_structp png_ptr, png_voidp user_chunk_ptr,
Glenn Randers-Pehrsonda301352010-03-06 06:42:48 -06001107 png_user_chunk_ptr read_user_chunk_fn)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001108{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001109 png_debug(1, "in png_set_read_user_chunk_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001110
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001111 if (png_ptr == NULL)
1112 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -05001113
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001114 png_ptr->read_user_chunk_fn = read_user_chunk_fn;
1115 png_ptr->user_chunk_ptr = user_chunk_ptr;
1116}
1117#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001118
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001119#ifdef PNG_INFO_IMAGE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001120void PNGAPI
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001121png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers)
1122{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001123 png_debug1(1, "in %s storage function", "rows");
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001124
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001125 if (png_ptr == NULL || info_ptr == NULL)
1126 return;
1127
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001128 if (info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001129 png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001130
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001131 info_ptr->row_pointers = row_pointers;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001132
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001133 if (row_pointers)
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001134 info_ptr->valid |= PNG_INFO_IDAT;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001135}
1136#endif
1137
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001138void PNGAPI
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001139png_set_compression_buffer_size(png_structp png_ptr,
1140 png_size_t size)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001141{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001142 if (png_ptr == NULL)
1143 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001144
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001145 png_free(png_ptr, png_ptr->zbuf);
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -05001146 png_ptr->zbuf_size = size;
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001147 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr, size);
1148 png_ptr->zstream.next_out = png_ptr->zbuf;
1149 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1150}
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001151
1152void PNGAPI
1153png_set_invalid(png_structp png_ptr, png_infop info_ptr, int mask)
1154{
1155 if (png_ptr && info_ptr)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001156 info_ptr->valid &= ~mask;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001157}
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06001158
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -05001159
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001160
1161#ifdef PNG_SET_USER_LIMITS_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001162/* This function was added to libpng 1.2.6 */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001163void PNGAPI
1164png_set_user_limits (png_structp png_ptr, png_uint_32 user_width_max,
1165 png_uint_32 user_height_max)
1166{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001167 /* Images with dimensions larger than these limits will be
1168 * rejected by png_set_IHDR(). To accept any PNG datastream
1169 * regardless of dimensions, set both limits to 0x7ffffffL.
1170 */
1171 if (png_ptr == NULL)
1172 return;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001173
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001174 png_ptr->user_width_max = user_width_max;
1175 png_ptr->user_height_max = user_height_max;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001176}
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001177
Glenn Randers-Pehrson17ca3402009-11-09 06:51:16 -06001178/* This function was added to libpng 1.4.0 */
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001179void PNGAPI
1180png_set_chunk_cache_max (png_structp png_ptr,
1181 png_uint_32 user_chunk_cache_max)
1182{
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -06001183 if (png_ptr)
1184 png_ptr->user_chunk_cache_max = user_chunk_cache_max;
1185}
1186
1187/* This function was added to libpng 1.4.1 */
1188void PNGAPI
1189png_set_chunk_malloc_max (png_structp png_ptr,
1190 png_alloc_size_t user_chunk_malloc_max)
1191{
1192 if (png_ptr)
1193 png_ptr->user_chunk_malloc_max =
1194 (png_size_t)user_chunk_malloc_max;
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001195}
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001196#endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */
1197
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001198
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001199#ifdef PNG_BENIGN_ERRORS_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001200void PNGAPI
1201png_set_benign_errors(png_structp png_ptr, int allowed)
1202{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001203 png_debug(1, "in png_set_benign_errors");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001204
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001205 if (allowed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001206 png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrsonf24daf22010-05-06 09:44:04 -05001207
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001208 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001209 png_ptr->flags &= ~PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001210}
1211#endif /* PNG_BENIGN_ERRORS_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06001212#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */