pngset.c 33.7 KB
Newer Older
A
Andreas Dilger 已提交
1 2

/* pngset.c - storage of image information into info struct
3
 *
4
 * Last changed in libpng 1.4.0 [January 2, 2010]
5
 * Copyright (c) 1998-2010 Glenn Randers-Pehrson
6 7
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
8
 *
9
 * This code is released under the libpng license.
10
 * For conditions of distribution and use, see the disclaimer
11
 * and license in png.h
12
 *
13 14 15 16 17
 * The functions here are used during reads to store data from the file
 * into the info struct, and during writes to store application data
 * into the info struct for writing into the file.  This abstracts the
 * info struct and allows us to change the structure in the future.
 */
A
Andreas Dilger 已提交
18

19
#define PNG_NO_PEDANTIC_WARNINGS
A
Andreas Dilger 已提交
20
#include "png.h"
21
#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
22
#include "pngpriv.h"
23

24
#ifdef PNG_bKGD_SUPPORTED
25
void PNGAPI
A
Andreas Dilger 已提交
26 27
png_set_bKGD(png_structp png_ptr, png_infop info_ptr, png_color_16p background)
{
28
   png_debug1(1, "in %s storage function", "bKGD");
29

30
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
31 32
      return;

33
   png_memcpy(&(info_ptr->background), background, png_sizeof(png_color_16));
A
Andreas Dilger 已提交
34 35 36 37
   info_ptr->valid |= PNG_INFO_bKGD;
}
#endif

38
#ifdef PNG_cHRM_SUPPORTED
39
#ifdef PNG_FLOATING_POINT_SUPPORTED
40
void PNGAPI
A
Andreas Dilger 已提交
41 42 43 44
png_set_cHRM(png_structp png_ptr, png_infop info_ptr,
   double white_x, double white_y, double red_x, double red_y,
   double green_x, double green_y, double blue_x, double blue_y)
{
45
   png_debug1(1, "in %s storage function", "cHRM");
46

47
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
48
      return;
49

A
Andreas Dilger 已提交
50 51 52 53 54 55 56 57
   info_ptr->x_white = (float)white_x;
   info_ptr->y_white = (float)white_y;
   info_ptr->x_red   = (float)red_x;
   info_ptr->y_red   = (float)red_y;
   info_ptr->x_green = (float)green_x;
   info_ptr->y_green = (float)green_y;
   info_ptr->x_blue  = (float)blue_x;
   info_ptr->y_blue  = (float)blue_y;
58 59 60
#ifdef PNG_FIXED_POINT_SUPPORTED
   info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
   info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
61 62
   info_ptr->int_x_red   = (png_fixed_point)(  red_x*100000.+0.5);
   info_ptr->int_y_red   = (png_fixed_point)(  red_y*100000.+0.5);
63 64
   info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
   info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
65 66
   info_ptr->int_x_blue  = (png_fixed_point)( blue_x*100000.+0.5);
   info_ptr->int_y_blue  = (png_fixed_point)( blue_y*100000.+0.5);
67
#endif
A
Andreas Dilger 已提交
68 69
   info_ptr->valid |= PNG_INFO_cHRM;
}
70 71
#endif /* PNG_FLOATING_POINT_SUPPORTED */

72
#ifdef PNG_FIXED_POINT_SUPPORTED
73
void PNGAPI
74
png_set_cHRM_fixed(png_structp png_ptr, png_infop info_ptr,
75 76 77
   png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
   png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
   png_fixed_point blue_x, png_fixed_point blue_y)
78
{
79
   png_debug1(1, "in %s storage function", "cHRM fixed");
80

81 82
   if (png_ptr == NULL || info_ptr == NULL)
      return;
A
Andreas Dilger 已提交
83

84
#ifdef PNG_CHECK_cHRM_SUPPORTED
85 86
   if (png_check_cHRM_fixed(png_ptr,
      white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y))
87
#endif
88
   {
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
      info_ptr->int_x_white = white_x;
      info_ptr->int_y_white = white_y;
      info_ptr->int_x_red   = red_x;
      info_ptr->int_y_red   = red_y;
      info_ptr->int_x_green = green_x;
      info_ptr->int_y_green = green_y;
      info_ptr->int_x_blue  = blue_x;
      info_ptr->int_y_blue  = blue_y;
#ifdef  PNG_FLOATING_POINT_SUPPORTED
      info_ptr->x_white = (float)(white_x/100000.);
      info_ptr->y_white = (float)(white_y/100000.);
      info_ptr->x_red   = (float)(  red_x/100000.);
      info_ptr->y_red   = (float)(  red_y/100000.);
      info_ptr->x_green = (float)(green_x/100000.);
      info_ptr->y_green = (float)(green_y/100000.);
      info_ptr->x_blue  = (float)( blue_x/100000.);
      info_ptr->y_blue  = (float)( blue_y/100000.);
106
#endif
107
      info_ptr->valid |= PNG_INFO_cHRM;
108
   }
109
}
110 111
#endif /* PNG_FIXED_POINT_SUPPORTED */
#endif /* PNG_cHRM_SUPPORTED */
112

113
#ifdef PNG_gAMA_SUPPORTED
114
#ifdef PNG_FLOATING_POINT_SUPPORTED
115
void PNGAPI
A
Andreas Dilger 已提交
116 117
png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
{
118
   double png_gamma;
119

120
   png_debug1(1, "in %s storage function", "gAMA");
121

122
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
123 124
      return;

125 126 127 128
   /* Check for overflow */
   if (file_gamma > 21474.83)
   {
      png_warning(png_ptr, "Limiting gamma to 21474.83");
129
      png_gamma=21474.83;
130 131
   }
   else
132 133
      png_gamma = file_gamma;
   info_ptr->gamma = (float)png_gamma;
134
#ifdef PNG_FIXED_POINT_SUPPORTED
135
   info_ptr->int_gamma = (int)(png_gamma*100000.+.5);
136 137
#endif
   info_ptr->valid |= PNG_INFO_gAMA;
138
   if (png_gamma == 0.0)
139
      png_warning(png_ptr, "Setting gamma=0");
140 141
}
#endif
142
void PNGAPI
143 144
png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
   int_gamma)
145
{
146
   png_fixed_point png_gamma;
147

148
   png_debug1(1, "in %s storage function", "gAMA");
149

150 151 152
   if (png_ptr == NULL || info_ptr == NULL)
      return;

153
   if (int_gamma > (png_fixed_point)PNG_UINT_31_MAX)
154
   {
155 156
      png_warning(png_ptr, "Limiting gamma to 21474.83");
      png_gamma=PNG_UINT_31_MAX;
157 158 159
   }
   else
   {
160 161 162 163 164 165 166
      if (int_gamma < 0)
      {
         png_warning(png_ptr, "Setting negative gamma to zero");
         png_gamma = 0;
      }
      else
         png_gamma = int_gamma;
167
   }
168
#ifdef PNG_FLOATING_POINT_SUPPORTED
169
   info_ptr->gamma = (float)(png_gamma/100000.);
170
#endif
171
#ifdef PNG_FIXED_POINT_SUPPORTED
172
   info_ptr->int_gamma = png_gamma;
173
#endif
A
Andreas Dilger 已提交
174
   info_ptr->valid |= PNG_INFO_gAMA;
175
   if (png_gamma == 0)
176
      png_warning(png_ptr, "Setting gamma=0");
A
Andreas Dilger 已提交
177
}
178
#endif
A
Andreas Dilger 已提交
179

180
#ifdef PNG_hIST_SUPPORTED
181
void PNGAPI
A
Andreas Dilger 已提交
182 183
png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
{
184
   int i;
185

186
   png_debug1(1, "in %s storage function", "hIST");
187

188
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
189
      return;
190

191
   if (info_ptr->num_palette == 0 || info_ptr->num_palette
192
       > PNG_MAX_PALETTE_LENGTH)
193
   {
194 195 196
      png_warning(png_ptr,
         "Invalid palette size, hIST allocation skipped");
      return;
197
   }
198 199

   png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
200 201 202
   /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
    * version 1.2.1
    */
203
   png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
204
      PNG_MAX_PALETTE_LENGTH * png_sizeof(png_uint_16));
205
   if (png_ptr->hist == NULL)
206 207 208 209
   {
      png_warning(png_ptr, "Insufficient memory for hIST chunk data");
      return;
   }
A
Andreas Dilger 已提交
210

211
   for (i = 0; i < info_ptr->num_palette; i++)
212
      png_ptr->hist[i] = hist[i];
213
   info_ptr->hist = png_ptr->hist;
A
Andreas Dilger 已提交
214
   info_ptr->valid |= PNG_INFO_hIST;
215 216

   info_ptr->free_me |= PNG_FREE_HIST;
A
Andreas Dilger 已提交
217 218 219
}
#endif

220
void PNGAPI
A
Andreas Dilger 已提交
221 222 223 224 225
png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
   png_uint_32 width, png_uint_32 height, int bit_depth,
   int color_type, int interlace_type, int compression_type,
   int filter_type)
{
226
   png_debug1(1, "in %s storage function", "IHDR");
227

228
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
229 230 231 232 233
      return;

   info_ptr->width = width;
   info_ptr->height = height;
   info_ptr->bit_depth = (png_byte)bit_depth;
234
   info_ptr->color_type = (png_byte)color_type;
A
Andreas Dilger 已提交
235 236 237
   info_ptr->compression_type = (png_byte)compression_type;
   info_ptr->filter_type = (png_byte)filter_type;
   info_ptr->interlace_type = (png_byte)interlace_type;
238 239 240 241 242

   png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
       info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
       info_ptr->compression_type, info_ptr->filter_type);

243 244 245
   if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
      info_ptr->channels = 1;
   else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
A
Andreas Dilger 已提交
246 247 248 249 250 251
      info_ptr->channels = 3;
   else
      info_ptr->channels = 1;
   if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
      info_ptr->channels++;
   info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
252

253
   /* Check for potential overflow */
254
   if (width > (PNG_UINT_32_MAX
255 256 257 258 259
                 >> 3)      /* 8-byte RGBA pixels */
                 - 64       /* bigrowbuf hack */
                 - 1        /* filter byte */
                 - 7*8      /* rounding of width to multiple of 8 pixels */
                 - 8)       /* extra max_pixel_depth pad */
260
      info_ptr->rowbytes = 0;
261
   else
262
      info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
A
Andreas Dilger 已提交
263 264
}

265
#ifdef PNG_oFFs_SUPPORTED
266
void PNGAPI
A
Andreas Dilger 已提交
267
png_set_oFFs(png_structp png_ptr, png_infop info_ptr,
268
   png_int_32 offset_x, png_int_32 offset_y, int unit_type)
A
Andreas Dilger 已提交
269
{
270
   png_debug1(1, "in %s storage function", "oFFs");
271

272
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
273 274 275 276 277 278 279 280 281
      return;

   info_ptr->x_offset = offset_x;
   info_ptr->y_offset = offset_y;
   info_ptr->offset_unit_type = (png_byte)unit_type;
   info_ptr->valid |= PNG_INFO_oFFs;
}
#endif

