blob: 0f4762cbaaf19a6cefe1c719fd6c00afdac4060d [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-Pehrsond6ea40a2009-11-02 07:32:00 -06004 * Last changed in libpng 1.4.0 [November 2, 2009]
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -06005 * Copyright (c) 1998-2009 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
Andreas Dilger47a0c421997-05-16 02:46:07 -050019#include "png.h"
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -060020#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050021#include "pngpriv.h"
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -060022
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,
41 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)
43{
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
Andreas Dilger47a0c421997-05-16 02:46:07 -050049 info_ptr->x_white = (float)white_x;
50 info_ptr->y_white = (float)white_y;
51 info_ptr->x_red = (float)red_x;
52 info_ptr->y_red = (float)red_y;
53 info_ptr->x_green = (float)green_x;
54 info_ptr->y_green = (float)green_y;
55 info_ptr->x_blue = (float)blue_x;
56 info_ptr->y_blue = (float)blue_y;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060057#ifdef PNG_FIXED_POINT_SUPPORTED
58 info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
59 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -060060 info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5);
61 info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060062 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
63 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -060064 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5);
65 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060066#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -050067 info_ptr->valid |= PNG_INFO_cHRM;
68}
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -060069#endif /* PNG_FLOATING_POINT_SUPPORTED */
70
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060071#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050072void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060073png_set_cHRM_fixed(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -060074 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
75 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
76 png_fixed_point blue_x, png_fixed_point blue_y)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060077{
Glenn Randers-Pehrsond6d80752008-12-02 09:49:43 -060078 png_debug1(1, "in %s storage function", "cHRM fixed");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -050079
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060080 if (png_ptr == NULL || info_ptr == NULL)
81 return;
Andreas Dilger47a0c421997-05-16 02:46:07 -050082
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -050083#ifdef PNG_CHECK_cHRM_SUPPORTED
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -060084 if (png_check_cHRM_fixed(png_ptr,
85 white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y))
Glenn Randers-Pehrson71a3c1f2008-11-26 12:00:38 -060086#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050087 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -050088 info_ptr->int_x_white = white_x;
89 info_ptr->int_y_white = white_y;
90 info_ptr->int_x_red = red_x;
91 info_ptr->int_y_red = red_y;
92 info_ptr->int_x_green = green_x;
93 info_ptr->int_y_green = green_y;
94 info_ptr->int_x_blue = blue_x;
95 info_ptr->int_y_blue = blue_y;
96#ifdef PNG_FLOATING_POINT_SUPPORTED
97 info_ptr->x_white = (float)(white_x/100000.);
98 info_ptr->y_white = (float)(white_y/100000.);
99 info_ptr->x_red = (float)( red_x/100000.);
100 info_ptr->y_red = (float)( red_y/100000.);
101 info_ptr->x_green = (float)(green_x/100000.);
102 info_ptr->y_green = (float)(green_y/100000.);
103 info_ptr->x_blue = (float)( blue_x/100000.);
104 info_ptr->y_blue = (float)( blue_y/100000.);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600105#endif
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500106 info_ptr->valid |= PNG_INFO_cHRM;
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -0600107 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600108}
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -0600109#endif /* PNG_FIXED_POINT_SUPPORTED */
110#endif /* PNG_cHRM_SUPPORTED */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600111
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500112#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600113#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500114void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500115png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
116{
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500117 double png_gamma;
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500118
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500119 png_debug1(1, "in %s storage function", "gAMA");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500120
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600121 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500122 return;
123
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600124 /* Check for overflow */
125 if (file_gamma > 21474.83)
126 {
127 png_warning(png_ptr, "Limiting gamma to 21474.83");
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500128 png_gamma=21474.83;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600129 }
130 else
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500131 png_gamma = file_gamma;
132 info_ptr->gamma = (float)png_gamma;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600133#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson4db4aff2009-04-20 11:49:24 -0500134 info_ptr->int_gamma = (int)(png_gamma*100000.+.5);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600135#endif
136 info_ptr->valid |= PNG_INFO_gAMA;
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500137 if (png_gamma == 0.0)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500138 png_warning(png_ptr, "Setting gamma=0");
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600139}
140#endif
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500141void PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600142png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
143 int_gamma)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600144{
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500145 png_fixed_point png_gamma;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600146
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500147 png_debug1(1, "in %s storage function", "gAMA");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500148
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600149 if (png_ptr == NULL || info_ptr == NULL)
150 return;
151
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500152 if (int_gamma > (png_fixed_point)PNG_UINT_31_MAX)
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600153 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500154 png_warning(png_ptr, "Limiting gamma to 21474.83");
155 png_gamma=PNG_UINT_31_MAX;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600156 }
157 else
158 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500159 if (int_gamma < 0)
160 {
161 png_warning(png_ptr, "Setting negative gamma to zero");
162 png_gamma = 0;
163 }
164 else
165 png_gamma = int_gamma;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600166 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600167#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson4db4aff2009-04-20 11:49:24 -0500168 info_ptr->gamma = (float)(png_gamma/100000.);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600169#endif
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500170#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500171 info_ptr->int_gamma = png_gamma;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500172#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500173 info_ptr->valid |= PNG_INFO_gAMA;
Glenn Randers-Pehrson8764c252009-04-19 07:52:22 -0500174 if (png_gamma == 0)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500175 png_warning(png_ptr, "Setting gamma=0");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500176}
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500177#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500178
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500179#ifdef PNG_hIST_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500180void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500181png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
182{
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500183 int i;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600184
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500185 png_debug1(1, "in %s storage function", "hIST");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500186
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600187 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500188 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -0500189
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500190 if (info_ptr->num_palette == 0 || info_ptr->num_palette
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600191 > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500192 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500193 png_warning(png_ptr,
194 "Invalid palette size, hIST allocation skipped");
195 return;
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500196 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500197
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600198 png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500199 /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
200 * version 1.2.1
201 */
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500202 png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500203 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_uint_16));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500204 if (png_ptr->hist == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500205 {
206 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
207 return;
208 }
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600209
210 for (i = 0; i < info_ptr->num_palette; i++)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500211 png_ptr->hist[i] = hist[i];
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600212 info_ptr->hist = png_ptr->hist;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500213 info_ptr->valid |= PNG_INFO_hIST;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600214
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600215 info_ptr->free_me |= PNG_FREE_HIST;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500216}
217#endif
218
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500219void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500220png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
221 png_uint_32 width, png_uint_32 height, int bit_depth,
222 int color_type, int interlace_type, int compression_type,
223 int filter_type)
224{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500225 png_debug1(1, "in %s storage function", "IHDR");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500226
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600227 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500228 return;
229
230 info_ptr->width = width;
231 info_ptr->height = height;
232 info_ptr->bit_depth = (png_byte)bit_depth;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500233 info_ptr->color_type = (png_byte)color_type;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500234 info_ptr->compression_type = (png_byte)compression_type;
235 info_ptr->filter_type = (png_byte)filter_type;
236 info_ptr->interlace_type = (png_byte)interlace_type;
Glenn Randers-Pehrsonb35a7452009-09-30 23:12:13 -0500237
238 png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
239 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
240 info_ptr->compression_type, info_ptr->filter_type);
241
Glenn Randers-Pehrson25d82242002-05-01 11:51:26 -0500242 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
243 info_ptr->channels = 1;
244 else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500245 info_ptr->channels = 3;
246 else
247 info_ptr->channels = 1;
248 if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
249 info_ptr->channels++;
250 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600251
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500252 /* Check for potential overflow */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500253 if (width > (PNG_UINT_32_MAX
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500254 >> 3) /* 8-byte RGBA pixels */
255 - 64 /* bigrowbuf hack */
256 - 1 /* filter byte */
257 - 7*8 /* rounding of width to multiple of 8 pixels */
258 - 8) /* extra max_pixel_depth pad */
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500259 info_ptr->rowbytes = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500260 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500261 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500262}
263
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500264#ifdef PNG_oFFs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500265void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500266png_set_oFFs(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600267 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500268{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500269 png_debug1(1, "in %s storage function", "oFFs");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500270
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600271 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500272 return;
273
274 info_ptr->x_offset = offset_x;
275 info_ptr->y_offset = offset_y;
276 info_ptr->offset_unit_type = (png_byte)unit_type;
277 info_ptr->valid |= PNG_INFO_oFFs;
278}
279#endif
280
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500281#ifdef PNG_pCAL_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500282void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500283png_set_pCAL(png_structp png_ptr, png_infop info_ptr,
284 png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
285 png_charp units, png_charpp params)
286{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500287 png_size_t length;
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600288 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500289
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500290 png_debug1(1, "in %s storage function", "pCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500291
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600292 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500293 return;
294
295 length = png_strlen(purpose) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500296 png_debug1(3, "allocating purpose for info (%lu bytes)",
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500297 (unsigned long)length);
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500298 info_ptr->pcal_purpose = (png_charp)png_malloc_warn(png_ptr, length);
299 if (info_ptr->pcal_purpose == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500300 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500301 png_warning(png_ptr, "Insufficient memory for pCAL purpose");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500302 return;
303 }
304 png_memcpy(info_ptr->pcal_purpose, purpose, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500305
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500306 png_debug(3, "storing X0, X1, type, and nparams in info");
Andreas Dilger47a0c421997-05-16 02:46:07 -0500307 info_ptr->pcal_X0 = X0;
308 info_ptr->pcal_X1 = X1;
309 info_ptr->pcal_type = (png_byte)type;
310 info_ptr->pcal_nparams = (png_byte)nparams;
311
312 length = png_strlen(units) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500313 png_debug1(3, "allocating units for info (%lu bytes)",
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500314 (unsigned long)length);
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500315 info_ptr->pcal_units = (png_charp)png_malloc_warn(png_ptr, length);
316 if (info_ptr->pcal_units == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500317 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500318 png_warning(png_ptr, "Insufficient memory for pCAL units");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500319 return;
320 }
321 png_memcpy(info_ptr->pcal_units, units, length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500322
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500323 info_ptr->pcal_params = (png_charpp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500324 (png_size_t)((nparams + 1) * png_sizeof(png_charp)));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500325 if (info_ptr->pcal_params == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500326 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500327 png_warning(png_ptr, "Insufficient memory for pCAL params");
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500328 return;
329 }
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500330
Glenn Randers-Pehrson0ffb71a2009-02-28 06:08:20 -0600331 png_memset(info_ptr->pcal_params, 0, (nparams + 1) * png_sizeof(png_charp));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500332
333 for (i = 0; i < nparams; i++)
334 {
335 length = png_strlen(params[i]) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500336 png_debug2(3, "allocating parameter %d for info (%lu bytes)", i,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500337 (unsigned long)length);
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500338 info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
339 if (info_ptr->pcal_params[i] == NULL)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500340 {
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500341 png_warning(png_ptr, "Insufficient memory for pCAL parameter");
342 return;
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500343 }
344 png_memcpy(info_ptr->pcal_params[i], params[i], length);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500345 }
346
347 info_ptr->valid |= PNG_INFO_pCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500348 info_ptr->free_me |= PNG_FREE_PCAL;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500349}
350#endif
351
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600352#if defined(PNG_READ_sCAL_SUPPORTED) || defined(PNG_WRITE_sCAL_SUPPORTED)
353#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500354void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600355png_set_sCAL(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600356 int unit, double width, double height)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600357{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500358 png_debug1(1, "in %s storage function", "sCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500359
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600360 if (png_ptr == NULL || info_ptr == NULL)
361 return;
362
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600363 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600364 info_ptr->scal_pixel_width = width;
365 info_ptr->scal_pixel_height = height;
366
367 info_ptr->valid |= PNG_INFO_sCAL;
368}
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600369#else
370#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500371void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600372png_set_sCAL_s(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600373 int unit, png_charp swidth, png_charp sheight)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600374{
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500375 png_size_t length;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600376
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500377 png_debug1(1, "in %s storage function", "sCAL");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500378
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600379 if (png_ptr == NULL || info_ptr == NULL)
380 return;
381
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600382 info_ptr->scal_unit = (png_byte)unit;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600383
384 length = png_strlen(swidth) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500385 png_debug1(3, "allocating unit for info (%u bytes)",
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500386 (unsigned int)length);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500387 info_ptr->scal_s_width = (png_charp)png_malloc_warn(png_ptr, length);
388 if (info_ptr->scal_s_width == NULL)
389 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500390 png_warning(png_ptr,
391 "Memory allocation failed while processing sCAL");
392 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500393 }
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500394 png_memcpy(info_ptr->scal_s_width, swidth, length);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600395
396 length = png_strlen(sheight) + 1;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500397 png_debug1(3, "allocating unit for info (%u bytes)",
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500398 (unsigned int)length);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500399 info_ptr->scal_s_height = (png_charp)png_malloc_warn(png_ptr, length);
400 if (info_ptr->scal_s_height == NULL)
401 {
402 png_free (png_ptr, info_ptr->scal_s_width);
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500403 info_ptr->scal_s_width = NULL;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500404 png_warning(png_ptr,
405 "Memory allocation failed while processing sCAL");
406 return;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500407 }
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500408 png_memcpy(info_ptr->scal_s_height, sheight, length);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600409 info_ptr->valid |= PNG_INFO_sCAL;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500410 info_ptr->free_me |= PNG_FREE_SCAL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600411}
412#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600413#endif
414#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600415
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500416#ifdef PNG_pHYs_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500417void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500418png_set_pHYs(png_structp png_ptr, png_infop info_ptr,
419 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
420{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500421 png_debug1(1, "in %s storage function", "pHYs");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500422
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600423 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500424 return;
425
426 info_ptr->x_pixels_per_unit = res_x;
427 info_ptr->y_pixels_per_unit = res_y;
428 info_ptr->phys_unit_type = (png_byte)unit_type;
429 info_ptr->valid |= PNG_INFO_pHYs;
430}
431#endif
432
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500433void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500434png_set_PLTE(png_structp png_ptr, png_infop info_ptr,
435 png_colorp palette, int num_palette)
436{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600437
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500438 png_debug1(1, "in %s storage function", "PLTE");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500439
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600440 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500441 return;
442
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600443 if (num_palette < 0 || num_palette > PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500444 {
445 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600446 png_error(png_ptr, "Invalid palette length");
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500447 else
448 {
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600449 png_warning(png_ptr, "Invalid palette length");
450 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500451 }
452 }
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600453
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600454 /*
455 * It may not actually be necessary to set png_ptr->palette here;
456 * we do it for backward compatibility with the way the png_handle_tRNS
457 * function used to do the allocation.
458 */
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600459 png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500460
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600461 /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500462 * of num_palette entries, in case of an invalid PNG file that has
463 * too-large sample values.
464 */
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -0600465 png_ptr->palette = (png_colorp)png_calloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500466 PNG_MAX_PALETTE_LENGTH * png_sizeof(png_color));
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500467 png_memcpy(png_ptr->palette, palette, num_palette * png_sizeof(png_color));
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600468 info_ptr->palette = png_ptr->palette;
469 info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600470
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600471 info_ptr->free_me |= PNG_FREE_PLTE;
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600472
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600473 info_ptr->valid |= PNG_INFO_PLTE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500474}
475
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500476#ifdef PNG_sBIT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500477void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500478png_set_sBIT(png_structp png_ptr, png_infop info_ptr,
479 png_color_8p sig_bit)
480{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500481 png_debug1(1, "in %s storage function", "sBIT");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500482
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600483 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500484 return;
485
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500486 png_memcpy(&(info_ptr->sig_bit), sig_bit, png_sizeof(png_color_8));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500487 info_ptr->valid |= PNG_INFO_sBIT;
488}
489#endif
490
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500491#ifdef PNG_sRGB_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500492void PNGAPI
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600493png_set_sRGB(png_structp png_ptr, png_infop info_ptr, int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600494{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500495 png_debug1(1, "in %s storage function", "sRGB");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500496
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600497 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600498 return;
499
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600500 info_ptr->srgb_intent = (png_byte)intent;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600501 info_ptr->valid |= PNG_INFO_sRGB;
502}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600503
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500504void PNGAPI
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600505png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600506 int intent)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600507{
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500508#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600509#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600510 float file_gamma;
511#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600512#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600513 png_fixed_point int_file_gamma;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600514#endif
515#endif
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500516#ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600517#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600518 float white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y;
519#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600520 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 -0600521 int_green_y, int_blue_x, int_blue_y;
522#endif
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500523 png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500524
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600525 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600526 return;
527
528 png_set_sRGB(png_ptr, info_ptr, intent);
529
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500530#ifdef PNG_gAMA_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600531#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonab1e5831999-10-06 04:57:42 -0500532 file_gamma = (float).45455;
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600533 png_set_gAMA(png_ptr, info_ptr, file_gamma);
534#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600535#ifdef PNG_FIXED_POINT_SUPPORTED
536 int_file_gamma = 45455L;
537 png_set_gAMA_fixed(png_ptr, info_ptr, int_file_gamma);
538#endif
539#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600540
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500541#ifdef PNG_cHRM_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600542 int_white_x = 31270L;
543 int_white_y = 32900L;
544 int_red_x = 64000L;
545 int_red_y = 33000L;
546 int_green_x = 30000L;
547 int_green_y = 60000L;
548 int_blue_x = 15000L;
549 int_blue_y = 6000L;
550
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600551#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600552 white_x = (float).3127;
553 white_y = (float).3290;
554 red_x = (float).64;
555 red_y = (float).33;
556 green_x = (float).30;
557 green_y = (float).60;
558 blue_x = (float).15;
559 blue_y = (float).06;
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600560#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600561
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600562#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson85b02372009-09-24 19:49:13 -0500563 png_set_cHRM_fixed(png_ptr, info_ptr,
564 int_white_x, int_white_y, int_red_x, int_red_y, int_green_x,
565 int_green_y, int_blue_x, int_blue_y);
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600566#endif
567#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson85b02372009-09-24 19:49:13 -0500568 png_set_cHRM(png_ptr, info_ptr,
569 white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600570#endif
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600571#endif /* cHRM */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600572}
Glenn Randers-Pehrson02a5e332008-11-24 22:10:23 -0600573#endif /* sRGB */
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600574
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600575
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500576#ifdef PNG_iCCP_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500577void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600578png_set_iCCP(png_structp png_ptr, png_infop info_ptr,
579 png_charp name, int compression_type,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600580 png_charp profile, png_uint_32 proflen)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600581{
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500582 png_charp new_iccp_name;
583 png_charp new_iccp_profile;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500584 png_uint_32 length;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500585
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500586 png_debug1(1, "in %s storage function", "iCCP");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500587
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600588 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
589 return;
590
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500591 length = png_strlen(name)+1;
592 new_iccp_name = (png_charp)png_malloc_warn(png_ptr, length);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500593 if (new_iccp_name == NULL)
594 {
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500595 png_warning(png_ptr, "Insufficient memory to process iCCP chunk");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500596 return;
597 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500598 png_memcpy(new_iccp_name, name, length);
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500599 new_iccp_profile = (png_charp)png_malloc_warn(png_ptr, proflen);
600 if (new_iccp_profile == NULL)
601 {
602 png_free (png_ptr, new_iccp_name);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500603 png_warning(png_ptr,
604 "Insufficient memory to process iCCP profile");
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500605 return;
606 }
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500607 png_memcpy(new_iccp_profile, profile, (png_size_t)proflen);
608
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500609 png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500610
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600611 info_ptr->iccp_proflen = proflen;
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500612 info_ptr->iccp_name = new_iccp_name;
613 info_ptr->iccp_profile = new_iccp_profile;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600614 /* Compression is always zero but is here so the API and info structure
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500615 * does not have to change if we introduce multiple compression types */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600616 info_ptr->iccp_compression = (png_byte)compression_type;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600617 info_ptr->free_me |= PNG_FREE_ICCP;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600618 info_ptr->valid |= PNG_INFO_iCCP;
619}
620#endif
621
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500622#ifdef PNG_TEXT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500623void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500624png_set_text(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500625 int num_text)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500626{
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500627 int ret;
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500628 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500629 if (ret)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500630 png_error(png_ptr, "Insufficient memory to store text");
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500631}
632
633int /* PRIVATE */
634png_set_text_2(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500635 int num_text)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500636{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500637 int i;
638
Glenn Randers-Pehrsone2a118f2009-07-27 22:08:25 -0500639 png_debug1(1, "in %s storage function", ((png_ptr == NULL ||
640 png_ptr->chunk_name[0] == '\0') ?
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600641 "text" : (png_const_charp)png_ptr->chunk_name));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500642
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600643 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500644 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500645
646 /* Make sure we have enough space in the "text" array in info_struct
647 * to hold all of the incoming text_ptr objects.
648 */
649 if (info_ptr->num_text + num_text > info_ptr->max_text)
650 {
651 if (info_ptr->text != NULL)
652 {
653 png_textp old_text;
654 int old_max;
655
656 old_max = info_ptr->max_text;
657 info_ptr->max_text = info_ptr->num_text + num_text + 8;
658 old_text = info_ptr->text;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500659 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500660 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500661 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500662 {
663 png_free(png_ptr, old_text);
664 return(1);
665 }
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600666 png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500667 png_sizeof(png_text)));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500668 png_free(png_ptr, old_text);
669 }
670 else
671 {
672 info_ptr->max_text = num_text + 8;
673 info_ptr->num_text = 0;
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500674 info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500675 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500676 if (info_ptr->text == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500677 return(1);
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500678 info_ptr->free_me |= PNG_FREE_TEXT;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500679 }
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500680 png_debug1(3, "allocated %d entries for info_ptr->text",
Andreas Dilger47a0c421997-05-16 02:46:07 -0500681 info_ptr->max_text);
682 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500683 for (i = 0; i < num_text; i++)
684 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500685 png_size_t text_length, key_len;
686 png_size_t lang_len, lang_key_len;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500687 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
688
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500689 if (text_ptr[i].key == NULL)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600690 continue;
691
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600692 key_len = png_strlen(text_ptr[i].key);
693
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500694 if (text_ptr[i].compression <= 0)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500695 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500696 lang_len = 0;
697 lang_key_len = 0;
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500698 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500699
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500700 else
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500701#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600702 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500703 /* Set iTXt data */
Glenn Randers-Pehrsond6ea40a2009-11-02 07:32:00 -0600704
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500705 if (text_ptr[i].lang != NULL)
706 lang_len = png_strlen(text_ptr[i].lang);
707 else
708 lang_len = 0;
709 if (text_ptr[i].lang_key != NULL)
710 lang_key_len = png_strlen(text_ptr[i].lang_key);
711 else
712 lang_key_len = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600713 }
Glenn Randers-Pehrsond6ea40a2009-11-02 07:32:00 -0600714#else /* PNG_iTXt_SUPPORTED */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500715 {
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500716 png_warning(png_ptr, "iTXt chunk not supported");
717 continue;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500718 }
719#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500720
Glenn Randers-Pehrson3097f612001-05-07 14:52:45 -0500721 if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
Andreas Dilger47a0c421997-05-16 02:46:07 -0500722 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600723 text_length = 0;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500724#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500725 if (text_ptr[i].compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600726 textp->compression = PNG_ITXT_COMPRESSION_NONE;
727 else
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500728#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600729 textp->compression = PNG_TEXT_COMPRESSION_NONE;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500730 }
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500731
Andreas Dilger47a0c421997-05-16 02:46:07 -0500732 else
733 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600734 text_length = png_strlen(text_ptr[i].text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500735 textp->compression = text_ptr[i].compression;
736 }
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500737
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500738 textp->key = (png_charp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500739 (png_size_t)
740 (key_len + text_length + lang_len + lang_key_len + 4));
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500741 if (textp->key == NULL)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500742 return(1);
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500743 png_debug2(2, "Allocated %lu bytes at %x in png_set_text",
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500744 (unsigned long)(png_uint_32)
745 (key_len + lang_len + lang_key_len + text_length + 4),
746 (int)textp->key);
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500747
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500748 png_memcpy(textp->key, text_ptr[i].key,(png_size_t)(key_len));
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500749 *(textp->key + key_len) = '\0';
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500750#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600751 if (text_ptr[i].compression > 0)
752 {
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500753 textp->lang = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600754 png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500755 *(textp->lang + lang_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500756 textp->lang_key = textp->lang + lang_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600757 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500758 *(textp->lang_key + lang_key_len) = '\0';
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500759 textp->text = textp->lang_key + lang_key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600760 }
761 else
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500762#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600763 {
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500764#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500765 textp->lang=NULL;
766 textp->lang_key=NULL;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500767#endif
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500768 textp->text = textp->key + key_len + 1;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600769 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500770 if (text_length)
Glenn Randers-Pehrson6d8f3b01999-10-23 08:39:18 -0500771 png_memcpy(textp->text, text_ptr[i].text,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600772 (png_size_t)(text_length));
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500773 *(textp->text + text_length) = '\0';
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600774
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500775#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500776 if (textp->compression > 0)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600777 {
778 textp->text_length = 0;
779 textp->itxt_length = text_length;
780 }
781 else
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500782#endif
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500783
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600784 {
785 textp->text_length = text_length;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500786#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600787 textp->itxt_length = 0;
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500788#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600789 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500790 info_ptr->num_text++;
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500791 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500792 }
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500793 return(0);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500794}
795#endif
796
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500797#ifdef PNG_tIME_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500798void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500799png_set_tIME(png_structp png_ptr, png_infop info_ptr, png_timep mod_time)
800{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500801 png_debug1(1, "in %s storage function", "tIME");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500802
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500803 if (png_ptr == NULL || info_ptr == NULL ||
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600804 (png_ptr->mode & PNG_WROTE_tIME))
Andreas Dilger47a0c421997-05-16 02:46:07 -0500805 return;
806
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500807 png_memcpy(&(info_ptr->mod_time), mod_time, png_sizeof(png_time));
Andreas Dilger47a0c421997-05-16 02:46:07 -0500808 info_ptr->valid |= PNG_INFO_tIME;
809}
810#endif
811
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500812#ifdef PNG_tRNS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500813void PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500814png_set_tRNS(png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500815 png_bytep trans_alpha, int num_trans, png_color_16p trans_color)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500816{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -0500817 png_debug1(1, "in %s storage function", "tRNS");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -0500818
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600819 if (png_ptr == NULL || info_ptr == NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500820 return;
821
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500822 if (trans_alpha != NULL)
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600823 {
Glenn Randers-Pehrsonef29a5e2009-10-31 19:37:05 -0500824 /* It may not actually be necessary to set png_ptr->trans_alpha here;
Glenn Randers-Pehrsond1e8c862002-06-20 06:54:34 -0500825 * we do it for backward compatibility with the way the png_handle_tRNS
826 * function used to do the allocation.
827 */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500828
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600829 png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500830
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600831 /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500832 png_ptr->trans_alpha = info_ptr->trans_alpha = (png_bytep)png_malloc(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500833 (png_size_t)PNG_MAX_PALETTE_LENGTH);
834 if (num_trans > 0 && num_trans <= PNG_MAX_PALETTE_LENGTH)
Glenn Randers-Pehrson6abea752009-08-08 16:52:06 -0500835 png_memcpy(info_ptr->trans_alpha, trans_alpha, (png_size_t)num_trans);
Glenn Randers-Pehrson76e5fd62000-12-28 07:50:05 -0600836 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500837
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500838 if (trans_color != NULL)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500839 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500840 int sample_max = (1 << info_ptr->bit_depth);
841 if ((info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500842 (int)trans_color->gray > sample_max) ||
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500843 (info_ptr->color_type == PNG_COLOR_TYPE_RGB &&
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500844 ((int)trans_color->red > sample_max ||
845 (int)trans_color->green > sample_max ||
846 (int)trans_color->blue > sample_max)))
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500847 png_warning(png_ptr,
848 "tRNS chunk has out-of-range samples for bit_depth");
Glenn Randers-Pehrson56f63962008-10-06 10:16:17 -0500849 png_memcpy(&(info_ptr->trans_color), trans_color,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500850 png_sizeof(png_color_16));
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600851 if (num_trans == 0)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500852 num_trans = 1;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500853 }
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500854
Andreas Dilger47a0c421997-05-16 02:46:07 -0500855 info_ptr->num_trans = (png_uint_16)num_trans;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500856 if (num_trans != 0)
857 {
858 info_ptr->valid |= PNG_INFO_tRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500859 info_ptr->free_me |= PNG_FREE_TRNS;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500860 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500861}
862#endif
863
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -0500864#ifdef PNG_sPLT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500865void PNGAPI
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600866png_set_sPLT(png_structp png_ptr,
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600867 png_infop info_ptr, png_sPLT_tp entries, int nentries)
Glenn Randers-Pehrson3779c692006-11-07 20:38:11 -0600868/*
869 * entries - array of png_sPLT_t structures
870 * to be added to the list of palettes
871 * in the info structure.
872 * nentries - number of palette structures to be
873 * added.
874 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600875{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500876 png_sPLT_tp np;
877 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600878
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500879 if (png_ptr == NULL || info_ptr == NULL)
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -0500880 return;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600881
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500882 np = (png_sPLT_tp)png_malloc_warn(png_ptr,
883 (info_ptr->splt_palettes_num + nentries) *
884 (png_size_t)png_sizeof(png_sPLT_t));
885 if (np == NULL)
886 {
887 png_warning(png_ptr, "No memory for sPLT palettes");
888 return;
889 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600890
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500891 png_memcpy(np, info_ptr->splt_palettes,
892 info_ptr->splt_palettes_num * png_sizeof(png_sPLT_t));
893 png_free(png_ptr, info_ptr->splt_palettes);
894 info_ptr->splt_palettes=NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600895
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500896 for (i = 0; i < nentries; i++)
897 {
898 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
899 png_sPLT_tp from = entries + i;
900 png_uint_32 length;
901
902 length = png_strlen(from->name) + 1;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500903 to->name = (png_charp)png_malloc_warn(png_ptr, (png_size_t)length);
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500904 if (to->name == NULL)
905 {
906 png_warning(png_ptr,
907 "Out of memory while processing sPLT chunk");
908 continue;
909 }
910 png_memcpy(to->name, from->name, length);
911 to->entries = (png_sPLT_entryp)png_malloc_warn(png_ptr,
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500912 (png_size_t)(from->nentries * png_sizeof(png_sPLT_entry)));
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500913 if (to->entries == NULL)
914 {
915 png_warning(png_ptr,
916 "Out of memory while processing sPLT chunk");
917 png_free(png_ptr, to->name);
918 to->name = NULL;
919 continue;
920 }
921 png_memcpy(to->entries, from->entries,
922 from->nentries * png_sizeof(png_sPLT_entry));
923 to->nentries = from->nentries;
924 to->depth = from->depth;
925 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600926
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500927 info_ptr->splt_palettes = np;
928 info_ptr->splt_palettes_num += nentries;
929 info_ptr->valid |= PNG_INFO_sPLT;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500930 info_ptr->free_me |= PNG_FREE_SPLT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600931}
932#endif /* PNG_sPLT_SUPPORTED */
933
Glenn Randers-Pehrson0fe929e2009-08-20 22:55:49 -0500934#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500935void PNGAPI
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600936png_set_unknown_chunks(png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600937 png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600938{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500939 png_unknown_chunkp np;
940 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600941
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500942 if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
Glenn Randers-Pehrson83fb8552009-06-16 17:52:23 -0500943 return;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600944
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500945 np = (png_unknown_chunkp)png_malloc_warn(png_ptr,
946 (png_size_t)((info_ptr->unknown_chunks_num + num_unknowns) *
947 png_sizeof(png_unknown_chunk)));
948 if (np == NULL)
949 {
950 png_warning(png_ptr,
951 "Out of memory while processing unknown chunk");
952 return;
953 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600954
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500955 png_memcpy(np, info_ptr->unknown_chunks,
956 info_ptr->unknown_chunks_num * png_sizeof(png_unknown_chunk));
957 png_free(png_ptr, info_ptr->unknown_chunks);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600958
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500959 for (i = 0; i < num_unknowns; i++)
960 {
961 png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
962 png_unknown_chunkp from = unknowns + i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600963
Glenn Randers-Pehrson7824a702009-06-13 10:05:05 -0500964 png_memcpy((png_charp)to->name,
965 (png_charp)from->name,
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500966 png_sizeof(from->name));
967 to->name[png_sizeof(to->name)-1] = '\0';
968 to->size = from->size;
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500969 /* Note our location in the read or write sequence */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500970 to->location = (png_byte)(png_ptr->mode & 0xff);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600971
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500972 if (from->size == 0)
973 to->data=NULL;
974 else
975 {
976 to->data = (png_bytep)png_malloc_warn(png_ptr,
977 (png_size_t)from->size);
978 if (to->data == NULL)
979 {
980 png_warning(png_ptr,
981 "Out of memory while processing unknown chunk");
982 to->size = 0;
983 }
984 else
985 png_memcpy(to->data, from->data, from->size);
986 }
987 }
988
989 info_ptr->unknown_chunks = np;
990 info_ptr->unknown_chunks_num += num_unknowns;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -0500991 info_ptr->free_me |= PNG_FREE_UNKN;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600992}
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500993void PNGAPI
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500994png_set_unknown_chunk_location(png_structp png_ptr, png_infop info_ptr,
995 int chunk, int location)
996{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500997 if (png_ptr != NULL && info_ptr != NULL && chunk >= 0 && chunk <
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500998 (int)info_ptr->unknown_chunks_num)
999 info_ptr->unknown_chunks[chunk].location = (png_byte)location;
1000}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001001#endif
1002
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001003
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001004#ifdef PNG_MNG_FEATURES_SUPPORTED
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001005png_uint_32 PNGAPI
1006png_permit_mng_features (png_structp png_ptr, png_uint_32 mng_features)
1007{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001008 png_debug(1, "in png_permit_mng_features");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001009
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -06001010 if (png_ptr == NULL)
1011 return (png_uint_32)0;
1012 png_ptr->mng_features_permitted =
1013 (png_byte)(mng_features & PNG_ALL_MNG_FEATURES);
1014 return (png_uint_32)png_ptr->mng_features_permitted;
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001015}
1016#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001017
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001018#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001019void PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001020png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_bytep
1021 chunk_list, int num_chunks)
1022{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001023 png_bytep new_list, p;
1024 int i, old_num_chunks;
1025 if (png_ptr == NULL)
1026 return;
1027 if (num_chunks == 0)
1028 {
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001029 if (keep == PNG_HANDLE_CHUNK_ALWAYS || keep == PNG_HANDLE_CHUNK_IF_SAFE)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001030 png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001031 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001032 png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001033
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001034 if (keep == PNG_HANDLE_CHUNK_ALWAYS)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001035 png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001036 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001037 png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001038 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001039 }
1040 if (chunk_list == NULL)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001041 return;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001042 old_num_chunks = png_ptr->num_chunk_list;
1043 new_list=(png_bytep)png_malloc(png_ptr,
1044 (png_size_t)
1045 (5*(num_chunks + old_num_chunks)));
1046 if (png_ptr->chunk_list != NULL)
1047 {
1048 png_memcpy(new_list, png_ptr->chunk_list,
1049 (png_size_t)(5*old_num_chunks));
1050 png_free(png_ptr, png_ptr->chunk_list);
1051 png_ptr->chunk_list=NULL;
1052 }
1053 png_memcpy(new_list + 5*old_num_chunks, chunk_list,
1054 (png_size_t)(5*num_chunks));
1055 for (p = new_list + 5*old_num_chunks + 4, i = 0; i<num_chunks; i++, p += 5)
1056 *p=(png_byte)keep;
1057 png_ptr->num_chunk_list = old_num_chunks + num_chunks;
1058 png_ptr->chunk_list = new_list;
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001059 png_ptr->free_me |= PNG_FREE_LIST;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001060}
1061#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001062
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001063#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001064void PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001065png_set_read_user_chunk_fn(png_structp png_ptr, png_voidp user_chunk_ptr,
1066 png_user_chunk_ptr read_user_chunk_fn)
1067{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001068 png_debug(1, "in png_set_read_user_chunk_fn");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001069
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001070 if (png_ptr == NULL)
1071 return;
Glenn Randers-Pehrsonb3ce3652009-08-15 21:47:03 -05001072
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001073 png_ptr->read_user_chunk_fn = read_user_chunk_fn;
1074 png_ptr->user_chunk_ptr = user_chunk_ptr;
1075}
1076#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001077
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001078#ifdef PNG_INFO_IMAGE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001079void PNGAPI
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001080png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers)
1081{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001082 png_debug1(1, "in %s storage function", "rows");
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001083
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001084 if (png_ptr == NULL || info_ptr == NULL)
1085 return;
1086
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001087 if (info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05001088 png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001089 info_ptr->row_pointers = row_pointers;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001090 if (row_pointers)
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001091 info_ptr->valid |= PNG_INFO_IDAT;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001092}
1093#endif
1094
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -05001095#ifdef PNG_WRITE_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05001096void PNGAPI
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001097png_set_compression_buffer_size(png_structp png_ptr,
1098 png_size_t size)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001099{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -06001100 if (png_ptr == NULL)
1101 return;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001102 png_free(png_ptr, png_ptr->zbuf);
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -05001103 png_ptr->zbuf_size = size;
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001104 png_ptr->zbuf = (png_bytep)png_malloc(png_ptr, size);
1105 png_ptr->zstream.next_out = png_ptr->zbuf;
1106 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1107}
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -05001108#endif
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001109
1110void PNGAPI
1111png_set_invalid(png_structp png_ptr, png_infop info_ptr, int mask)
1112{
1113 if (png_ptr && info_ptr)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -05001114 info_ptr->valid &= ~mask;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05001115}
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -06001116
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -05001117
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001118
1119#ifdef PNG_SET_USER_LIMITS_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -05001120/* This function was added to libpng 1.2.6 */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001121void PNGAPI
1122png_set_user_limits (png_structp png_ptr, png_uint_32 user_width_max,
1123 png_uint_32 user_height_max)
1124{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001125 /* Images with dimensions larger than these limits will be
1126 * rejected by png_set_IHDR(). To accept any PNG datastream
1127 * regardless of dimensions, set both limits to 0x7ffffffL.
1128 */
1129 if (png_ptr == NULL)
1130 return;
1131 png_ptr->user_width_max = user_width_max;
1132 png_ptr->user_height_max = user_height_max;
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001133}
Glenn Randers-Pehrsonc1a4d642009-10-29 23:29:24 -05001134/* This function was added to libpng 1.2.41 */
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001135void PNGAPI
1136png_set_chunk_cache_max (png_structp png_ptr,
1137 png_uint_32 user_chunk_cache_max)
1138{
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001139 if (png_ptr == NULL)
1140 return;
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001141 png_ptr->user_chunk_cache_max = user_chunk_cache_max;
1142 if (user_chunk_cache_max == 0x7fffffffL) /* Unlimited */
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001143 png_ptr->user_chunk_cache_max = 0;
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001144 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001145 png_ptr->user_chunk_cache_max = user_chunk_cache_max + 1;
Glenn Randers-Pehrson800d1e92008-08-20 17:25:21 -05001146}
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -05001147#endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */
1148
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001149
Glenn Randers-Pehrsone26c0952009-09-23 11:22:08 -05001150#ifdef PNG_BENIGN_ERRORS_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001151void PNGAPI
1152png_set_benign_errors(png_structp png_ptr, int allowed)
1153{
Glenn Randers-Pehrson51650b82008-08-05 07:44:42 -05001154 png_debug(1, "in png_set_benign_errors");
Glenn Randers-Pehrsonda009802009-08-15 13:25:47 -05001155
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001156 if (allowed)
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001157 png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001158 else
Glenn Randers-Pehrson glennrp@comcast.netb1c0d332009-05-15 20:39:34 -05001159 png_ptr->flags &= ~PNG_FLAG_BENIGN_ERRORS_WARN;
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -05001160}
1161#endif /* PNG_BENIGN_ERRORS_SUPPORTED */
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -06001162#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */