twinapi.appcore: Implement Windows.System.Profile.AnalyticsInfo_get_DeviceFamilyVersion.
[wine.git] / libs / png / pngset.c
blob3fc31feb0cbb61d481cccf0ab13da01bff2e58a6
2 /* pngset.c - storage of image information into info struct
4 * Copyright (c) 2018-2023 Cosmin Truta
5 * Copyright (c) 1998-2018 Glenn Randers-Pehrson
6 * Copyright (c) 1996-1997 Andreas Dilger
7 * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
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
13 * 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.
19 #include "pngpriv.h"
21 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
23 #ifdef PNG_bKGD_SUPPORTED
24 void PNGAPI
25 png_set_bKGD(png_const_structrp png_ptr, png_inforp info_ptr,
26 png_const_color_16p background)
28 png_debug1(1, "in %s storage function", "bKGD");
30 if (png_ptr == NULL || info_ptr == NULL || background == NULL)
31 return;
33 info_ptr->background = *background;
34 info_ptr->valid |= PNG_INFO_bKGD;
36 #endif
38 #ifdef PNG_cHRM_SUPPORTED
39 void PNGFAPI
40 png_set_cHRM_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
41 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
42 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
43 png_fixed_point blue_x, png_fixed_point blue_y)
45 png_xy xy;
47 png_debug1(1, "in %s storage function", "cHRM fixed");
49 if (png_ptr == NULL || info_ptr == NULL)
50 return;
52 xy.redx = red_x;
53 xy.redy = red_y;
54 xy.greenx = green_x;
55 xy.greeny = green_y;
56 xy.bluex = blue_x;
57 xy.bluey = blue_y;
58 xy.whitex = white_x;
59 xy.whitey = white_y;
61 if (png_colorspace_set_chromaticities(png_ptr, &info_ptr->colorspace, &xy,
62 2/* override with app values*/) != 0)
63 info_ptr->colorspace.flags |= PNG_COLORSPACE_FROM_cHRM;
65 png_colorspace_sync_info(png_ptr, info_ptr);
68 void PNGFAPI
69 png_set_cHRM_XYZ_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
70 png_fixed_point int_red_X, png_fixed_point int_red_Y,
71 png_fixed_point int_red_Z, png_fixed_point int_green_X,
72 png_fixed_point int_green_Y, png_fixed_point int_green_Z,
73 png_fixed_point int_blue_X, png_fixed_point int_blue_Y,
74 png_fixed_point int_blue_Z)
76 png_XYZ XYZ;
78 png_debug1(1, "in %s storage function", "cHRM XYZ fixed");
80 if (png_ptr == NULL || info_ptr == NULL)
81 return;
83 XYZ.red_X = int_red_X;
84 XYZ.red_Y = int_red_Y;
85 XYZ.red_Z = int_red_Z;
86 XYZ.green_X = int_green_X;
87 XYZ.green_Y = int_green_Y;
88 XYZ.green_Z = int_green_Z;
89 XYZ.blue_X = int_blue_X;
90 XYZ.blue_Y = int_blue_Y;
91 XYZ.blue_Z = int_blue_Z;
93 if (png_colorspace_set_endpoints(png_ptr, &info_ptr->colorspace,
94 &XYZ, 2) != 0)
95 info_ptr->colorspace.flags |= PNG_COLORSPACE_FROM_cHRM;
97 png_colorspace_sync_info(png_ptr, info_ptr);
100 # ifdef PNG_FLOATING_POINT_SUPPORTED
101 void PNGAPI
102 png_set_cHRM(png_const_structrp png_ptr, png_inforp info_ptr,
103 double white_x, double white_y, double red_x, double red_y,
104 double green_x, double green_y, double blue_x, double blue_y)
106 png_set_cHRM_fixed(png_ptr, info_ptr,
107 png_fixed(png_ptr, white_x, "cHRM White X"),
108 png_fixed(png_ptr, white_y, "cHRM White Y"),
109 png_fixed(png_ptr, red_x, "cHRM Red X"),
110 png_fixed(png_ptr, red_y, "cHRM Red Y"),
111 png_fixed(png_ptr, green_x, "cHRM Green X"),
112 png_fixed(png_ptr, green_y, "cHRM Green Y"),
113 png_fixed(png_ptr, blue_x, "cHRM Blue X"),
114 png_fixed(png_ptr, blue_y, "cHRM Blue Y"));
117 void PNGAPI
118 png_set_cHRM_XYZ(png_const_structrp png_ptr, png_inforp info_ptr, double red_X,
119 double red_Y, double red_Z, double green_X, double green_Y, double green_Z,
120 double blue_X, double blue_Y, double blue_Z)
122 png_set_cHRM_XYZ_fixed(png_ptr, info_ptr,
123 png_fixed(png_ptr, red_X, "cHRM Red X"),
124 png_fixed(png_ptr, red_Y, "cHRM Red Y"),
125 png_fixed(png_ptr, red_Z, "cHRM Red Z"),
126 png_fixed(png_ptr, green_X, "cHRM Green X"),
127 png_fixed(png_ptr, green_Y, "cHRM Green Y"),
128 png_fixed(png_ptr, green_Z, "cHRM Green Z"),
129 png_fixed(png_ptr, blue_X, "cHRM Blue X"),
130 png_fixed(png_ptr, blue_Y, "cHRM Blue Y"),
131 png_fixed(png_ptr, blue_Z, "cHRM Blue Z"));
133 # endif /* FLOATING_POINT */
135 #endif /* cHRM */
137 #ifdef PNG_eXIf_SUPPORTED
138 void PNGAPI
139 png_set_eXIf(png_const_structrp png_ptr, png_inforp info_ptr,
140 png_bytep exif)
142 png_warning(png_ptr, "png_set_eXIf does not work; use png_set_eXIf_1");
143 PNG_UNUSED(info_ptr)
144 PNG_UNUSED(exif)
147 void PNGAPI
148 png_set_eXIf_1(png_const_structrp png_ptr, png_inforp info_ptr,
149 png_uint_32 num_exif, png_bytep exif)
151 png_bytep new_exif;
153 png_debug1(1, "in %s storage function", "eXIf");
155 if (png_ptr == NULL || info_ptr == NULL ||
156 (png_ptr->mode & PNG_WROTE_eXIf) != 0)
157 return;
159 new_exif = png_voidcast(png_bytep, png_malloc_warn(png_ptr, num_exif));
161 if (new_exif == NULL)
163 png_warning(png_ptr, "Insufficient memory for eXIf chunk data");
164 return;
167 memcpy(new_exif, exif, (size_t)num_exif);
169 png_free_data(png_ptr, info_ptr, PNG_FREE_EXIF, 0);
171 info_ptr->num_exif = num_exif;
172 info_ptr->exif = new_exif;
173 info_ptr->free_me |= PNG_FREE_EXIF;
174 info_ptr->valid |= PNG_INFO_eXIf;
176 #endif /* eXIf */
178 #ifdef PNG_gAMA_SUPPORTED
179 void PNGFAPI
180 png_set_gAMA_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
181 png_fixed_point file_gamma)
183 png_debug1(1, "in %s storage function", "gAMA");
185 if (png_ptr == NULL || info_ptr == NULL)
186 return;
188 png_colorspace_set_gamma(png_ptr, &info_ptr->colorspace, file_gamma);
189 png_colorspace_sync_info(png_ptr, info_ptr);
192 # ifdef PNG_FLOATING_POINT_SUPPORTED
193 void PNGAPI
194 png_set_gAMA(png_const_structrp png_ptr, png_inforp info_ptr, double file_gamma)
196 png_set_gAMA_fixed(png_ptr, info_ptr, png_fixed(png_ptr, file_gamma,
197 "png_set_gAMA"));
199 # endif
200 #endif
202 #ifdef PNG_hIST_SUPPORTED
203 void PNGAPI
204 png_set_hIST(png_const_structrp png_ptr, png_inforp info_ptr,
205 png_const_uint_16p hist)
207 int i;
209 png_debug1(1, "in %s storage function", "hIST");
211 if (png_ptr == NULL || info_ptr == NULL)
212 return;
214 if (info_ptr->num_palette == 0 || info_ptr->num_palette
215 > PNG_MAX_PALETTE_LENGTH)
217 png_warning(png_ptr,
218 "Invalid palette size, hIST allocation skipped");
220 return;
223 png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
225 /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
226 * version 1.2.1
228 info_ptr->hist = png_voidcast(png_uint_16p, png_malloc_warn(png_ptr,
229 PNG_MAX_PALETTE_LENGTH * (sizeof (png_uint_16))));
231 if (info_ptr->hist == NULL)
233 png_warning(png_ptr, "Insufficient memory for hIST chunk data");
234 return;
237 for (i = 0; i < info_ptr->num_palette; i++)
238 info_ptr->hist[i] = hist[i];
240 info_ptr->free_me |= PNG_FREE_HIST;
241 info_ptr->valid |= PNG_INFO_hIST;
243 #endif
245 void PNGAPI
246 png_set_IHDR(png_const_structrp png_ptr, png_inforp info_ptr,
247 png_uint_32 width, png_uint_32 height, int bit_depth,
248 int color_type, int interlace_type, int compression_type,
249 int filter_type)
251 png_debug1(1, "in %s storage function", "IHDR");
253 if (png_ptr == NULL || info_ptr == NULL)
254 return;
256 info_ptr->width = width;
257 info_ptr->height = height;
258 info_ptr->bit_depth = (png_byte)bit_depth;
259 info_ptr->color_type = (png_byte)color_type;
260 info_ptr->compression_type = (png_byte)compression_type;
261 info_ptr->filter_type = (png_byte)filter_type;
262 info_ptr->interlace_type = (png_byte)interlace_type;
264 png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
265 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
266 info_ptr->compression_type, info_ptr->filter_type);
268 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
269 info_ptr->channels = 1;
271 else if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) != 0)
272 info_ptr->channels = 3;
274 else
275 info_ptr->channels = 1;
277 if ((info_ptr->color_type & PNG_COLOR_MASK_ALPHA) != 0)
278 info_ptr->channels++;
280 info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
282 info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
285 #ifdef PNG_oFFs_SUPPORTED
286 void PNGAPI
287 png_set_oFFs(png_const_structrp png_ptr, png_inforp info_ptr,
288 png_int_32 offset_x, png_int_32 offset_y, int unit_type)
290 png_debug1(1, "in %s storage function", "oFFs");
292 if (png_ptr == NULL || info_ptr == NULL)
293 return;
295 info_ptr->x_offset = offset_x;
296 info_ptr->y_offset = offset_y;
297 info_ptr->offset_unit_type = (png_byte)unit_type;
298 info_ptr->valid |= PNG_INFO_oFFs;
300 #endif
302 #ifdef PNG_pCAL_SUPPORTED
303 void PNGAPI
304 png_set_pCAL(png_const_structrp png_ptr, png_inforp info_ptr,
305 png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type,
306 int nparams, png_const_charp units, png_charpp params)
308 size_t length;
309 int i;
311 png_debug1(1, "in %s storage function", "pCAL");
313 if (png_ptr == NULL || info_ptr == NULL || purpose == NULL || units == NULL
314 || (nparams > 0 && params == NULL))
315 return;
317 length = strlen(purpose) + 1;
318 png_debug1(3, "allocating purpose for info (%lu bytes)",
319 (unsigned long)length);
321 /* TODO: validate format of calibration name and unit name */
323 /* Check that the type matches the specification. */
324 if (type < 0 || type > 3)
326 png_chunk_report(png_ptr, "Invalid pCAL equation type",
327 PNG_CHUNK_WRITE_ERROR);
328 return;
331 if (nparams < 0 || nparams > 255)
333 png_chunk_report(png_ptr, "Invalid pCAL parameter count",
334 PNG_CHUNK_WRITE_ERROR);
335 return;
338 /* Validate params[nparams] */
339 for (i=0; i<nparams; ++i)
341 if (params[i] == NULL ||
342 !png_check_fp_string(params[i], strlen(params[i])))
344 png_chunk_report(png_ptr, "Invalid format for pCAL parameter",
345 PNG_CHUNK_WRITE_ERROR);
346 return;
350 info_ptr->pcal_purpose = png_voidcast(png_charp,
351 png_malloc_warn(png_ptr, length));
353 if (info_ptr->pcal_purpose == NULL)
355 png_chunk_report(png_ptr, "Insufficient memory for pCAL purpose",
356 PNG_CHUNK_WRITE_ERROR);
357 return;
360 memcpy(info_ptr->pcal_purpose, purpose, length);
362 info_ptr->free_me |= PNG_FREE_PCAL;
364 png_debug(3, "storing X0, X1, type, and nparams in info");
365 info_ptr->pcal_X0 = X0;
366 info_ptr->pcal_X1 = X1;
367 info_ptr->pcal_type = (png_byte)type;
368 info_ptr->pcal_nparams = (png_byte)nparams;
370 length = strlen(units) + 1;
371 png_debug1(3, "allocating units for info (%lu bytes)",
372 (unsigned long)length);
374 info_ptr->pcal_units = png_voidcast(png_charp,
375 png_malloc_warn(png_ptr, length));
377 if (info_ptr->pcal_units == NULL)
379 png_warning(png_ptr, "Insufficient memory for pCAL units");
380 return;
383 memcpy(info_ptr->pcal_units, units, length);
385 info_ptr->pcal_params = png_voidcast(png_charpp, png_malloc_warn(png_ptr,
386 (size_t)(((unsigned int)nparams + 1) * (sizeof (png_charp)))));
388 if (info_ptr->pcal_params == NULL)
390 png_warning(png_ptr, "Insufficient memory for pCAL params");
391 return;
394 memset(info_ptr->pcal_params, 0, ((unsigned int)nparams + 1) *
395 (sizeof (png_charp)));
397 for (i = 0; i < nparams; i++)
399 length = strlen(params[i]) + 1;
400 png_debug2(3, "allocating parameter %d for info (%lu bytes)", i,
401 (unsigned long)length);
403 info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
405 if (info_ptr->pcal_params[i] == NULL)
407 png_warning(png_ptr, "Insufficient memory for pCAL parameter");
408 return;
411 memcpy(info_ptr->pcal_params[i], params[i], length);
414 info_ptr->valid |= PNG_INFO_pCAL;
416 #endif
418 #ifdef PNG_sCAL_SUPPORTED
419 void PNGAPI
420 png_set_sCAL_s(png_const_structrp png_ptr, png_inforp info_ptr,
421 int unit, png_const_charp swidth, png_const_charp sheight)
423 size_t lengthw = 0, lengthh = 0;
425 png_debug1(1, "in %s storage function", "sCAL");
427 if (png_ptr == NULL || info_ptr == NULL)
428 return;
430 /* Double check the unit (should never get here with an invalid
431 * unit unless this is an API call.)
433 if (unit != 1 && unit != 2)
434 png_error(png_ptr, "Invalid sCAL unit");
436 if (swidth == NULL || (lengthw = strlen(swidth)) == 0 ||
437 swidth[0] == 45 /* '-' */ || !png_check_fp_string(swidth, lengthw))
438 png_error(png_ptr, "Invalid sCAL width");
440 if (sheight == NULL || (lengthh = strlen(sheight)) == 0 ||
441 sheight[0] == 45 /* '-' */ || !png_check_fp_string(sheight, lengthh))
442 png_error(png_ptr, "Invalid sCAL height");
444 info_ptr->scal_unit = (png_byte)unit;
446 ++lengthw;
448 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthw);
450 info_ptr->scal_s_width = png_voidcast(png_charp,
451 png_malloc_warn(png_ptr, lengthw));
453 if (info_ptr->scal_s_width == NULL)
455 png_warning(png_ptr, "Memory allocation failed while processing sCAL");
457 return;
460 memcpy(info_ptr->scal_s_width, swidth, lengthw);
462 ++lengthh;
464 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthh);
466 info_ptr->scal_s_height = png_voidcast(png_charp,
467 png_malloc_warn(png_ptr, lengthh));
469 if (info_ptr->scal_s_height == NULL)
471 png_free(png_ptr, info_ptr->scal_s_width);
472 info_ptr->scal_s_width = NULL;
474 png_warning(png_ptr, "Memory allocation failed while processing sCAL");
475 return;
478 memcpy(info_ptr->scal_s_height, sheight, lengthh);
480 info_ptr->free_me |= PNG_FREE_SCAL;
481 info_ptr->valid |= PNG_INFO_sCAL;
484 # ifdef PNG_FLOATING_POINT_SUPPORTED
485 void PNGAPI
486 png_set_sCAL(png_const_structrp png_ptr, png_inforp info_ptr, int unit,
487 double width, double height)
489 png_debug1(1, "in %s storage function", "sCAL");
491 /* Check the arguments. */
492 if (width <= 0)
493 png_warning(png_ptr, "Invalid sCAL width ignored");
495 else if (height <= 0)
496 png_warning(png_ptr, "Invalid sCAL height ignored");
498 else
500 /* Convert 'width' and 'height' to ASCII. */
501 char swidth[PNG_sCAL_MAX_DIGITS+1];
502 char sheight[PNG_sCAL_MAX_DIGITS+1];
504 png_ascii_from_fp(png_ptr, swidth, (sizeof swidth), width,
505 PNG_sCAL_PRECISION);
506 png_ascii_from_fp(png_ptr, sheight, (sizeof sheight), height,
507 PNG_sCAL_PRECISION);
509 png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
512 # endif
514 # ifdef PNG_FIXED_POINT_SUPPORTED
515 void PNGAPI
516 png_set_sCAL_fixed(png_const_structrp png_ptr, png_inforp info_ptr, int unit,
517 png_fixed_point width, png_fixed_point height)
519 png_debug1(1, "in %s storage function", "sCAL");
521 /* Check the arguments. */
522 if (width <= 0)
523 png_warning(png_ptr, "Invalid sCAL width ignored");
525 else if (height <= 0)
526 png_warning(png_ptr, "Invalid sCAL height ignored");
528 else
530 /* Convert 'width' and 'height' to ASCII. */
531 char swidth[PNG_sCAL_MAX_DIGITS+1];
532 char sheight[PNG_sCAL_MAX_DIGITS+1];
534 png_ascii_from_fixed(png_ptr, swidth, (sizeof swidth), width);
535 png_ascii_from_fixed(png_ptr, sheight, (sizeof sheight), height);
537 png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
540 # endif
541 #endif
543 #ifdef PNG_pHYs_SUPPORTED
544 void PNGAPI
545 png_set_pHYs(png_const_structrp png_ptr, png_inforp info_ptr,
546 png_uint_32 res_x, png_uint_32 res_y, int unit_type)
548 png_debug1(1, "in %s storage function", "pHYs");
550 if (png_ptr == NULL || info_ptr == NULL)
551 return;
553 info_ptr->x_pixels_per_unit = res_x;
554 info_ptr->y_pixels_per_unit = res_y;
555 info_ptr->phys_unit_type = (png_byte)unit_type;
556 info_ptr->valid |= PNG_INFO_pHYs;
558 #endif
560 void PNGAPI
561 png_set_PLTE(png_structrp png_ptr, png_inforp info_ptr,
562 png_const_colorp palette, int num_palette)
565 png_uint_32 max_palette_length;
567 png_debug1(1, "in %s storage function", "PLTE");
569 if (png_ptr == NULL || info_ptr == NULL)
570 return;
572 max_palette_length = (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE) ?
573 (1 << info_ptr->bit_depth) : PNG_MAX_PALETTE_LENGTH;
575 if (num_palette < 0 || num_palette > (int) max_palette_length)
577 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
578 png_error(png_ptr, "Invalid palette length");
580 else
582 png_warning(png_ptr, "Invalid palette length");
584 return;
588 if ((num_palette > 0 && palette == NULL) ||
589 (num_palette == 0
590 # ifdef PNG_MNG_FEATURES_SUPPORTED
591 && (png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE) == 0
592 # endif
595 png_error(png_ptr, "Invalid palette");
598 /* It may not actually be necessary to set png_ptr->palette here;
599 * we do it for backward compatibility with the way the png_handle_tRNS
600 * function used to do the allocation.
602 * 1.6.0: the above statement appears to be incorrect; something has to set
603 * the palette inside png_struct on read.
605 png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
607 /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
608 * of num_palette entries, in case of an invalid PNG file or incorrect
609 * call to png_set_PLTE() with too-large sample values.
611 png_ptr->palette = png_voidcast(png_colorp, png_calloc(png_ptr,
612 PNG_MAX_PALETTE_LENGTH * (sizeof (png_color))));
614 if (num_palette > 0)
615 memcpy(png_ptr->palette, palette, (unsigned int)num_palette *
616 (sizeof (png_color)));
618 info_ptr->palette = png_ptr->palette;
619 info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;
620 info_ptr->free_me |= PNG_FREE_PLTE;
621 info_ptr->valid |= PNG_INFO_PLTE;
624 #ifdef PNG_sBIT_SUPPORTED
625 void PNGAPI
626 png_set_sBIT(png_const_structrp png_ptr, png_inforp info_ptr,
627 png_const_color_8p sig_bit)
629 png_debug1(1, "in %s storage function", "sBIT");
631 if (png_ptr == NULL || info_ptr == NULL || sig_bit == NULL)
632 return;
634 info_ptr->sig_bit = *sig_bit;
635 info_ptr->valid |= PNG_INFO_sBIT;
637 #endif
639 #ifdef PNG_sRGB_SUPPORTED
640 void PNGAPI
641 png_set_sRGB(png_const_structrp png_ptr, png_inforp info_ptr, int srgb_intent)
643 png_debug1(1, "in %s storage function", "sRGB");
645 if (png_ptr == NULL || info_ptr == NULL)
646 return;
648 (void)png_colorspace_set_sRGB(png_ptr, &info_ptr->colorspace, srgb_intent);
649 png_colorspace_sync_info(png_ptr, info_ptr);
652 void PNGAPI
653 png_set_sRGB_gAMA_and_cHRM(png_const_structrp png_ptr, png_inforp info_ptr,
654 int srgb_intent)
656 png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
658 if (png_ptr == NULL || info_ptr == NULL)
659 return;
661 if (png_colorspace_set_sRGB(png_ptr, &info_ptr->colorspace,
662 srgb_intent) != 0)
664 /* This causes the gAMA and cHRM to be written too */
665 info_ptr->colorspace.flags |=
666 PNG_COLORSPACE_FROM_gAMA|PNG_COLORSPACE_FROM_cHRM;
669 png_colorspace_sync_info(png_ptr, info_ptr);
671 #endif /* sRGB */
674 #ifdef PNG_iCCP_SUPPORTED
675 void PNGAPI
676 png_set_iCCP(png_const_structrp png_ptr, png_inforp info_ptr,
677 png_const_charp name, int compression_type,
678 png_const_bytep profile, png_uint_32 proflen)
680 png_charp new_iccp_name;
681 png_bytep new_iccp_profile;
682 size_t length;
684 png_debug1(1, "in %s storage function", "iCCP");
686 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
687 return;
689 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
690 png_app_error(png_ptr, "Invalid iCCP compression method");
692 /* Set the colorspace first because this validates the profile; do not
693 * override previously set app cHRM or gAMA here (because likely as not the
694 * application knows better than libpng what the correct values are.) Pass
695 * the info_ptr color_type field to png_colorspace_set_ICC because in the
696 * write case it has not yet been stored in png_ptr.
699 int result = png_colorspace_set_ICC(png_ptr, &info_ptr->colorspace, name,
700 proflen, profile, info_ptr->color_type);
702 png_colorspace_sync_info(png_ptr, info_ptr);
704 /* Don't do any of the copying if the profile was bad, or inconsistent. */
705 if (result == 0)
706 return;
708 /* But do write the gAMA and cHRM chunks from the profile. */
709 info_ptr->colorspace.flags |=
710 PNG_COLORSPACE_FROM_gAMA|PNG_COLORSPACE_FROM_cHRM;
713 length = strlen(name)+1;
714 new_iccp_name = png_voidcast(png_charp, png_malloc_warn(png_ptr, length));
716 if (new_iccp_name == NULL)
718 png_benign_error(png_ptr, "Insufficient memory to process iCCP chunk");
720 return;
723 memcpy(new_iccp_name, name, length);
724 new_iccp_profile = png_voidcast(png_bytep,
725 png_malloc_warn(png_ptr, proflen));
727 if (new_iccp_profile == NULL)
729 png_free(png_ptr, new_iccp_name);
730 png_benign_error(png_ptr,
731 "Insufficient memory to process iCCP profile");
733 return;
736 memcpy(new_iccp_profile, profile, proflen);
738 png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
740 info_ptr->iccp_proflen = proflen;
741 info_ptr->iccp_name = new_iccp_name;
742 info_ptr->iccp_profile = new_iccp_profile;
743 info_ptr->free_me |= PNG_FREE_ICCP;
744 info_ptr->valid |= PNG_INFO_iCCP;
746 #endif
748 #ifdef PNG_TEXT_SUPPORTED
749 void PNGAPI
750 png_set_text(png_const_structrp png_ptr, png_inforp info_ptr,
751 png_const_textp text_ptr, int num_text)
753 int ret;
754 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
756 if (ret != 0)
757 png_error(png_ptr, "Insufficient memory to store text");
760 int /* PRIVATE */
761 png_set_text_2(png_const_structrp png_ptr, png_inforp info_ptr,
762 png_const_textp text_ptr, int num_text)
764 int i;
766 png_debug1(1, "in %lx storage function", png_ptr == NULL ? 0xabadca11U :
767 (unsigned long)png_ptr->chunk_name);
769 if (png_ptr == NULL || info_ptr == NULL || num_text <= 0 || text_ptr == NULL)
770 return(0);
772 /* Make sure we have enough space in the "text" array in info_struct
773 * to hold all of the incoming text_ptr objects. This compare can't overflow
774 * because max_text >= num_text (anyway, subtract of two positive integers
775 * can't overflow in any case.)
777 if (num_text > info_ptr->max_text - info_ptr->num_text)
779 int old_num_text = info_ptr->num_text;
780 int max_text;
781 png_textp new_text = NULL;
783 /* Calculate an appropriate max_text, checking for overflow. */
784 max_text = old_num_text;
785 if (num_text <= INT_MAX - max_text)
787 max_text += num_text;
789 /* Round up to a multiple of 8 */
790 if (max_text < INT_MAX-8)
791 max_text = (max_text + 8) & ~0x7;
793 else
794 max_text = INT_MAX;
796 /* Now allocate a new array and copy the old members in; this does all
797 * the overflow checks.
799 new_text = png_voidcast(png_textp,png_realloc_array(png_ptr,
800 info_ptr->text, old_num_text, max_text-old_num_text,
801 sizeof *new_text));
804 if (new_text == NULL)
806 png_chunk_report(png_ptr, "too many text chunks",
807 PNG_CHUNK_WRITE_ERROR);
809 return 1;
812 png_free(png_ptr, info_ptr->text);
814 info_ptr->text = new_text;
815 info_ptr->free_me |= PNG_FREE_TEXT;
816 info_ptr->max_text = max_text;
817 /* num_text is adjusted below as the entries are copied in */
819 png_debug1(3, "allocated %d entries for info_ptr->text", max_text);
822 for (i = 0; i < num_text; i++)
824 size_t text_length, key_len;
825 size_t lang_len, lang_key_len;
826 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
828 if (text_ptr[i].key == NULL)
829 continue;
831 if (text_ptr[i].compression < PNG_TEXT_COMPRESSION_NONE ||
832 text_ptr[i].compression >= PNG_TEXT_COMPRESSION_LAST)
834 png_chunk_report(png_ptr, "text compression mode is out of range",
835 PNG_CHUNK_WRITE_ERROR);
836 continue;
839 key_len = strlen(text_ptr[i].key);
841 if (text_ptr[i].compression <= 0)
843 lang_len = 0;
844 lang_key_len = 0;
847 else
848 # ifdef PNG_iTXt_SUPPORTED
850 /* Set iTXt data */
852 if (text_ptr[i].lang != NULL)
853 lang_len = strlen(text_ptr[i].lang);
855 else
856 lang_len = 0;
858 if (text_ptr[i].lang_key != NULL)
859 lang_key_len = strlen(text_ptr[i].lang_key);
861 else
862 lang_key_len = 0;
864 # else /* iTXt */
866 png_chunk_report(png_ptr, "iTXt chunk not supported",
867 PNG_CHUNK_WRITE_ERROR);
868 continue;
870 # endif
872 if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
874 text_length = 0;
875 # ifdef PNG_iTXt_SUPPORTED
876 if (text_ptr[i].compression > 0)
877 textp->compression = PNG_ITXT_COMPRESSION_NONE;
879 else
880 # endif
881 textp->compression = PNG_TEXT_COMPRESSION_NONE;
884 else
886 text_length = strlen(text_ptr[i].text);
887 textp->compression = text_ptr[i].compression;
890 textp->key = png_voidcast(png_charp,png_malloc_base(png_ptr,
891 key_len + text_length + lang_len + lang_key_len + 4));
893 if (textp->key == NULL)
895 png_chunk_report(png_ptr, "text chunk: out of memory",
896 PNG_CHUNK_WRITE_ERROR);
898 return 1;
901 png_debug2(2, "Allocated %lu bytes at %p in png_set_text",
902 (unsigned long)(png_uint_32)
903 (key_len + lang_len + lang_key_len + text_length + 4),
904 textp->key);
906 memcpy(textp->key, text_ptr[i].key, key_len);
907 *(textp->key + key_len) = '\0';
909 if (text_ptr[i].compression > 0)
911 textp->lang = textp->key + key_len + 1;
912 memcpy(textp->lang, text_ptr[i].lang, lang_len);
913 *(textp->lang + lang_len) = '\0';
914 textp->lang_key = textp->lang + lang_len + 1;
915 memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
916 *(textp->lang_key + lang_key_len) = '\0';
917 textp->text = textp->lang_key + lang_key_len + 1;
920 else
922 textp->lang=NULL;
923 textp->lang_key=NULL;
924 textp->text = textp->key + key_len + 1;
927 if (text_length != 0)
928 memcpy(textp->text, text_ptr[i].text, text_length);
930 *(textp->text + text_length) = '\0';
932 # ifdef PNG_iTXt_SUPPORTED
933 if (textp->compression > 0)
935 textp->text_length = 0;
936 textp->itxt_length = text_length;
939 else
940 # endif
942 textp->text_length = text_length;
943 textp->itxt_length = 0;
946 info_ptr->num_text++;
947 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
950 return(0);
952 #endif
954 #ifdef PNG_tIME_SUPPORTED
955 void PNGAPI
956 png_set_tIME(png_const_structrp png_ptr, png_inforp info_ptr,
957 png_const_timep mod_time)
959 png_debug1(1, "in %s storage function", "tIME");
961 if (png_ptr == NULL || info_ptr == NULL || mod_time == NULL ||
962 (png_ptr->mode & PNG_WROTE_tIME) != 0)
963 return;
965 if (mod_time->month == 0 || mod_time->month > 12 ||
966 mod_time->day == 0 || mod_time->day > 31 ||
967 mod_time->hour > 23 || mod_time->minute > 59 ||
968 mod_time->second > 60)
970 png_warning(png_ptr, "Ignoring invalid time value");
972 return;
975 info_ptr->mod_time = *mod_time;
976 info_ptr->valid |= PNG_INFO_tIME;
978 #endif
980 #ifdef PNG_tRNS_SUPPORTED
981 void PNGAPI
982 png_set_tRNS(png_structrp png_ptr, png_inforp info_ptr,
983 png_const_bytep trans_alpha, int num_trans, png_const_color_16p trans_color)
985 png_debug1(1, "in %s storage function", "tRNS");
987 if (png_ptr == NULL || info_ptr == NULL)
989 return;
991 if (trans_alpha != NULL)
993 /* It may not actually be necessary to set png_ptr->trans_alpha here;
994 * we do it for backward compatibility with the way the png_handle_tRNS
995 * function used to do the allocation.
997 * 1.6.0: The above statement is incorrect; png_handle_tRNS effectively
998 * relies on png_set_tRNS storing the information in png_struct
999 * (otherwise it won't be there for the code in pngrtran.c).
1002 png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
1004 if (num_trans > 0 && num_trans <= PNG_MAX_PALETTE_LENGTH)
1006 /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
1007 info_ptr->trans_alpha = png_voidcast(png_bytep,
1008 png_malloc(png_ptr, PNG_MAX_PALETTE_LENGTH));
1009 memcpy(info_ptr->trans_alpha, trans_alpha, (size_t)num_trans);
1011 info_ptr->free_me |= PNG_FREE_TRNS;
1012 info_ptr->valid |= PNG_INFO_tRNS;
1014 png_ptr->trans_alpha = info_ptr->trans_alpha;
1017 if (trans_color != NULL)
1019 #ifdef PNG_WARNINGS_SUPPORTED
1020 if (info_ptr->bit_depth < 16)
1022 int sample_max = (1 << info_ptr->bit_depth) - 1;
1024 if ((info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
1025 trans_color->gray > sample_max) ||
1026 (info_ptr->color_type == PNG_COLOR_TYPE_RGB &&
1027 (trans_color->red > sample_max ||
1028 trans_color->green > sample_max ||
1029 trans_color->blue > sample_max)))
1030 png_warning(png_ptr,
1031 "tRNS chunk has out-of-range samples for bit_depth");
1033 #endif
1035 info_ptr->trans_color = *trans_color;
1037 if (num_trans == 0)
1038 num_trans = 1;
1041 info_ptr->num_trans = (png_uint_16)num_trans;
1043 if (num_trans != 0)
1045 info_ptr->free_me |= PNG_FREE_TRNS;
1046 info_ptr->valid |= PNG_INFO_tRNS;
1049 #endif
1051 #ifdef PNG_sPLT_SUPPORTED
1052 void PNGAPI
1053 png_set_sPLT(png_const_structrp png_ptr,
1054 png_inforp info_ptr, png_const_sPLT_tp entries, int nentries)
1056 * entries - array of png_sPLT_t structures
1057 * to be added to the list of palettes
1058 * in the info structure.
1060 * nentries - number of palette structures to be
1061 * added.
1064 png_sPLT_tp np;
1066 if (png_ptr == NULL || info_ptr == NULL || nentries <= 0 || entries == NULL)
1067 return;
1069 /* Use the internal realloc function, which checks for all the possible
1070 * overflows. Notice that the parameters are (int) and (size_t)
1072 np = png_voidcast(png_sPLT_tp,png_realloc_array(png_ptr,
1073 info_ptr->splt_palettes, info_ptr->splt_palettes_num, nentries,
1074 sizeof *np));
1076 if (np == NULL)
1078 /* Out of memory or too many chunks */
1079 png_chunk_report(png_ptr, "too many sPLT chunks", PNG_CHUNK_WRITE_ERROR);
1080 return;
1083 png_free(png_ptr, info_ptr->splt_palettes);
1085 info_ptr->splt_palettes = np;
1086 info_ptr->free_me |= PNG_FREE_SPLT;
1088 np += info_ptr->splt_palettes_num;
1092 size_t length;
1094 /* Skip invalid input entries */
1095 if (entries->name == NULL || entries->entries == NULL)
1097 /* png_handle_sPLT doesn't do this, so this is an app error */
1098 png_app_error(png_ptr, "png_set_sPLT: invalid sPLT");
1099 /* Just skip the invalid entry */
1100 continue;
1103 np->depth = entries->depth;
1105 /* In the event of out-of-memory just return - there's no point keeping
1106 * on trying to add sPLT chunks.
1108 length = strlen(entries->name) + 1;
1109 np->name = png_voidcast(png_charp, png_malloc_base(png_ptr, length));
1111 if (np->name == NULL)
1112 break;
1114 memcpy(np->name, entries->name, length);
1116 /* IMPORTANT: we have memory now that won't get freed if something else
1117 * goes wrong; this code must free it. png_malloc_array produces no
1118 * warnings; use a png_chunk_report (below) if there is an error.
1120 np->entries = png_voidcast(png_sPLT_entryp, png_malloc_array(png_ptr,
1121 entries->nentries, sizeof (png_sPLT_entry)));
1123 if (np->entries == NULL)
1125 png_free(png_ptr, np->name);
1126 np->name = NULL;
1127 break;
1130 np->nentries = entries->nentries;
1131 /* This multiply can't overflow because png_malloc_array has already
1132 * checked it when doing the allocation.
1134 memcpy(np->entries, entries->entries,
1135 (unsigned int)entries->nentries * sizeof (png_sPLT_entry));
1137 /* Note that 'continue' skips the advance of the out pointer and out
1138 * count, so an invalid entry is not added.
1140 info_ptr->valid |= PNG_INFO_sPLT;
1141 ++(info_ptr->splt_palettes_num);
1142 ++np;
1143 ++entries;
1145 while (--nentries);
1147 if (nentries > 0)
1148 png_chunk_report(png_ptr, "sPLT out of memory", PNG_CHUNK_WRITE_ERROR);
1150 #endif /* sPLT */
1152 #ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
1153 static png_byte
1154 check_location(png_const_structrp png_ptr, int location)
1156 location &= (PNG_HAVE_IHDR|PNG_HAVE_PLTE|PNG_AFTER_IDAT);
1158 /* New in 1.6.0; copy the location and check it. This is an API
1159 * change; previously the app had to use the
1160 * png_set_unknown_chunk_location API below for each chunk.
1162 if (location == 0 && (png_ptr->mode & PNG_IS_READ_STRUCT) == 0)
1164 /* Write struct, so unknown chunks come from the app */
1165 png_app_warning(png_ptr,
1166 "png_set_unknown_chunks now expects a valid location");
1167 /* Use the old behavior */
1168 location = (png_byte)(png_ptr->mode &
1169 (PNG_HAVE_IHDR|PNG_HAVE_PLTE|PNG_AFTER_IDAT));
1172 /* This need not be an internal error - if the app calls
1173 * png_set_unknown_chunks on a read pointer it must get the location right.
1175 if (location == 0)
1176 png_error(png_ptr, "invalid location in png_set_unknown_chunks");
1178 /* Now reduce the location to the top-most set bit by removing each least
1179 * significant bit in turn.
1181 while (location != (location & -location))
1182 location &= ~(location & -location);
1184 /* The cast is safe because 'location' is a bit mask and only the low four
1185 * bits are significant.
1187 return (png_byte)location;
1190 void PNGAPI
1191 png_set_unknown_chunks(png_const_structrp png_ptr,
1192 png_inforp info_ptr, png_const_unknown_chunkp unknowns, int num_unknowns)
1194 png_unknown_chunkp np;
1196 if (png_ptr == NULL || info_ptr == NULL || num_unknowns <= 0 ||
1197 unknowns == NULL)
1198 return;
1200 /* Check for the failure cases where support has been disabled at compile
1201 * time. This code is hardly ever compiled - it's here because
1202 * STORE_UNKNOWN_CHUNKS is set by both read and write code (compiling in this
1203 * code) but may be meaningless if the read or write handling of unknown
1204 * chunks is not compiled in.
1206 # if !defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED) && \
1207 defined(PNG_READ_SUPPORTED)
1208 if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0)
1210 png_app_error(png_ptr, "no unknown chunk support on read");
1212 return;
1214 # endif
1215 # if !defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED) && \
1216 defined(PNG_WRITE_SUPPORTED)
1217 if ((png_ptr->mode & PNG_IS_READ_STRUCT) == 0)
1219 png_app_error(png_ptr, "no unknown chunk support on write");
1221 return;
1223 # endif
1225 /* Prior to 1.6.0 this code used png_malloc_warn; however, this meant that
1226 * unknown critical chunks could be lost with just a warning resulting in
1227 * undefined behavior. Now png_chunk_report is used to provide behavior
1228 * appropriate to read or write.
1230 np = png_voidcast(png_unknown_chunkp, png_realloc_array(png_ptr,
1231 info_ptr->unknown_chunks, info_ptr->unknown_chunks_num, num_unknowns,
1232 sizeof *np));
1234 if (np == NULL)
1236 png_chunk_report(png_ptr, "too many unknown chunks",
1237 PNG_CHUNK_WRITE_ERROR);
1238 return;
1241 png_free(png_ptr, info_ptr->unknown_chunks);
1243 info_ptr->unknown_chunks = np; /* safe because it is initialized */
1244 info_ptr->free_me |= PNG_FREE_UNKN;
1246 np += info_ptr->unknown_chunks_num;
1248 /* Increment unknown_chunks_num each time round the loop to protect the
1249 * just-allocated chunk data.
1251 for (; num_unknowns > 0; --num_unknowns, ++unknowns)
1253 memcpy(np->name, unknowns->name, (sizeof np->name));
1254 np->name[(sizeof np->name)-1] = '\0';
1255 np->location = check_location(png_ptr, unknowns->location);
1257 if (unknowns->size == 0)
1259 np->data = NULL;
1260 np->size = 0;
1263 else
1265 np->data = png_voidcast(png_bytep,
1266 png_malloc_base(png_ptr, unknowns->size));
1268 if (np->data == NULL)
1270 png_chunk_report(png_ptr, "unknown chunk: out of memory",
1271 PNG_CHUNK_WRITE_ERROR);
1272 /* But just skip storing the unknown chunk */
1273 continue;
1276 memcpy(np->data, unknowns->data, unknowns->size);
1277 np->size = unknowns->size;
1280 /* These increments are skipped on out-of-memory for the data - the
1281 * unknown chunk entry gets overwritten if the png_chunk_report returns.
1282 * This is correct in the read case (the chunk is just dropped.)
1284 ++np;
1285 ++(info_ptr->unknown_chunks_num);
1289 void PNGAPI
1290 png_set_unknown_chunk_location(png_const_structrp png_ptr, png_inforp info_ptr,
1291 int chunk, int location)
1293 /* This API is pretty pointless in 1.6.0 because the location can be set
1294 * before the call to png_set_unknown_chunks.
1296 * TODO: add a png_app_warning in 1.7
1298 if (png_ptr != NULL && info_ptr != NULL && chunk >= 0 &&
1299 chunk < info_ptr->unknown_chunks_num)
1301 if ((location & (PNG_HAVE_IHDR|PNG_HAVE_PLTE|PNG_AFTER_IDAT)) == 0)
1303 png_app_error(png_ptr, "invalid unknown chunk location");
1304 /* Fake out the pre 1.6.0 behavior: */
1305 if (((unsigned int)location & PNG_HAVE_IDAT) != 0) /* undocumented! */
1306 location = PNG_AFTER_IDAT;
1308 else
1309 location = PNG_HAVE_IHDR; /* also undocumented */
1312 info_ptr->unknown_chunks[chunk].location =
1313 check_location(png_ptr, location);
1316 #endif /* STORE_UNKNOWN_CHUNKS */
1318 #ifdef PNG_MNG_FEATURES_SUPPORTED
1319 png_uint_32 PNGAPI
1320 png_permit_mng_features(png_structrp png_ptr, png_uint_32 mng_features)
1322 png_debug(1, "in png_permit_mng_features");
1324 if (png_ptr == NULL)
1325 return 0;
1327 png_ptr->mng_features_permitted = mng_features & PNG_ALL_MNG_FEATURES;
1329 return png_ptr->mng_features_permitted;
1331 #endif
1333 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
1334 static unsigned int
1335 add_one_chunk(png_bytep list, unsigned int count, png_const_bytep add, int keep)
1337 unsigned int i;
1339 /* Utility function: update the 'keep' state of a chunk if it is already in
1340 * the list, otherwise add it to the list.
1342 for (i=0; i<count; ++i, list += 5)
1344 if (memcmp(list, add, 4) == 0)
1346 list[4] = (png_byte)keep;
1348 return count;
1352 if (keep != PNG_HANDLE_CHUNK_AS_DEFAULT)
1354 ++count;
1355 memcpy(list, add, 4);
1356 list[4] = (png_byte)keep;
1359 return count;
1362 void PNGAPI
1363 png_set_keep_unknown_chunks(png_structrp png_ptr, int keep,
1364 png_const_bytep chunk_list, int num_chunks_in)
1366 png_bytep new_list;
1367 unsigned int num_chunks, old_num_chunks;
1369 if (png_ptr == NULL)
1370 return;
1372 if (keep < 0 || keep >= PNG_HANDLE_CHUNK_LAST)
1374 png_app_error(png_ptr, "png_set_keep_unknown_chunks: invalid keep");
1376 return;
1379 if (num_chunks_in <= 0)
1381 png_ptr->unknown_default = keep;
1383 /* '0' means just set the flags, so stop here */
1384 if (num_chunks_in == 0)
1385 return;
1388 if (num_chunks_in < 0)
1390 /* Ignore all unknown chunks and all chunks recognized by
1391 * libpng except for IHDR, PLTE, tRNS, IDAT, and IEND
1393 static const png_byte chunks_to_ignore[] = {
1394 98, 75, 71, 68, '\0', /* bKGD */
1395 99, 72, 82, 77, '\0', /* cHRM */
1396 101, 88, 73, 102, '\0', /* eXIf */
1397 103, 65, 77, 65, '\0', /* gAMA */
1398 104, 73, 83, 84, '\0', /* hIST */
1399 105, 67, 67, 80, '\0', /* iCCP */
1400 105, 84, 88, 116, '\0', /* iTXt */
1401 111, 70, 70, 115, '\0', /* oFFs */
1402 112, 67, 65, 76, '\0', /* pCAL */
1403 112, 72, 89, 115, '\0', /* pHYs */
1404 115, 66, 73, 84, '\0', /* sBIT */
1405 115, 67, 65, 76, '\0', /* sCAL */
1406 115, 80, 76, 84, '\0', /* sPLT */
1407 115, 84, 69, 82, '\0', /* sTER */
1408 115, 82, 71, 66, '\0', /* sRGB */
1409 116, 69, 88, 116, '\0', /* tEXt */
1410 116, 73, 77, 69, '\0', /* tIME */
1411 122, 84, 88, 116, '\0' /* zTXt */
1414 chunk_list = chunks_to_ignore;
1415 num_chunks = (unsigned int)/*SAFE*/(sizeof chunks_to_ignore)/5U;
1418 else /* num_chunks_in > 0 */
1420 if (chunk_list == NULL)
1422 /* Prior to 1.6.0 this was silently ignored, now it is an app_error
1423 * which can be switched off.
1425 png_app_error(png_ptr, "png_set_keep_unknown_chunks: no chunk list");
1427 return;
1430 num_chunks = (unsigned int)num_chunks_in;
1433 old_num_chunks = png_ptr->num_chunk_list;
1434 if (png_ptr->chunk_list == NULL)
1435 old_num_chunks = 0;
1437 /* Since num_chunks is always restricted to UINT_MAX/5 this can't overflow.
1439 if (num_chunks + old_num_chunks > UINT_MAX/5)
1441 png_app_error(png_ptr, "png_set_keep_unknown_chunks: too many chunks");
1443 return;
1446 /* If these chunks are being reset to the default then no more memory is
1447 * required because add_one_chunk above doesn't extend the list if the 'keep'
1448 * parameter is the default.
1450 if (keep != 0)
1452 new_list = png_voidcast(png_bytep, png_malloc(png_ptr,
1453 5 * (num_chunks + old_num_chunks)));
1455 if (old_num_chunks > 0)
1456 memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks);
1459 else if (old_num_chunks > 0)
1460 new_list = png_ptr->chunk_list;
1462 else
1463 new_list = NULL;
1465 /* Add the new chunks together with each one's handling code. If the chunk
1466 * already exists the code is updated, otherwise the chunk is added to the
1467 * end. (In libpng 1.6.0 order no longer matters because this code enforces
1468 * the earlier convention that the last setting is the one that is used.)
1470 if (new_list != NULL)
1472 png_const_bytep inlist;
1473 png_bytep outlist;
1474 unsigned int i;
1476 for (i=0; i<num_chunks; ++i)
1478 old_num_chunks = add_one_chunk(new_list, old_num_chunks,
1479 chunk_list+5*i, keep);
1482 /* Now remove any spurious 'default' entries. */
1483 num_chunks = 0;
1484 for (i=0, inlist=outlist=new_list; i<old_num_chunks; ++i, inlist += 5)
1486 if (inlist[4])
1488 if (outlist != inlist)
1489 memcpy(outlist, inlist, 5);
1490 outlist += 5;
1491 ++num_chunks;
1495 /* This means the application has removed all the specialized handling. */
1496 if (num_chunks == 0)
1498 if (png_ptr->chunk_list != new_list)
1499 png_free(png_ptr, new_list);
1501 new_list = NULL;
1505 else
1506 num_chunks = 0;
1508 png_ptr->num_chunk_list = num_chunks;
1510 if (png_ptr->chunk_list != new_list)
1512 if (png_ptr->chunk_list != NULL)
1513 png_free(png_ptr, png_ptr->chunk_list);
1515 png_ptr->chunk_list = new_list;
1518 #endif
1520 #ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1521 void PNGAPI
1522 png_set_read_user_chunk_fn(png_structrp png_ptr, png_voidp user_chunk_ptr,
1523 png_user_chunk_ptr read_user_chunk_fn)
1525 png_debug(1, "in png_set_read_user_chunk_fn");
1527 if (png_ptr == NULL)
1528 return;
1530 png_ptr->read_user_chunk_fn = read_user_chunk_fn;
1531 png_ptr->user_chunk_ptr = user_chunk_ptr;
1533 #endif
1535 #ifdef PNG_INFO_IMAGE_SUPPORTED
1536 void PNGAPI
1537 png_set_rows(png_const_structrp png_ptr, png_inforp info_ptr,
1538 png_bytepp row_pointers)
1540 png_debug1(1, "in %s storage function", "rows");
1542 if (png_ptr == NULL || info_ptr == NULL)
1543 return;
1545 if (info_ptr->row_pointers != NULL &&
1546 (info_ptr->row_pointers != row_pointers))
1547 png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
1549 info_ptr->row_pointers = row_pointers;
1551 if (row_pointers != NULL)
1552 info_ptr->valid |= PNG_INFO_IDAT;
1554 #endif
1556 void PNGAPI
1557 png_set_compression_buffer_size(png_structrp png_ptr, size_t size)
1559 if (png_ptr == NULL)
1560 return;
1562 if (size == 0 || size > PNG_UINT_31_MAX)
1563 png_error(png_ptr, "invalid compression buffer size");
1565 # ifdef PNG_SEQUENTIAL_READ_SUPPORTED
1566 if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0)
1568 png_ptr->IDAT_read_size = (png_uint_32)size; /* checked above */
1569 return;
1571 # endif
1573 # ifdef PNG_WRITE_SUPPORTED
1574 if ((png_ptr->mode & PNG_IS_READ_STRUCT) == 0)
1576 if (png_ptr->zowner != 0)
1578 png_warning(png_ptr,
1579 "Compression buffer size cannot be changed because it is in use");
1581 return;
1584 #ifndef __COVERITY__
1585 /* Some compilers complain that this is always false. However, it
1586 * can be true when integer overflow happens.
1588 if (size > ZLIB_IO_MAX)
1590 png_warning(png_ptr,
1591 "Compression buffer size limited to system maximum");
1592 size = ZLIB_IO_MAX; /* must fit */
1594 #endif
1596 if (size < 6)
1598 /* Deflate will potentially go into an infinite loop on a SYNC_FLUSH
1599 * if this is permitted.
1601 png_warning(png_ptr,
1602 "Compression buffer size cannot be reduced below 6");
1604 return;
1607 if (png_ptr->zbuffer_size != size)
1609 png_free_buffer_list(png_ptr, &png_ptr->zbuffer_list);
1610 png_ptr->zbuffer_size = (uInt)size;
1613 # endif
1616 void PNGAPI
1617 png_set_invalid(png_const_structrp png_ptr, png_inforp info_ptr, int mask)
1619 if (png_ptr != NULL && info_ptr != NULL)
1620 info_ptr->valid &= (unsigned int)(~mask);
1624 #ifdef PNG_SET_USER_LIMITS_SUPPORTED
1625 /* This function was added to libpng 1.2.6 */
1626 void PNGAPI
1627 png_set_user_limits(png_structrp png_ptr, png_uint_32 user_width_max,
1628 png_uint_32 user_height_max)
1630 /* Images with dimensions larger than these limits will be
1631 * rejected by png_set_IHDR(). To accept any PNG datastream
1632 * regardless of dimensions, set both limits to 0x7fffffff.
1634 if (png_ptr == NULL)
1635 return;
1637 png_ptr->user_width_max = user_width_max;
1638 png_ptr->user_height_max = user_height_max;
1641 /* This function was added to libpng 1.4.0 */
1642 void PNGAPI
1643 png_set_chunk_cache_max(png_structrp png_ptr, png_uint_32 user_chunk_cache_max)
1645 if (png_ptr != NULL)
1646 png_ptr->user_chunk_cache_max = user_chunk_cache_max;
1649 /* This function was added to libpng 1.4.1 */
1650 void PNGAPI
1651 png_set_chunk_malloc_max(png_structrp png_ptr,
1652 png_alloc_size_t user_chunk_malloc_max)
1654 if (png_ptr != NULL)
1655 png_ptr->user_chunk_malloc_max = user_chunk_malloc_max;
1657 #endif /* ?SET_USER_LIMITS */
1660 #ifdef PNG_BENIGN_ERRORS_SUPPORTED
1661 void PNGAPI
1662 png_set_benign_errors(png_structrp png_ptr, int allowed)
1664 png_debug(1, "in png_set_benign_errors");
1666 /* If allowed is 1, png_benign_error() is treated as a warning.
1668 * If allowed is 0, png_benign_error() is treated as an error (which
1669 * is the default behavior if png_set_benign_errors() is not called).
1672 if (allowed != 0)
1673 png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN |
1674 PNG_FLAG_APP_WARNINGS_WARN | PNG_FLAG_APP_ERRORS_WARN;
1676 else
1677 png_ptr->flags &= ~(PNG_FLAG_BENIGN_ERRORS_WARN |
1678 PNG_FLAG_APP_WARNINGS_WARN | PNG_FLAG_APP_ERRORS_WARN);
1680 #endif /* BENIGN_ERRORS */
1682 #ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED
1683 /* Whether to report invalid palette index; added at libng-1.5.10.
1684 * It is possible for an indexed (color-type==3) PNG file to contain
1685 * pixels with invalid (out-of-range) indexes if the PLTE chunk has
1686 * fewer entries than the image's bit-depth would allow. We recover
1687 * from this gracefully by filling any incomplete palette with zeros
1688 * (opaque black). By default, when this occurs libpng will issue
1689 * a benign error. This API can be used to override that behavior.
1691 void PNGAPI
1692 png_set_check_for_invalid_index(png_structrp png_ptr, int allowed)
1694 png_debug(1, "in png_set_check_for_invalid_index");
1696 if (allowed > 0)
1697 png_ptr->num_palette_max = 0;
1699 else
1700 png_ptr->num_palette_max = -1;
1702 #endif
1704 #if defined(PNG_TEXT_SUPPORTED) || defined(PNG_pCAL_SUPPORTED) || \
1705 defined(PNG_iCCP_SUPPORTED) || defined(PNG_sPLT_SUPPORTED)
1706 /* Check that the tEXt or zTXt keyword is valid per PNG 1.0 specification,
1707 * and if invalid, correct the keyword rather than discarding the entire
1708 * chunk. The PNG 1.0 specification requires keywords 1-79 characters in
1709 * length, forbids leading or trailing whitespace, multiple internal spaces,
1710 * and the non-break space (0x80) from ISO 8859-1. Returns keyword length.
1712 * The 'new_key' buffer must be 80 characters in size (for the keyword plus a
1713 * trailing '\0'). If this routine returns 0 then there was no keyword, or a
1714 * valid one could not be generated, and the caller must png_error.
1716 png_uint_32 /* PRIVATE */
1717 png_check_keyword(png_structrp png_ptr, png_const_charp key, png_bytep new_key)
1719 #ifdef PNG_WARNINGS_SUPPORTED
1720 png_const_charp orig_key = key;
1721 #endif
1722 png_uint_32 key_len = 0;
1723 int bad_character = 0;
1724 int space = 1;
1726 png_debug(1, "in png_check_keyword");
1728 if (key == NULL)
1730 *new_key = 0;
1731 return 0;
1734 while (*key && key_len < 79)
1736 png_byte ch = (png_byte)*key++;
1738 if ((ch > 32 && ch <= 126) || (ch >= 161 /*&& ch <= 255*/))
1740 *new_key++ = ch; ++key_len; space = 0;
1743 else if (space == 0)
1745 /* A space or an invalid character when one wasn't seen immediately
1746 * before; output just a space.
1748 *new_key++ = 32; ++key_len; space = 1;
1750 /* If the character was not a space then it is invalid. */
1751 if (ch != 32)
1752 bad_character = ch;
1755 else if (bad_character == 0)
1756 bad_character = ch; /* just skip it, record the first error */
1759 if (key_len > 0 && space != 0) /* trailing space */
1761 --key_len; --new_key;
1762 if (bad_character == 0)
1763 bad_character = 32;
1766 /* Terminate the keyword */
1767 *new_key = 0;
1769 if (key_len == 0)
1770 return 0;
1772 #ifdef PNG_WARNINGS_SUPPORTED
1773 /* Try to only output one warning per keyword: */
1774 if (*key != 0) /* keyword too long */
1775 png_warning(png_ptr, "keyword truncated");
1777 else if (bad_character != 0)
1779 PNG_WARNING_PARAMETERS(p)
1781 png_warning_parameter(p, 1, orig_key);
1782 png_warning_parameter_signed(p, 2, PNG_NUMBER_FORMAT_02x, bad_character);
1784 png_formatted_warning(png_ptr, p, "keyword \"@1\": bad character '0x@2'");
1786 #else /* !WARNINGS */
1787 PNG_UNUSED(png_ptr)
1788 #endif /* !WARNINGS */
1790 return key_len;
1792 #endif /* TEXT || pCAL || iCCP || sPLT */
1793 #endif /* READ || WRITE */