282
#ifdef PNG_pCAL_SUPPORTED
283
void PNGAPI
A
Andreas Dilger 已提交
284 285 286 287
png_set_pCAL(png_structp png_ptr, png_infop info_ptr,
   png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
   png_charp units, png_charpp params)
{
288
   png_size_t length;
289
   int i;
A
Andreas Dilger 已提交
290

291
   png_debug1(1, "in %s storage function", "pCAL");
292

293
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
294 295 296
      return;

   length = png_strlen(purpose) + 1;
297
   png_debug1(3, "allocating purpose for info (%lu bytes)",
298
     (unsigned long)length);
299 300
   info_ptr->pcal_purpose = (png_charp)png_malloc_warn(png_ptr, length);
   if (info_ptr->pcal_purpose == NULL)
301
   {
302
      png_warning(png_ptr, "Insufficient memory for pCAL purpose");
303 304 305
      return;
   }
   png_memcpy(info_ptr->pcal_purpose, purpose, length);
A
Andreas Dilger 已提交
306

307
   png_debug(3, "storing X0, X1, type, and nparams in info");
A
Andreas Dilger 已提交
308 309 310 311 312 313
   info_ptr->pcal_X0 = X0;
   info_ptr->pcal_X1 = X1;
   info_ptr->pcal_type = (png_byte)type;
   info_ptr->pcal_nparams = (png_byte)nparams;

   length = png_strlen(units) + 1;
314
   png_debug1(3, "allocating units for info (%lu bytes)",
315
     (unsigned long)length);
316 317
   info_ptr->pcal_units = (png_charp)png_malloc_warn(png_ptr, length);
   if (info_ptr->pcal_units == NULL)
318
   {
319
      png_warning(png_ptr, "Insufficient memory for pCAL units");
320 321 322
      return;
   }
   png_memcpy(info_ptr->pcal_units, units, length);
A
Andreas Dilger 已提交
323

324
   info_ptr->pcal_params = (png_charpp)png_malloc_warn(png_ptr,
325
      (png_size_t)((nparams + 1) * png_sizeof(png_charp)));
326
   if (info_ptr->pcal_params == NULL)
327
   {
328
      png_warning(png_ptr, "Insufficient memory for pCAL params");
329 330
      return;
   }
331

332
   png_memset(info_ptr->pcal_params, 0, (nparams + 1) * png_sizeof(png_charp));
A
Andreas Dilger 已提交
333 334 335 336

   for (i = 0; i < nparams; i++)
   {
      length = png_strlen(params[i]) + 1;
337
      png_debug2(3, "allocating parameter %d for info (%lu bytes)", i,
338
        (unsigned long)length);
339 340
      info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
      if (info_ptr->pcal_params[i] == NULL)
341
      {
342 343
         png_warning(png_ptr, "Insufficient memory for pCAL parameter");
         return;
344 345
      }
      png_memcpy(info_ptr->pcal_params[i], params[i], length);
A
Andreas Dilger 已提交
346 347 348
   }

   info_ptr->valid |= PNG_INFO_pCAL;
349
   info_ptr->free_me |= PNG_FREE_PCAL;
A
Andreas Dilger 已提交
350 351 352
}
#endif

353 354
#if defined(PNG_READ_sCAL_SUPPORTED) || defined(PNG_WRITE_sCAL_SUPPORTED)
#ifdef PNG_FLOATING_POINT_SUPPORTED
355
void PNGAPI
356
png_set_sCAL(png_structp png_ptr, png_infop info_ptr,
357
             int unit, double width, double height)
358
{
359
   png_debug1(1, "in %s storage function", "sCAL");
360

361 362 363
   if (png_ptr == NULL || info_ptr == NULL)
      return;

364
   info_ptr->scal_unit = (png_byte)unit;
365 366 367 368 369
   info_ptr->scal_pixel_width = width;
   info_ptr->scal_pixel_height = height;

   info_ptr->valid |= PNG_INFO_sCAL;
}
370 371
#else
#ifdef PNG_FIXED_POINT_SUPPORTED
372
void PNGAPI
373
png_set_sCAL_s(png_structp png_ptr, png_infop info_ptr,
374
             int unit, png_charp swidth, png_charp sheight)
375
{
376
   png_size_t length;
377

378
   png_debug1(1, "in %s storage function", "sCAL");
379

380 381 382
   if (png_ptr == NULL || info_ptr == NULL)
      return;

383
   info_ptr->scal_unit = (png_byte)unit;
384 385

   length = png_strlen(swidth) + 1;
386
   png_debug1(3, "allocating unit for info (%u bytes)",
387
      (unsigned int)length);
388 389 390
   info_ptr->scal_s_width = (png_charp)png_malloc_warn(png_ptr, length);
   if (info_ptr->scal_s_width == NULL)
   {
391
      png_warning(png_ptr,
392
         "Memory allocation failed while processing sCAL");
393
      return;
394
   }
395
   png_memcpy(info_ptr->scal_s_width, swidth, length);
396 397

   length = png_strlen(sheight) + 1;
398
   png_debug1(3, "allocating unit for info (%u bytes)",
399
      (unsigned int)length);
400 401 402 403
   info_ptr->scal_s_height = (png_charp)png_malloc_warn(png_ptr, length);
   if (info_ptr->scal_s_height == NULL)
   {
      png_free (png_ptr, info_ptr->scal_s_width);
404
      info_ptr->scal_s_width = NULL;
405
      png_warning(png_ptr,
406
         "Memory allocation failed while processing sCAL");
407
      return;
408
   }
409
   png_memcpy(info_ptr->scal_s_height, sheight, length);
410
   info_ptr->valid |= PNG_INFO_sCAL;
411
   info_ptr->free_me |= PNG_FREE_SCAL;
412 413
}
#endif
414 415
#endif
#endif
416

417
#ifdef PNG_pHYs_SUPPORTED
418
void PNGAPI
A
Andreas Dilger 已提交
419 420 421
png_set_pHYs(png_structp png_ptr, png_infop info_ptr,
   png_uint_32 res_x, png_uint_32 res_y, int unit_type)
{
422
   png_debug1(1, "in %s storage function", "pHYs");
423

424
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
425 426 427 428 429 430 431 432 433
      return;

   info_ptr->x_pixels_per_unit = res_x;
   info_ptr->y_pixels_per_unit = res_y;
   info_ptr->phys_unit_type = (png_byte)unit_type;
   info_ptr->valid |= PNG_INFO_pHYs;
}
#endif

434
void PNGAPI
A
Andreas Dilger 已提交
435 436 437
png_set_PLTE(png_structp png_ptr, png_infop info_ptr,
   png_colorp palette, int num_palette)
{
438

439
   png_debug1(1, "in %s storage function", "PLTE");
440

441
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
442 443
      return;

444
   if (num_palette < 0 || num_palette > PNG_MAX_PALETTE_LENGTH)
445 446
   {
      if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
447
         png_error(png_ptr, "Invalid palette length");
448 449
      else
      {
450 451
         png_warning(png_ptr, "Invalid palette length");
         return;
452 453
      }
   }
454

455
   /* It may not actually be necessary to set png_ptr->palette here;
456 457 458 459
    * we do it for backward compatibility with the way the png_handle_tRNS
    * function used to do the allocation.
    */
   png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
460

461
   /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
462 463 464
    * of num_palette entries, in case of an invalid PNG file that has
    * too-large sample values.
    */
465
   png_ptr->palette = (png_colorp)png_calloc(png_ptr,
466 467
      PNG_MAX_PALETTE_LENGTH * png_sizeof(png_color));
   png_memcpy(png_ptr->palette, palette, num_palette * png_sizeof(png_color));
468 469 470 471
   info_ptr->palette = png_ptr->palette;
   info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;

   info_ptr->free_me |= PNG_FREE_PLTE;
472

473
   info_ptr->valid |= PNG_INFO_PLTE;
A
Andreas Dilger 已提交
474 475
}

476
#ifdef PNG_sBIT_SUPPORTED
477
void PNGAPI
A
Andreas Dilger 已提交
478 479 480
png_set_sBIT(png_structp png_ptr, png_infop info_ptr,
   png_color_8p sig_bit)
{
481
   png_debug1(1, "in %s storage function", "sBIT");
482

483
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
484 485
      return;

486
   png_memcpy(&(info_ptr->sig_bit), sig_bit, png_sizeof(png_color_8));
A
Andreas Dilger 已提交
487 488 489 490
   info_ptr->valid |= PNG_INFO_sBIT;
}
#endif

491
#ifdef PNG_sRGB_SUPPORTED
492
void PNGAPI
493
png_set_sRGB(png_structp png_ptr, png_infop info_ptr, int intent)
494
{
495
   png_debug1(1, "in %s storage function", "sRGB");
496

497
   if (png_ptr == NULL || info_ptr == NULL)
498 499
      return;

500
   info_ptr->srgb_intent = (png_byte)intent;
501 502
   info_ptr->valid |= PNG_INFO_sRGB;
}
503

504
void PNGAPI
505
png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr, png_infop info_ptr,
506
   int intent)
507
{
508
#ifdef PNG_gAMA_SUPPORTED
509
#ifdef PNG_FLOATING_POINT_SUPPORTED
510 511
   float file_gamma;
#endif
512
#ifdef PNG_FIXED_POINT_SUPPORTED
513
   png_fixed_point int_file_gamma;
514 515
#endif
#endif
516
#ifdef PNG_cHRM_SUPPORTED
517
#ifdef PNG_FLOATING_POINT_SUPPORTED
518
   float white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y;
519
#endif
520
   png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, int_green_x,
521
      int_green_y, int_blue_x, int_blue_y;
522
#endif
523
   png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
524

525
   if (png_ptr == NULL || info_ptr == NULL)
526 527 528 529
      return;

   png_set_sRGB(png_ptr, info_ptr, intent);

530
#ifdef PNG_gAMA_SUPPORTED
531
#ifdef PNG_FLOATING_POINT_SUPPORTED
532
   file_gamma = (float).45455;
533 534
   png_set_gAMA(png_ptr, info_ptr, file_gamma);
#endif
535 536 537 538 539
#ifdef PNG_FIXED_POINT_SUPPORTED
   int_file_gamma = 45455L;
   png_set_gAMA_fixed(png_ptr, info_ptr, int_file_gamma);
#endif
#endif
540

541
#ifdef PNG_cHRM_SUPPORTED
542 543 544 545 546 547 548 549 550 551
   int_white_x = 31270L;
   int_white_y = 32900L;
   int_red_x   = 64000L;
   int_red_y   = 33000L;
   int_green_x = 30000L;
   int_green_y = 60000L;
   int_blue_x  = 15000L;
   int_blue_y  =  6000L;

#ifdef PNG_FLOATING_POINT_SUPPORTED
552 553 554 555 556 557 558 559
   white_x = (float).3127;
   white_y = (float).3290;
   red_x   = (float).64;
   red_y   = (float).33;
   green_x = (float).30;
   green_y = (float).60;
   blue_x  = (float).15;
   blue_y  = (float).06;
560
#endif
561

562
#ifdef PNG_FIXED_POINT_SUPPORTED
563 564 565
   png_set_cHRM_fixed(png_ptr, info_ptr,
       int_white_x, int_white_y, int_red_x, int_red_y, int_green_x,
       int_green_y, int_blue_x, int_blue_y);
566 567
#endif
#ifdef PNG_FLOATING_POINT_SUPPORTED
568 569
   png_set_cHRM(png_ptr, info_ptr,
       white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y);
570
#endif
571
#endif /* cHRM */
572
}
573
#endif /* sRGB */
574

575

576
#ifdef PNG_iCCP_SUPPORTED
577
void PNGAPI
578 579
png_set_iCCP(png_structp png_ptr, png_infop info_ptr,
             png_charp name, int compression_type,
580
             png_charp profile, png_uint_32 proflen)
581
{
582 583
   png_charp new_iccp_name;
   png_charp new_iccp_profile;
584
   png_uint_32 length;
585

586
   png_debug1(1, "in %s storage function", "iCCP");
587

588 589 590
   if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
      return;

591 592
   length = png_strlen(name)+1;
   new_iccp_name = (png_charp)png_malloc_warn(png_ptr, length);
593 594
   if (new_iccp_name == NULL)
   {
595
        png_warning(png_ptr, "Insufficient memory to process iCCP chunk");
596 597
      return;
   }
598
   png_memcpy(new_iccp_name, name, length);
599 600 601 602
   new_iccp_profile = (png_charp)png_malloc_warn(png_ptr, proflen);
   if (new_iccp_profile == NULL)
   {
      png_free (png_ptr, new_iccp_name);
603
      png_warning(png_ptr,
604
          "Insufficient memory to process iCCP profile");
605 606
      return;
   }
607 608
   png_memcpy(new_iccp_profile, profile, (png_size_t)proflen);

609
   png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
610

611
   info_ptr->iccp_proflen = proflen;
612 613
   info_ptr->iccp_name = new_iccp_name;
   info_ptr->iccp_profile = new_iccp_profile;
614
   /* Compression is always zero but is here so the API and info structure
615 616
    * does not have to change if we introduce multiple compression types
    */
617
   info_ptr->iccp_compression = (png_byte)compression_type;
618
   info_ptr->free_me |= PNG_FREE_ICCP;
619 620 621 622
   info_ptr->valid |= PNG_INFO_iCCP;
}
#endif

623
#ifdef PNG_TEXT_SUPPORTED
624
void PNGAPI
A
Andreas Dilger 已提交
625
png_set_text(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
626
             int num_text)
627 628
{
   int ret;
629
   ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
630
   if (ret)
631
      png_error(png_ptr, "Insufficient memory to store text");
632 633 634 635
}

int /* PRIVATE */
png_set_text_2(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
636
               int num_text)
A
Andreas Dilger 已提交
637 638 639
{
   int i;

640 641
   png_debug1(1, "in %s storage function", ((png_ptr == NULL ||
      png_ptr->chunk_name[0] == '\0') ?
642
      "text" : (png_const_charp)png_ptr->chunk_name));
A
Andreas Dilger 已提交
643

644
   if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
645
      return(0);
A
Andreas Dilger 已提交
646 647 648 649 650 651 652 653 654 655 656 657 658 659

   /* Make sure we have enough space in the "text" array in info_struct
    * to hold all of the incoming text_ptr objects.
    */
   if (info_ptr->num_text + num_text > info_ptr->max_text)
   {
      if (info_ptr->text != NULL)
      {
         png_textp old_text;
         int old_max;

         old_max = info_ptr->max_text;
         info_ptr->max_text = info_ptr->num_text + num_text + 8;
         old_text = info_ptr->text;
660
         info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
661
            (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
662
         if (info_ptr->text == NULL)
663 664 665 666
         {
            png_free(png_ptr, old_text);
            return(1);
         }
667
         png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
668
            png_sizeof(png_text)));
A
Andreas Dilger 已提交
669 670 671 672 673 674
         png_free(png_ptr, old_text);
      }
      else
      {
         info_ptr->max_text = num_text + 8;
         info_ptr->num_text = 0;
675
         info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
676
            (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
677
         if (info_ptr->text == NULL)
678
            return(1);
679
         info_ptr->free_me |= PNG_FREE_TEXT;
A
Andreas Dilger 已提交
680
      }
681
      png_debug1(3, "allocated %d entries for info_ptr->text",
A
Andreas Dilger 已提交
682 683 684 685
         info_ptr->max_text);
   }
   for (i = 0; i < num_text; i++)
   {
686 687
      png_size_t text_length, key_len;
      png_size_t lang_len, lang_key_len;
A
Andreas Dilger 已提交
688 689
      png_textp textp = &(info_ptr->text[info_ptr->num_text]);

690
      if (text_ptr[i].key == NULL)
691 692
          continue;

693 694
      key_len = png_strlen(text_ptr[i].key);

695
      if (text_ptr[i].compression <= 0)
696
      {
697 698
         lang_len = 0;
         lang_key_len = 0;
699
      }
700

701
      else
702
#ifdef PNG_iTXt_SUPPORTED
703
      {
704
         /* Set iTXt data */
705

706 707 708 709 710 711 712 713
         if (text_ptr[i].lang != NULL)
            lang_len = png_strlen(text_ptr[i].lang);
         else
            lang_len = 0;
         if (text_ptr[i].lang_key != NULL)
            lang_key_len = png_strlen(text_ptr[i].lang_key);
         else
            lang_key_len = 0;
714
      }
715
#else /* PNG_iTXt_SUPPORTED */
716
      {
717 718
         png_warning(png_ptr, "iTXt chunk not supported");
         continue;
719 720
      }
#endif
A
Andreas Dilger 已提交
721

722
      if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
A
Andreas Dilger 已提交
723
      {
724
         text_length = 0;
725
#ifdef PNG_iTXt_SUPPORTED
726
         if (text_ptr[i].compression > 0)
727 728
            textp->compression = PNG_ITXT_COMPRESSION_NONE;
         else
729
#endif
730
            textp->compression = PNG_TEXT_COMPRESSION_NONE;
A
Andreas Dilger 已提交
731
      }
732

A
Andreas Dilger 已提交
733 734
      else
      {
735
         text_length = png_strlen(text_ptr[i].text);
A
Andreas Dilger 已提交
736 737
         textp->compression = text_ptr[i].compression;
      }
738

739
      textp->key = (png_charp)png_malloc_warn(png_ptr,
740 741
         (png_size_t)
         (key_len + text_length + lang_len + lang_key_len + 4));
742
      if (textp->key == NULL)
743
         return(1);
744
      png_debug2(2, "Allocated %lu bytes at %x in png_set_text",
745 746 747
                 (unsigned long)(png_uint_32)
                 (key_len + lang_len + lang_key_len + text_length + 4),
                 (int)textp->key);
748

749
      png_memcpy(textp->key, text_ptr[i].key,(png_size_t)(key_len));
750
      *(textp->key + key_len) = '\0';
751
#ifdef PNG_iTXt_SUPPORTED
752 753
      if (text_ptr[i].compression > 0)
      {
754
         textp->lang = textp->key + key_len + 1;
755
         png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
756
         *(textp->lang + lang_len) = '\0';
757
         textp->lang_key = textp->lang + lang_len + 1;
758
         png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
759
         *(textp->lang_key + lang_key_len) = '\0';
760
         textp->text = textp->lang_key + lang_key_len + 1;
761 762
      }
      else
763
#endif
764
      {
765
#ifdef PNG_iTXt_SUPPORTED
766 767
         textp->lang=NULL;
         textp->lang_key=NULL;
768
#endif
769
         textp->text = textp->key + key_len + 1;
770
      }
771
      if (text_length)
772
         png_memcpy(textp->text, text_ptr[i].text,
773
            (png_size_t)(text_length));
774
      *(textp->text + text_length) = '\0';
775

776
#ifdef PNG_iTXt_SUPPORTED
777
      if (textp->compression > 0)
778 779 780 781 782
      {
         textp->text_length = 0;
         textp->itxt_length = text_length;
      }
      else
783
#endif
784

785 786
      {
         textp->text_length = text_length;
787
#ifdef PNG_iTXt_SUPPORTED
788
         textp->itxt_length = 0;
789
#endif
790
      }
A
Andreas Dilger 已提交
791
      info_ptr->num_text++;
792
      png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
A
Andreas Dilger 已提交
793
   }
794
   return(0);
A
Andreas Dilger 已提交
795 796 797
}
#endif

798
#ifdef PNG_tIME_SUPPORTED
799
void PNGAPI
A
Andreas Dilger 已提交
800 801
png_set_tIME(png_structp png_ptr, png_infop info_ptr, png_timep mod_time)
{
802
   png_debug1(1, "in %s storage function", "tIME");
803

804
   if (png_ptr == NULL || info_ptr == NULL ||
805
       (png_ptr->mode & PNG_WROTE_tIME))
A
Andreas Dilger 已提交
806 807
      return;

808
   png_memcpy(&(info_ptr->mod_time), mod_time, png_sizeof(png_time));
A
Andreas Dilger 已提交
809 810 811 812
   info_ptr->valid |= PNG_INFO_tIME;
}
#endif

813
#ifdef PNG_tRNS_SUPPORTED
814
void PNGAPI
A
Andreas Dilger 已提交
815
png_set_tRNS(png_structp png_ptr, png_infop info_ptr,
816
   png_bytep trans_alpha, int num_trans, png_color_16p trans_color)
A
Andreas Dilger 已提交
817
{
818
   png_debug1(1, "in %s storage function", "tRNS");
819

820
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
821 822
      return;

823
   if (trans_alpha != NULL)
824
   {
825
       /* It may not actually be necessary to set png_ptr->trans_alpha here;
826 827 828
        * we do it for backward compatibility with the way the png_handle_tRNS
        * function used to do the allocation.
        */
829

830
       png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
831

832
       /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
833
       png_ptr->trans_alpha = info_ptr->trans_alpha = (png_bytep)png_malloc(png_ptr,
834 835
           (png_size_t)PNG_MAX_PALETTE_LENGTH);
       if (num_trans > 0 && num_trans <= PNG_MAX_PALETTE_LENGTH)
836
          png_memcpy(info_ptr->trans_alpha, trans_alpha, (png_size_t)num_trans);
837
   }
A
Andreas Dilger 已提交
838

839
   if (trans_color != NULL)
A
Andreas Dilger 已提交
840
   {
841 842
      int sample_max = (1 << info_ptr->bit_depth);
      if ((info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
843
          (int)trans_color->gray > sample_max) ||
844
          (info_ptr->color_type == PNG_COLOR_TYPE_RGB &&
845 846 847
          ((int)trans_color->red > sample_max ||
          (int)trans_color->green > sample_max ||
          (int)trans_color->blue > sample_max)))
848 849
         png_warning(png_ptr,
            "tRNS chunk has out-of-range samples for bit_depth");
850
      png_memcpy(&(info_ptr->trans_color), trans_color,
851
         png_sizeof(png_color_16));
852
      if (num_trans == 0)
853
         num_trans = 1;
A
Andreas Dilger 已提交
854
   }
855

A
Andreas Dilger 已提交
856
   info_ptr->num_trans = (png_uint_16)num_trans;
857 858 859 860 861
   if (num_trans != 0)
   {
      info_ptr->valid |= PNG_INFO_tRNS;
      info_ptr->free_me |= PNG_FREE_TRNS;
   }
A
Andreas Dilger 已提交
862 863 864
}
#endif

865
#ifdef PNG_sPLT_SUPPORTED
866
void PNGAPI
867
png_set_sPLT(png_structp png_ptr,
868
             png_infop info_ptr, png_sPLT_tp entries, int nentries)
869 870 871 872 873 874 875
/*
 *  entries        - array of png_sPLT_t structures
 *                   to be added to the list of palettes
 *                   in the info structure.
 *  nentries       - number of palette structures to be
 *                   added.
 */
876
{
877 878
   png_sPLT_tp np;
   int i;
879

880 881
   if (png_ptr == NULL || info_ptr == NULL)
      return;
882

883 884
   np = (png_sPLT_tp)png_malloc_warn(png_ptr,
       (info_ptr->splt_palettes_num + nentries) *
885
        (png_size_t)png_sizeof(png_sPLT_t));
886 887
   if (np == NULL)
   {
888
      png_warning(png_ptr, "No memory for sPLT palettes");
889
      return;
890
   }
891

892
   png_memcpy(np, info_ptr->splt_palettes,
893
       info_ptr->splt_palettes_num * png_sizeof(png_sPLT_t));
894 895
   png_free(png_ptr, info_ptr->splt_palettes);
   info_ptr->splt_palettes=NULL;
896

897 898 899 900 901
   for (i = 0; i < nentries; i++)
   {
      png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
      png_sPLT_tp from = entries + i;
      png_uint_32 length;
902

903
      length = png_strlen(from->name) + 1;
904
      to->name = (png_charp)png_malloc_warn(png_ptr, (png_size_t)length);
905 906 907 908 909 910 911 912
      if (to->name == NULL)
      {
         png_warning(png_ptr,
           "Out of memory while processing sPLT chunk");
         continue;
      }
      png_memcpy(to->name, from->name, length);
      to->entries = (png_sPLT_entryp)png_malloc_warn(png_ptr,
913
          (png_size_t)(from->nentries * png_sizeof(png_sPLT_entry)));
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
      if (to->entries == NULL)
      {
         png_warning(png_ptr,
           "Out of memory while processing sPLT chunk");
         png_free(png_ptr, to->name);
         to->name = NULL;
         continue;
      }
      png_memcpy(to->entries, from->entries,
          from->nentries * png_sizeof(png_sPLT_entry));
      to->nentries = from->nentries;
      to->depth = from->depth;
   }

   info_ptr->splt_palettes = np;
   info_ptr->splt_palettes_num += nentries;
   info_ptr->valid |= PNG_INFO_sPLT;
   info_ptr->free_me |= PNG_FREE_SPLT;
932 933 934
}
#endif /* PNG_sPLT_SUPPORTED */

935
#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
936
void PNGAPI
937
png_set_unknown_chunks(png_structp png_ptr,
938
   png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns)
939
{
940 941 942 943
   png_unknown_chunkp np;
   int i;

   if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
944
      return;
945 946 947 948 949 950 951

   np = (png_unknown_chunkp)png_malloc_warn(png_ptr,
       (png_size_t)((info_ptr->unknown_chunks_num + num_unknowns) *
       png_sizeof(png_unknown_chunk)));
   if (np == NULL)
   {
      png_warning(png_ptr,
952
          "Out of memory while processing unknown chunk");
953 954 955 956
      return;
   }

   png_memcpy(np, info_ptr->unknown_chunks,
957
       info_ptr->unknown_chunks_num * png_sizeof(png_unknown_chunk));
958
   png_free(png_ptr, info_ptr->unknown_chunks);
959
   info_ptr->unknown_chunks = NULL;
960 961 962 963 964 965

   for (i = 0; i < num_unknowns; i++)
   {
      png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
      png_unknown_chunkp from = unknowns + i;

966 967
      png_memcpy((png_charp)to->name, (png_charp)from->name,
          png_sizeof(from->name));
968 969
      to->name[png_sizeof(to->name)-1] = '\0';
      to->size = from->size;
970
      /* Note our location in the read or write sequence */
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
      to->location = (png_byte)(png_ptr->mode & 0xff);

      if (from->size == 0)
         to->data=NULL;
      else
      {
         to->data = (png_bytep)png_malloc_warn(png_ptr,
           (png_size_t)from->size);
         if (to->data == NULL)
         {
            png_warning(png_ptr,
             "Out of memory while processing unknown chunk");
            to->size = 0;
         }
         else
            png_memcpy(to->data, from->data, from->size);
      }
   }

   info_ptr->unknown_chunks = np;
   info_ptr->unknown_chunks_num += num_unknowns;
   info_ptr->free_me |= PNG_FREE_UNKN;
993
}
994
void PNGAPI
995 996 997
png_set_unknown_chunk_location(png_structp png_ptr, png_infop info_ptr,
   int chunk, int location)
{
998
   if (png_ptr != NULL && info_ptr != NULL && chunk >= 0 && chunk <
999
       (int)info_ptr->unknown_chunks_num)
1000 1001
      info_ptr->unknown_chunks[chunk].location = (png_byte)location;
}
1002 1003
#endif

1004

1005
#ifdef PNG_MNG_FEATURES_SUPPORTED
1006 1007 1008
png_uint_32 PNGAPI
png_permit_mng_features (png_structp png_ptr, png_uint_32 mng_features)
{
1009
   png_debug(1, "in png_permit_mng_features");
1010

1011 1012 1013 1014 1015
   if (png_ptr == NULL)
      return (png_uint_32)0;
   png_ptr->mng_features_permitted =
     (png_byte)(mng_features & PNG_ALL_MNG_FEATURES);
   return (png_uint_32)png_ptr->mng_features_permitted;
1016 1017
}
#endif
1018

1019
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
1020
void PNGAPI
1021 1022 1023
png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_bytep
   chunk_list, int num_chunks)
{
1024 1025 1026 1027 1028 1029
   png_bytep new_list, p;
   int i, old_num_chunks;
   if (png_ptr == NULL)
      return;
   if (num_chunks == 0)
   {
1030
      if (keep == PNG_HANDLE_CHUNK_ALWAYS || keep == PNG_HANDLE_CHUNK_IF_SAFE)
1031
         png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
1032
      else
1033
         png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
1034

1035
      if (keep == PNG_HANDLE_CHUNK_ALWAYS)
1036
         png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
1037
      else
1038
         png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
1039
      return;
1040 1041
   }
   if (chunk_list == NULL)
1042
      return;
1043 1044 1045
   old_num_chunks = png_ptr->num_chunk_list;
   new_list=(png_bytep)png_malloc(png_ptr,
      (png_size_t)
1046
       (5*(num_chunks + old_num_chunks)));
1047 1048 1049
   if (png_ptr->chunk_list != NULL)
   {
      png_memcpy(new_list, png_ptr->chunk_list,
1050
          (png_size_t)(5*old_num_chunks));
1051 1052 1053 1054
      png_free(png_ptr, png_ptr->chunk_list);
      png_ptr->chunk_list=NULL;
   }
   png_memcpy(new_list + 5*old_num_chunks, chunk_list,
1055
       (png_size_t)(5*num_chunks));
1056 1057 1058 1059 1060
   for (p = new_list + 5*old_num_chunks + 4, i = 0; i<num_chunks; i++, p += 5)
      *p=(png_byte)keep;
   png_ptr->num_chunk_list = old_num_chunks + num_chunks;
   png_ptr->chunk_list = new_list;
   png_ptr->free_me |= PNG_FREE_LIST;
1061 1062
}
#endif
1063

1064
#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1065
void PNGAPI
1066 1067 1068
png_set_read_user_chunk_fn(png_structp png_ptr, png_voidp user_chunk_ptr,
   png_user_chunk_ptr read_user_chunk_fn)
{
1069
   png_debug(1, "in png_set_read_user_chunk_fn");
1070

1071 1072
   if (png_ptr == NULL)
      return;
1073

1074 1075 1076 1077
   png_ptr->read_user_chunk_fn = read_user_chunk_fn;
   png_ptr->user_chunk_ptr = user_chunk_ptr;
}
#endif
1078

1079
#ifdef PNG_INFO_IMAGE_SUPPORTED
1080
void PNGAPI
1081 1082
png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers)
{
1083
   png_debug1(1, "in %s storage function", "rows");
1084

1085 1086 1087
   if (png_ptr == NULL || info_ptr == NULL)
      return;

1088
   if (info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
1089
      png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
1090
   info_ptr->row_pointers = row_pointers;
1091
   if (row_pointers)
1092
      info_ptr->valid |= PNG_INFO_IDAT;
1093 1094 1095
}
#endif

1096
#ifdef PNG_WRITE_SUPPORTED
1097
void PNGAPI
1098 1099
png_set_compression_buffer_size(png_structp png_ptr,
    png_size_t size)
1100
{
1101 1102
    if (png_ptr == NULL)
       return;
1103
    png_free(png_ptr, png_ptr->zbuf);
1104
    png_ptr->zbuf_size = size;
1105 1106 1107 1108
    png_ptr->zbuf = (png_bytep)png_malloc(png_ptr, size);
    png_ptr->zstream.next_out = png_ptr->zbuf;
    png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
}
1109
#endif
1110 1111 1112 1113 1114

void PNGAPI
png_set_invalid(png_structp png_ptr, png_infop info_ptr, int mask)
{
   if (png_ptr && info_ptr)
1115
      info_ptr->valid &= ~mask;
1116
}
1117

1118

1119 1120

#ifdef PNG_SET_USER_LIMITS_SUPPORTED
1121
/* This function was added to libpng 1.2.6 */
1122 1123 1124 1125
void PNGAPI
png_set_user_limits (png_structp png_ptr, png_uint_32 user_width_max,
    png_uint_32 user_height_max)
{
1126 1127 1128 1129 1130 1131 1132 1133
   /* Images with dimensions larger than these limits will be
    * rejected by png_set_IHDR().  To accept any PNG datastream
    * regardless of dimensions, set both limits to 0x7ffffffL.
    */
   if (png_ptr == NULL)
      return;
   png_ptr->user_width_max = user_width_max;
   png_ptr->user_height_max = user_height_max;
1134
}
1135
/* This function was added to libpng 1.4.0 */
1136 1137 1138 1139
void PNGAPI
png_set_chunk_cache_max (png_structp png_ptr,
   png_uint_32 user_chunk_cache_max)
{
1140 1141
    if (png_ptr == NULL)
      return;
1142 1143
    png_ptr->user_chunk_cache_max = user_chunk_cache_max;
    if (user_chunk_cache_max == 0x7fffffffL)  /* Unlimited */
1144
       png_ptr->user_chunk_cache_max = 0;
1145
    else
1146
       png_ptr->user_chunk_cache_max = user_chunk_cache_max + 1;
1147
}
1148 1149
#endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */

1150

1151
#ifdef PNG_BENIGN_ERRORS_SUPPORTED
1152 1153 1154
void PNGAPI
png_set_benign_errors(png_structp png_ptr, int allowed)
{
1155
   png_debug(1, "in png_set_benign_errors");
1156

1157
   if (allowed)
1158
      png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN;
1159
   else
1160
      png_ptr->flags &= ~PNG_FLAG_BENIGN_ERRORS_WARN;
1161 1162
}
#endif /* PNG_BENIGN_ERRORS_SUPPORTED */
1163
#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */