2 /* pngset.c - storage of image information into info struct
4 * Last changed in libpng 1.5.1 [February 3, 2011]
5 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 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.
21 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
23 #ifdef PNG_bKGD_SUPPORTED
25 png_set_bKGD(png_structp png_ptr
, png_infop 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
)
33 png_memcpy(&(info_ptr
->background
), background
, png_sizeof(png_color_16
));
34 info_ptr
->valid
|= PNG_INFO_bKGD
;
38 #ifdef PNG_cHRM_SUPPORTED
40 png_set_cHRM_fixed(png_structp png_ptr
, png_infop 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_debug1(1, "in %s storage function", "cHRM fixed");
47 if (png_ptr
== NULL
|| info_ptr
== NULL
)
50 # ifdef PNG_CHECK_cHRM_SUPPORTED
51 if (png_check_cHRM_fixed(png_ptr
,
52 white_x
, white_y
, red_x
, red_y
, green_x
, green_y
, blue_x
, blue_y
))
55 info_ptr
->x_white
= white_x
;
56 info_ptr
->y_white
= white_y
;
57 info_ptr
->x_red
= red_x
;
58 info_ptr
->y_red
= red_y
;
59 info_ptr
->x_green
= green_x
;
60 info_ptr
->y_green
= green_y
;
61 info_ptr
->x_blue
= blue_x
;
62 info_ptr
->y_blue
= blue_y
;
63 info_ptr
->valid
|= PNG_INFO_cHRM
;
67 # ifdef PNG_FLOATING_POINT_SUPPORTED
69 png_set_cHRM(png_structp png_ptr
, png_infop info_ptr
,
70 double white_x
, double white_y
, double red_x
, double red_y
,
71 double green_x
, double green_y
, double blue_x
, double blue_y
)
73 png_set_cHRM_fixed(png_ptr
, info_ptr
,
74 png_fixed(png_ptr
, white_x
, "cHRM White X"),
75 png_fixed(png_ptr
, white_y
, "cHRM White Y"),
76 png_fixed(png_ptr
, red_x
, "cHRM Red X"),
77 png_fixed(png_ptr
, red_y
, "cHRM Red Y"),
78 png_fixed(png_ptr
, green_x
, "cHRM Green X"),
79 png_fixed(png_ptr
, green_y
, "cHRM Green Y"),
80 png_fixed(png_ptr
, blue_x
, "cHRM Blue X"),
81 png_fixed(png_ptr
, blue_y
, "cHRM Blue Y"));
83 # endif /* PNG_FLOATING_POINT_SUPPORTED */
85 #endif /* PNG_cHRM_SUPPORTED */
87 #ifdef PNG_gAMA_SUPPORTED
89 png_set_gAMA_fixed(png_structp png_ptr
, png_infop info_ptr
, png_fixed_point
92 png_debug1(1, "in %s storage function", "gAMA");
94 if (png_ptr
== NULL
|| info_ptr
== NULL
)
97 /* Previously these values were limited, however they must be
98 * wrong, therefore storing them (and setting PNG_INFO_gAMA)
101 if (file_gamma
> (png_fixed_point
)PNG_UINT_31_MAX
)
102 png_warning(png_ptr
, "Gamma too large, ignored");
104 else if (file_gamma
<= 0)
105 png_warning(png_ptr
, "Negative or zero gamma ignored");
109 info_ptr
->gamma
= file_gamma
;
110 info_ptr
->valid
|= PNG_INFO_gAMA
;
114 # ifdef PNG_FLOATING_POINT_SUPPORTED
116 png_set_gAMA(png_structp png_ptr
, png_infop info_ptr
, double file_gamma
)
118 png_set_gAMA_fixed(png_ptr
, info_ptr
, png_fixed(png_ptr
, file_gamma
,
124 #ifdef PNG_hIST_SUPPORTED
126 png_set_hIST(png_structp png_ptr
, png_infop info_ptr
, png_const_uint_16p hist
)
130 png_debug1(1, "in %s storage function", "hIST");
132 if (png_ptr
== NULL
|| info_ptr
== NULL
)
135 if (info_ptr
->num_palette
== 0 || info_ptr
->num_palette
136 > PNG_MAX_PALETTE_LENGTH
)
139 "Invalid palette size, hIST allocation skipped");
144 png_free_data(png_ptr
, info_ptr
, PNG_FREE_HIST
, 0);
146 /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
149 png_ptr
->hist
= (png_uint_16p
)png_malloc_warn(png_ptr
,
150 PNG_MAX_PALETTE_LENGTH
* png_sizeof(png_uint_16
));
152 if (png_ptr
->hist
== NULL
)
154 png_warning(png_ptr
, "Insufficient memory for hIST chunk data");
158 for (i
= 0; i
< info_ptr
->num_palette
; i
++)
159 png_ptr
->hist
[i
] = hist
[i
];
161 info_ptr
->hist
= png_ptr
->hist
;
162 info_ptr
->valid
|= PNG_INFO_hIST
;
163 info_ptr
->free_me
|= PNG_FREE_HIST
;
168 png_set_IHDR(png_structp png_ptr
, png_infop info_ptr
,
169 png_uint_32 width
, png_uint_32 height
, int bit_depth
,
170 int color_type
, int interlace_type
, int compression_type
,
173 png_debug1(1, "in %s storage function", "IHDR");
175 if (png_ptr
== NULL
|| info_ptr
== NULL
)
178 info_ptr
->width
= width
;
179 info_ptr
->height
= height
;
180 info_ptr
->bit_depth
= (png_byte
)bit_depth
;
181 info_ptr
->color_type
= (png_byte
)color_type
;
182 info_ptr
->compression_type
= (png_byte
)compression_type
;
183 info_ptr
->filter_type
= (png_byte
)filter_type
;
184 info_ptr
->interlace_type
= (png_byte
)interlace_type
;
186 png_check_IHDR (png_ptr
, info_ptr
->width
, info_ptr
->height
,
187 info_ptr
->bit_depth
, info_ptr
->color_type
, info_ptr
->interlace_type
,
188 info_ptr
->compression_type
, info_ptr
->filter_type
);
190 if (info_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
191 info_ptr
->channels
= 1;
193 else if (info_ptr
->color_type
& PNG_COLOR_MASK_COLOR
)
194 info_ptr
->channels
= 3;
197 info_ptr
->channels
= 1;
199 if (info_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
)
200 info_ptr
->channels
++;
202 info_ptr
->pixel_depth
= (png_byte
)(info_ptr
->channels
* info_ptr
->bit_depth
);
204 /* Check for potential overflow */
206 (PNG_UINT_32_MAX
>> 3) /* 8-byte RRGGBBAA pixels */
207 - 48 /* bigrowbuf hack */
208 - 1 /* filter byte */
209 - 7*8 /* rounding of width to multiple of 8 pixels */
210 - 8) /* extra max_pixel_depth pad */
211 info_ptr
->rowbytes
= 0;
213 info_ptr
->rowbytes
= PNG_ROWBYTES(info_ptr
->pixel_depth
, width
);
216 #ifdef PNG_oFFs_SUPPORTED
218 png_set_oFFs(png_structp png_ptr
, png_infop info_ptr
,
219 png_int_32 offset_x
, png_int_32 offset_y
, int unit_type
)
221 png_debug1(1, "in %s storage function", "oFFs");
223 if (png_ptr
== NULL
|| info_ptr
== NULL
)
226 info_ptr
->x_offset
= offset_x
;
227 info_ptr
->y_offset
= offset_y
;
228 info_ptr
->offset_unit_type
= (png_byte
)unit_type
;
229 info_ptr
->valid
|= PNG_INFO_oFFs
;
233 #ifdef PNG_pCAL_SUPPORTED
235 png_set_pCAL(png_structp png_ptr
, png_infop info_ptr
,
236 png_const_charp purpose
, png_int_32 X0
, png_int_32 X1
, int type
,
237 int nparams
, png_const_charp units
, png_charpp params
)
242 png_debug1(1, "in %s storage function", "pCAL");
244 if (png_ptr
== NULL
|| info_ptr
== NULL
)
247 length
= png_strlen(purpose
) + 1;
248 png_debug1(3, "allocating purpose for info (%lu bytes)",
249 (unsigned long)length
);
251 /* TODO: validate format of calibration name and unit name */
253 /* Check that the type matches the specification. */
254 if (type
< 0 || type
> 3)
255 png_error(png_ptr
, "Invalid pCAL equation type");
257 /* Validate params[nparams] */
258 for (i
=0; i
<nparams
; ++i
)
259 if (!png_check_fp_string(params
[i
], png_strlen(params
[i
])))
260 png_error(png_ptr
, "Invalid format for pCAL parameter");
262 info_ptr
->pcal_purpose
= (png_charp
)png_malloc_warn(png_ptr
, length
);
264 if (info_ptr
->pcal_purpose
== NULL
)
266 png_warning(png_ptr
, "Insufficient memory for pCAL purpose");
270 png_memcpy(info_ptr
->pcal_purpose
, purpose
, length
);
272 png_debug(3, "storing X0, X1, type, and nparams in info");
273 info_ptr
->pcal_X0
= X0
;
274 info_ptr
->pcal_X1
= X1
;
275 info_ptr
->pcal_type
= (png_byte
)type
;
276 info_ptr
->pcal_nparams
= (png_byte
)nparams
;
278 length
= png_strlen(units
) + 1;
279 png_debug1(3, "allocating units for info (%lu bytes)",
280 (unsigned long)length
);
282 info_ptr
->pcal_units
= (png_charp
)png_malloc_warn(png_ptr
, length
);
284 if (info_ptr
->pcal_units
== NULL
)
286 png_warning(png_ptr
, "Insufficient memory for pCAL units");
290 png_memcpy(info_ptr
->pcal_units
, units
, length
);
292 info_ptr
->pcal_params
= (png_charpp
)png_malloc_warn(png_ptr
,
293 (png_size_t
)((nparams
+ 1) * png_sizeof(png_charp
)));
295 if (info_ptr
->pcal_params
== NULL
)
297 png_warning(png_ptr
, "Insufficient memory for pCAL params");
301 png_memset(info_ptr
->pcal_params
, 0, (nparams
+ 1) * png_sizeof(png_charp
));
303 for (i
= 0; i
< nparams
; i
++)
305 length
= png_strlen(params
[i
]) + 1;
306 png_debug2(3, "allocating parameter %d for info (%lu bytes)", i
,
307 (unsigned long)length
);
309 info_ptr
->pcal_params
[i
] = (png_charp
)png_malloc_warn(png_ptr
, length
);
311 if (info_ptr
->pcal_params
[i
] == NULL
)
313 png_warning(png_ptr
, "Insufficient memory for pCAL parameter");
317 png_memcpy(info_ptr
->pcal_params
[i
], params
[i
], length
);
320 info_ptr
->valid
|= PNG_INFO_pCAL
;
321 info_ptr
->free_me
|= PNG_FREE_PCAL
;
325 #ifdef PNG_sCAL_SUPPORTED
327 png_set_sCAL_s(png_structp png_ptr
, png_infop info_ptr
,
328 int unit
, png_const_charp swidth
, png_const_charp sheight
)
330 png_size_t lengthw
= 0, lengthh
= 0;
332 png_debug1(1, "in %s storage function", "sCAL");
334 if (png_ptr
== NULL
|| info_ptr
== NULL
)
337 /* Double check the unit (should never get here with an invalid
338 * unit unless this is an API call.)
340 if (unit
!= 1 && unit
!= 2)
341 png_error(png_ptr
, "Invalid sCAL unit");
343 if (swidth
== NULL
|| (lengthw
= png_strlen(swidth
)) <= 0 ||
344 swidth
[0] == 45 /*'-'*/ || !png_check_fp_string(swidth
, lengthw
))
345 png_error(png_ptr
, "Invalid sCAL width");
347 if (sheight
== NULL
|| (lengthh
= png_strlen(sheight
)) <= 0 ||
348 sheight
[0] == 45 /*'-'*/ || !png_check_fp_string(sheight
, lengthh
))
349 png_error(png_ptr
, "Invalid sCAL height");
351 info_ptr
->scal_unit
= (png_byte
)unit
;
355 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthw
);
357 info_ptr
->scal_s_width
= (png_charp
)png_malloc_warn(png_ptr
, lengthw
);
359 if (info_ptr
->scal_s_width
== NULL
)
361 png_warning(png_ptr
, "Memory allocation failed while processing sCAL");
365 png_memcpy(info_ptr
->scal_s_width
, swidth
, lengthw
);
369 png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthh
);
371 info_ptr
->scal_s_height
= (png_charp
)png_malloc_warn(png_ptr
, lengthh
);
373 if (info_ptr
->scal_s_height
== NULL
)
375 png_free (png_ptr
, info_ptr
->scal_s_width
);
376 info_ptr
->scal_s_width
= NULL
;
378 png_warning(png_ptr
, "Memory allocation failed while processing sCAL");
382 png_memcpy(info_ptr
->scal_s_height
, sheight
, lengthh
);
384 info_ptr
->valid
|= PNG_INFO_sCAL
;
385 info_ptr
->free_me
|= PNG_FREE_SCAL
;
388 # ifdef PNG_FLOATING_POINT_SUPPORTED
390 png_set_sCAL(png_structp png_ptr
, png_infop info_ptr
, int unit
, double width
,
393 png_debug1(1, "in %s storage function", "sCAL");
395 /* Check the arguments. */
397 png_warning(png_ptr
, "Invalid sCAL width ignored");
399 else if (height
<= 0)
400 png_warning(png_ptr
, "Invalid sCAL height ignored");
404 /* Convert 'width' and 'height' to ASCII. */
405 char swidth
[PNG_sCAL_MAX_DIGITS
+1];
406 char sheight
[PNG_sCAL_MAX_DIGITS
+1];
408 png_ascii_from_fp(png_ptr
, swidth
, sizeof swidth
, width
,
410 png_ascii_from_fp(png_ptr
, sheight
, sizeof sheight
, height
,
413 png_set_sCAL_s(png_ptr
, info_ptr
, unit
, swidth
, sheight
);
418 # ifdef PNG_FIXED_POINT_SUPPORTED
420 png_set_sCAL_fixed(png_structp png_ptr
, png_infop info_ptr
, int unit
,
421 png_fixed_point width
, png_fixed_point height
)
423 png_debug1(1, "in %s storage function", "sCAL");
425 /* Check the arguments. */
427 png_warning(png_ptr
, "Invalid sCAL width ignored");
429 else if (height
<= 0)
430 png_warning(png_ptr
, "Invalid sCAL height ignored");
434 /* Convert 'width' and 'height' to ASCII. */
435 char swidth
[PNG_sCAL_MAX_DIGITS
+1];
436 char sheight
[PNG_sCAL_MAX_DIGITS
+1];
438 png_ascii_from_fixed(png_ptr
, swidth
, sizeof swidth
, width
);
439 png_ascii_from_fixed(png_ptr
, sheight
, sizeof sheight
, height
);
441 png_set_sCAL_s(png_ptr
, info_ptr
, unit
, swidth
, sheight
);
447 #ifdef PNG_pHYs_SUPPORTED
449 png_set_pHYs(png_structp png_ptr
, png_infop info_ptr
,
450 png_uint_32 res_x
, png_uint_32 res_y
, int unit_type
)
452 png_debug1(1, "in %s storage function", "pHYs");
454 if (png_ptr
== NULL
|| info_ptr
== NULL
)
457 info_ptr
->x_pixels_per_unit
= res_x
;
458 info_ptr
->y_pixels_per_unit
= res_y
;
459 info_ptr
->phys_unit_type
= (png_byte
)unit_type
;
460 info_ptr
->valid
|= PNG_INFO_pHYs
;
465 png_set_PLTE(png_structp png_ptr
, png_infop info_ptr
,
466 png_const_colorp palette
, int num_palette
)
469 png_debug1(1, "in %s storage function", "PLTE");
471 if (png_ptr
== NULL
|| info_ptr
== NULL
)
474 if (num_palette
< 0 || num_palette
> PNG_MAX_PALETTE_LENGTH
)
476 if (info_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
477 png_error(png_ptr
, "Invalid palette length");
481 png_warning(png_ptr
, "Invalid palette length");
486 /* It may not actually be necessary to set png_ptr->palette here;
487 * we do it for backward compatibility with the way the png_handle_tRNS
488 * function used to do the allocation.
490 png_free_data(png_ptr
, info_ptr
, PNG_FREE_PLTE
, 0);
492 /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
493 * of num_palette entries, in case of an invalid PNG file that has
494 * too-large sample values.
496 png_ptr
->palette
= (png_colorp
)png_calloc(png_ptr
,
497 PNG_MAX_PALETTE_LENGTH
* png_sizeof(png_color
));
499 png_memcpy(png_ptr
->palette
, palette
, num_palette
* png_sizeof(png_color
));
500 info_ptr
->palette
= png_ptr
->palette
;
501 info_ptr
->num_palette
= png_ptr
->num_palette
= (png_uint_16
)num_palette
;
503 info_ptr
->free_me
|= PNG_FREE_PLTE
;
505 info_ptr
->valid
|= PNG_INFO_PLTE
;
508 #ifdef PNG_sBIT_SUPPORTED
510 png_set_sBIT(png_structp png_ptr
, png_infop info_ptr
,
511 png_const_color_8p sig_bit
)
513 png_debug1(1, "in %s storage function", "sBIT");
515 if (png_ptr
== NULL
|| info_ptr
== NULL
)
518 png_memcpy(&(info_ptr
->sig_bit
), sig_bit
, png_sizeof(png_color_8
));
519 info_ptr
->valid
|= PNG_INFO_sBIT
;
523 #ifdef PNG_sRGB_SUPPORTED
525 png_set_sRGB(png_structp png_ptr
, png_infop info_ptr
, int srgb_intent
)
527 png_debug1(1, "in %s storage function", "sRGB");
529 if (png_ptr
== NULL
|| info_ptr
== NULL
)
532 info_ptr
->srgb_intent
= (png_byte
)srgb_intent
;
533 info_ptr
->valid
|= PNG_INFO_sRGB
;
537 png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr
, png_infop info_ptr
,
540 png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
542 if (png_ptr
== NULL
|| info_ptr
== NULL
)
545 png_set_sRGB(png_ptr
, info_ptr
, srgb_intent
);
547 # ifdef PNG_gAMA_SUPPORTED
548 png_set_gAMA_fixed(png_ptr
, info_ptr
, 45455L);
551 # ifdef PNG_cHRM_SUPPORTED
552 png_set_cHRM_fixed(png_ptr
, info_ptr
,
554 /* white */ 31270L, 32900L,
555 /* red */ 64000L, 33000L,
556 /* green */ 30000L, 60000L,
557 /* blue */ 15000L, 6000L
564 #ifdef PNG_iCCP_SUPPORTED
566 png_set_iCCP(png_structp png_ptr
, png_infop info_ptr
,
567 png_const_charp name
, int compression_type
,
568 png_const_bytep profile
, png_uint_32 proflen
)
570 png_charp new_iccp_name
;
571 png_bytep new_iccp_profile
;
574 png_debug1(1, "in %s storage function", "iCCP");
576 if (png_ptr
== NULL
|| info_ptr
== NULL
|| name
== NULL
|| profile
== NULL
)
579 length
= png_strlen(name
)+1;
580 new_iccp_name
= (png_charp
)png_malloc_warn(png_ptr
, length
);
582 if (new_iccp_name
== NULL
)
584 png_warning(png_ptr
, "Insufficient memory to process iCCP chunk");
588 png_memcpy(new_iccp_name
, name
, length
);
589 new_iccp_profile
= (png_bytep
)png_malloc_warn(png_ptr
, proflen
);
591 if (new_iccp_profile
== NULL
)
593 png_free (png_ptr
, new_iccp_name
);
595 "Insufficient memory to process iCCP profile");
599 png_memcpy(new_iccp_profile
, profile
, (png_size_t
)proflen
);
601 png_free_data(png_ptr
, info_ptr
, PNG_FREE_ICCP
, 0);
603 info_ptr
->iccp_proflen
= proflen
;
604 info_ptr
->iccp_name
= new_iccp_name
;
605 info_ptr
->iccp_profile
= new_iccp_profile
;
606 /* Compression is always zero but is here so the API and info structure
607 * does not have to change if we introduce multiple compression types
609 info_ptr
->iccp_compression
= (png_byte
)compression_type
;
610 info_ptr
->free_me
|= PNG_FREE_ICCP
;
611 info_ptr
->valid
|= PNG_INFO_iCCP
;
615 #ifdef PNG_TEXT_SUPPORTED
617 png_set_text(png_structp png_ptr
, png_infop info_ptr
, png_const_textp text_ptr
,
621 ret
= png_set_text_2(png_ptr
, info_ptr
, text_ptr
, num_text
);
624 png_error(png_ptr
, "Insufficient memory to store text");
628 png_set_text_2(png_structp png_ptr
, png_infop info_ptr
,
629 png_const_textp text_ptr
, int num_text
)
633 png_debug1(1, "in %s storage function", ((png_ptr
== NULL
||
634 png_ptr
->chunk_name
[0] == '\0') ?
635 "text" : (png_const_charp
)png_ptr
->chunk_name
));
637 if (png_ptr
== NULL
|| info_ptr
== NULL
|| num_text
== 0)
640 /* Make sure we have enough space in the "text" array in info_struct
641 * to hold all of the incoming text_ptr objects.
643 if (info_ptr
->num_text
+ num_text
> info_ptr
->max_text
)
645 if (info_ptr
->text
!= NULL
)
650 old_max
= info_ptr
->max_text
;
651 info_ptr
->max_text
= info_ptr
->num_text
+ num_text
+ 8;
652 old_text
= info_ptr
->text
;
653 info_ptr
->text
= (png_textp
)png_malloc_warn(png_ptr
,
654 (png_size_t
)(info_ptr
->max_text
* png_sizeof(png_text
)));
656 if (info_ptr
->text
== NULL
)
658 png_free(png_ptr
, old_text
);
662 png_memcpy(info_ptr
->text
, old_text
, (png_size_t
)(old_max
*
663 png_sizeof(png_text
)));
664 png_free(png_ptr
, old_text
);
669 info_ptr
->max_text
= num_text
+ 8;
670 info_ptr
->num_text
= 0;
671 info_ptr
->text
= (png_textp
)png_malloc_warn(png_ptr
,
672 (png_size_t
)(info_ptr
->max_text
* png_sizeof(png_text
)));
673 if (info_ptr
->text
== NULL
)
675 info_ptr
->free_me
|= PNG_FREE_TEXT
;
678 png_debug1(3, "allocated %d entries for info_ptr->text",
681 for (i
= 0; i
< num_text
; i
++)
683 png_size_t text_length
, key_len
;
684 png_size_t lang_len
, lang_key_len
;
685 png_textp textp
= &(info_ptr
->text
[info_ptr
->num_text
]);
687 if (text_ptr
[i
].key
== NULL
)
690 if (text_ptr
[i
].compression
< PNG_TEXT_COMPRESSION_NONE
||
691 text_ptr
[i
].compression
>= PNG_TEXT_COMPRESSION_LAST
)
693 png_warning(png_ptr
, "text compression mode is out of range");
697 key_len
= png_strlen(text_ptr
[i
].key
);
699 if (text_ptr
[i
].compression
<= 0)
706 # ifdef PNG_iTXt_SUPPORTED
710 if (text_ptr
[i
].lang
!= NULL
)
711 lang_len
= png_strlen(text_ptr
[i
].lang
);
716 if (text_ptr
[i
].lang_key
!= NULL
)
717 lang_key_len
= png_strlen(text_ptr
[i
].lang_key
);
722 # else /* PNG_iTXt_SUPPORTED */
724 png_warning(png_ptr
, "iTXt chunk not supported");
729 if (text_ptr
[i
].text
== NULL
|| text_ptr
[i
].text
[0] == '\0')
732 # ifdef PNG_iTXt_SUPPORTED
733 if (text_ptr
[i
].compression
> 0)
734 textp
->compression
= PNG_ITXT_COMPRESSION_NONE
;
738 textp
->compression
= PNG_TEXT_COMPRESSION_NONE
;
743 text_length
= png_strlen(text_ptr
[i
].text
);
744 textp
->compression
= text_ptr
[i
].compression
;
747 textp
->key
= (png_charp
)png_malloc_warn(png_ptr
,
749 (key_len
+ text_length
+ lang_len
+ lang_key_len
+ 4));
751 if (textp
->key
== NULL
)
754 png_debug2(2, "Allocated %lu bytes at %p in png_set_text",
755 (unsigned long)(png_uint_32
)
756 (key_len
+ lang_len
+ lang_key_len
+ text_length
+ 4),
759 png_memcpy(textp
->key
, text_ptr
[i
].key
,(png_size_t
)(key_len
));
760 *(textp
->key
+ key_len
) = '\0';
762 if (text_ptr
[i
].compression
> 0)
764 textp
->lang
= textp
->key
+ key_len
+ 1;
765 png_memcpy(textp
->lang
, text_ptr
[i
].lang
, lang_len
);
766 *(textp
->lang
+ lang_len
) = '\0';
767 textp
->lang_key
= textp
->lang
+ lang_len
+ 1;
768 png_memcpy(textp
->lang_key
, text_ptr
[i
].lang_key
, lang_key_len
);
769 *(textp
->lang_key
+ lang_key_len
) = '\0';
770 textp
->text
= textp
->lang_key
+ lang_key_len
+ 1;
776 textp
->lang_key
=NULL
;
777 textp
->text
= textp
->key
+ key_len
+ 1;
781 png_memcpy(textp
->text
, text_ptr
[i
].text
,
782 (png_size_t
)(text_length
));
784 *(textp
->text
+ text_length
) = '\0';
786 # ifdef PNG_iTXt_SUPPORTED
787 if (textp
->compression
> 0)
789 textp
->text_length
= 0;
790 textp
->itxt_length
= text_length
;
796 textp
->text_length
= text_length
;
797 textp
->itxt_length
= 0;
800 info_ptr
->num_text
++;
801 png_debug1(3, "transferred text chunk %d", info_ptr
->num_text
);
807 #ifdef PNG_tIME_SUPPORTED
809 png_set_tIME(png_structp png_ptr
, png_infop info_ptr
, png_const_timep mod_time
)
811 png_debug1(1, "in %s storage function", "tIME");
813 if (png_ptr
== NULL
|| info_ptr
== NULL
||
814 (png_ptr
->mode
& PNG_WROTE_tIME
))
817 png_memcpy(&(info_ptr
->mod_time
), mod_time
, png_sizeof(png_time
));
818 info_ptr
->valid
|= PNG_INFO_tIME
;
822 #ifdef PNG_tRNS_SUPPORTED
824 png_set_tRNS(png_structp png_ptr
, png_infop info_ptr
,
825 png_const_bytep trans_alpha
, int num_trans
, png_const_color_16p trans_color
)
827 png_debug1(1, "in %s storage function", "tRNS");
829 if (png_ptr
== NULL
|| info_ptr
== NULL
)
832 if (trans_alpha
!= NULL
)
834 /* It may not actually be necessary to set png_ptr->trans_alpha here;
835 * we do it for backward compatibility with the way the png_handle_tRNS
836 * function used to do the allocation.
839 png_free_data(png_ptr
, info_ptr
, PNG_FREE_TRNS
, 0);
841 /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
842 png_ptr
->trans_alpha
= info_ptr
->trans_alpha
=
843 (png_bytep
)png_malloc(png_ptr
, (png_size_t
)PNG_MAX_PALETTE_LENGTH
);
845 if (num_trans
> 0 && num_trans
<= PNG_MAX_PALETTE_LENGTH
)
846 png_memcpy(info_ptr
->trans_alpha
, trans_alpha
, (png_size_t
)num_trans
);
849 if (trans_color
!= NULL
)
851 int sample_max
= (1 << info_ptr
->bit_depth
);
853 if ((info_ptr
->color_type
== PNG_COLOR_TYPE_GRAY
&&
854 (int)trans_color
->gray
> sample_max
) ||
855 (info_ptr
->color_type
== PNG_COLOR_TYPE_RGB
&&
856 ((int)trans_color
->red
> sample_max
||
857 (int)trans_color
->green
> sample_max
||
858 (int)trans_color
->blue
> sample_max
)))
860 "tRNS chunk has out-of-range samples for bit_depth");
862 png_memcpy(&(info_ptr
->trans_color
), trans_color
,
863 png_sizeof(png_color_16
));
869 info_ptr
->num_trans
= (png_uint_16
)num_trans
;
873 info_ptr
->valid
|= PNG_INFO_tRNS
;
874 info_ptr
->free_me
|= PNG_FREE_TRNS
;
879 #ifdef PNG_sPLT_SUPPORTED
881 png_set_sPLT(png_structp png_ptr
,
882 png_infop info_ptr
, png_const_sPLT_tp entries
, int nentries
)
884 * entries - array of png_sPLT_t structures
885 * to be added to the list of palettes
886 * in the info structure.
888 * nentries - number of palette structures to be
895 if (png_ptr
== NULL
|| info_ptr
== NULL
)
898 np
= (png_sPLT_tp
)png_malloc_warn(png_ptr
,
899 (info_ptr
->splt_palettes_num
+ nentries
) *
900 (png_size_t
)png_sizeof(png_sPLT_t
));
904 png_warning(png_ptr
, "No memory for sPLT palettes");
908 png_memcpy(np
, info_ptr
->splt_palettes
,
909 info_ptr
->splt_palettes_num
* png_sizeof(png_sPLT_t
));
911 png_free(png_ptr
, info_ptr
->splt_palettes
);
912 info_ptr
->splt_palettes
=NULL
;
914 for (i
= 0; i
< nentries
; i
++)
916 png_sPLT_tp to
= np
+ info_ptr
->splt_palettes_num
+ i
;
917 png_const_sPLT_tp from
= entries
+ i
;
920 length
= png_strlen(from
->name
) + 1;
921 to
->name
= (png_charp
)png_malloc_warn(png_ptr
, (png_size_t
)length
);
923 if (to
->name
== NULL
)
926 "Out of memory while processing sPLT chunk");
930 png_memcpy(to
->name
, from
->name
, length
);
931 to
->entries
= (png_sPLT_entryp
)png_malloc_warn(png_ptr
,
932 (png_size_t
)(from
->nentries
* png_sizeof(png_sPLT_entry
)));
934 if (to
->entries
== NULL
)
937 "Out of memory while processing sPLT chunk");
938 png_free(png_ptr
, to
->name
);
943 png_memcpy(to
->entries
, from
->entries
,
944 from
->nentries
* png_sizeof(png_sPLT_entry
));
946 to
->nentries
= from
->nentries
;
947 to
->depth
= from
->depth
;
950 info_ptr
->splt_palettes
= np
;
951 info_ptr
->splt_palettes_num
+= nentries
;
952 info_ptr
->valid
|= PNG_INFO_sPLT
;
953 info_ptr
->free_me
|= PNG_FREE_SPLT
;
955 #endif /* PNG_sPLT_SUPPORTED */
957 #ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
959 png_set_unknown_chunks(png_structp png_ptr
,
960 png_infop info_ptr
, png_const_unknown_chunkp unknowns
, int num_unknowns
)
962 png_unknown_chunkp np
;
965 if (png_ptr
== NULL
|| info_ptr
== NULL
|| num_unknowns
== 0)
968 np
= (png_unknown_chunkp
)png_malloc_warn(png_ptr
,
969 (png_size_t
)(info_ptr
->unknown_chunks_num
+ num_unknowns
) *
970 png_sizeof(png_unknown_chunk
));
975 "Out of memory while processing unknown chunk");
979 png_memcpy(np
, info_ptr
->unknown_chunks
,
980 (png_size_t
)info_ptr
->unknown_chunks_num
*
981 png_sizeof(png_unknown_chunk
));
983 png_free(png_ptr
, info_ptr
->unknown_chunks
);
984 info_ptr
->unknown_chunks
= NULL
;
986 for (i
= 0; i
< num_unknowns
; i
++)
988 png_unknown_chunkp to
= np
+ info_ptr
->unknown_chunks_num
+ i
;
989 png_const_unknown_chunkp from
= unknowns
+ i
;
991 png_memcpy(to
->name
, from
->name
, png_sizeof(from
->name
));
992 to
->name
[png_sizeof(to
->name
)-1] = '\0';
993 to
->size
= from
->size
;
995 /* Note our location in the read or write sequence */
996 to
->location
= (png_byte
)(png_ptr
->mode
& 0xff);
1003 to
->data
= (png_bytep
)png_malloc_warn(png_ptr
,
1004 (png_size_t
)from
->size
);
1006 if (to
->data
== NULL
)
1008 png_warning(png_ptr
,
1009 "Out of memory while processing unknown chunk");
1014 png_memcpy(to
->data
, from
->data
, from
->size
);
1018 info_ptr
->unknown_chunks
= np
;
1019 info_ptr
->unknown_chunks_num
+= num_unknowns
;
1020 info_ptr
->free_me
|= PNG_FREE_UNKN
;
1024 png_set_unknown_chunk_location(png_structp png_ptr
, png_infop info_ptr
,
1025 int chunk
, int location
)
1027 if (png_ptr
!= NULL
&& info_ptr
!= NULL
&& chunk
>= 0 && chunk
<
1028 info_ptr
->unknown_chunks_num
)
1029 info_ptr
->unknown_chunks
[chunk
].location
= (png_byte
)location
;
1034 #ifdef PNG_MNG_FEATURES_SUPPORTED
1036 png_permit_mng_features (png_structp png_ptr
, png_uint_32 mng_features
)
1038 png_debug(1, "in png_permit_mng_features");
1040 if (png_ptr
== NULL
)
1041 return (png_uint_32
)0;
1043 png_ptr
->mng_features_permitted
=
1044 (png_byte
)(mng_features
& PNG_ALL_MNG_FEATURES
);
1046 return (png_uint_32
)png_ptr
->mng_features_permitted
;
1050 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
1052 png_set_keep_unknown_chunks(png_structp png_ptr
, int keep
, png_const_bytep
1053 chunk_list
, int num_chunks
)
1055 png_bytep new_list
, p
;
1056 int i
, old_num_chunks
;
1057 if (png_ptr
== NULL
)
1060 if (num_chunks
== 0)
1062 if (keep
== PNG_HANDLE_CHUNK_ALWAYS
|| keep
== PNG_HANDLE_CHUNK_IF_SAFE
)
1063 png_ptr
->flags
|= PNG_FLAG_KEEP_UNKNOWN_CHUNKS
;
1066 png_ptr
->flags
&= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS
;
1068 if (keep
== PNG_HANDLE_CHUNK_ALWAYS
)
1069 png_ptr
->flags
|= PNG_FLAG_KEEP_UNSAFE_CHUNKS
;
1072 png_ptr
->flags
&= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS
;
1077 if (chunk_list
== NULL
)
1080 old_num_chunks
= png_ptr
->num_chunk_list
;
1081 new_list
=(png_bytep
)png_malloc(png_ptr
,
1082 (png_size_t
)(5*(num_chunks
+ old_num_chunks
)));
1084 if (png_ptr
->chunk_list
!= NULL
)
1086 png_memcpy(new_list
, png_ptr
->chunk_list
,
1087 (png_size_t
)(5*old_num_chunks
));
1088 png_free(png_ptr
, png_ptr
->chunk_list
);
1089 png_ptr
->chunk_list
=NULL
;
1092 png_memcpy(new_list
+ 5*old_num_chunks
, chunk_list
,
1093 (png_size_t
)(5*num_chunks
));
1095 for (p
= new_list
+ 5*old_num_chunks
+ 4, i
= 0; i
<num_chunks
; i
++, p
+= 5)
1098 png_ptr
->num_chunk_list
= old_num_chunks
+ num_chunks
;
1099 png_ptr
->chunk_list
= new_list
;
1100 png_ptr
->free_me
|= PNG_FREE_LIST
;
1104 #ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1106 png_set_read_user_chunk_fn(png_structp png_ptr
, png_voidp user_chunk_ptr
,
1107 png_user_chunk_ptr read_user_chunk_fn
)
1109 png_debug(1, "in png_set_read_user_chunk_fn");
1111 if (png_ptr
== NULL
)
1114 png_ptr
->read_user_chunk_fn
= read_user_chunk_fn
;
1115 png_ptr
->user_chunk_ptr
= user_chunk_ptr
;
1119 #ifdef PNG_INFO_IMAGE_SUPPORTED
1121 png_set_rows(png_structp png_ptr
, png_infop info_ptr
, png_bytepp row_pointers
)
1123 png_debug1(1, "in %s storage function", "rows");
1125 if (png_ptr
== NULL
|| info_ptr
== NULL
)
1128 if (info_ptr
->row_pointers
&& (info_ptr
->row_pointers
!= row_pointers
))
1129 png_free_data(png_ptr
, info_ptr
, PNG_FREE_ROWS
, 0);
1131 info_ptr
->row_pointers
= row_pointers
;
1134 info_ptr
->valid
|= PNG_INFO_IDAT
;
1139 png_set_compression_buffer_size(png_structp png_ptr
, png_size_t size
)
1141 if (png_ptr
== NULL
)
1144 png_free(png_ptr
, png_ptr
->zbuf
);
1146 if (size
> ZLIB_IO_MAX
)
1148 png_warning(png_ptr
, "Attempt to set buffer size beyond max ignored");
1149 png_ptr
->zbuf_size
= ZLIB_IO_MAX
;
1150 size
= ZLIB_IO_MAX
; /* must fit */
1154 png_ptr
->zbuf_size
= (uInt
)size
;
1156 png_ptr
->zbuf
= (png_bytep
)png_malloc(png_ptr
, size
);
1158 /* The following ensures a relatively safe failure if this gets called while
1159 * the buffer is actually in use.
1161 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
1162 png_ptr
->zstream
.avail_out
= 0;
1163 png_ptr
->zstream
.avail_in
= 0;
1167 png_set_invalid(png_structp png_ptr
, png_infop info_ptr
, int mask
)
1169 if (png_ptr
&& info_ptr
)
1170 info_ptr
->valid
&= ~mask
;
1175 #ifdef PNG_SET_USER_LIMITS_SUPPORTED
1176 /* This function was added to libpng 1.2.6 */
1178 png_set_user_limits (png_structp png_ptr
, png_uint_32 user_width_max
,
1179 png_uint_32 user_height_max
)
1181 /* Images with dimensions larger than these limits will be
1182 * rejected by png_set_IHDR(). To accept any PNG datastream
1183 * regardless of dimensions, set both limits to 0x7ffffffL.
1185 if (png_ptr
== NULL
)
1188 png_ptr
->user_width_max
= user_width_max
;
1189 png_ptr
->user_height_max
= user_height_max
;
1192 /* This function was added to libpng 1.4.0 */
1194 png_set_chunk_cache_max (png_structp png_ptr
,
1195 png_uint_32 user_chunk_cache_max
)
1198 png_ptr
->user_chunk_cache_max
= user_chunk_cache_max
;
1201 /* This function was added to libpng 1.4.1 */
1203 png_set_chunk_malloc_max (png_structp png_ptr
,
1204 png_alloc_size_t user_chunk_malloc_max
)
1207 png_ptr
->user_chunk_malloc_max
= user_chunk_malloc_max
;
1209 #endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */
1212 #ifdef PNG_BENIGN_ERRORS_SUPPORTED
1214 png_set_benign_errors(png_structp png_ptr
, int allowed
)
1216 png_debug(1, "in png_set_benign_errors");
1219 png_ptr
->flags
|= PNG_FLAG_BENIGN_ERRORS_WARN
;
1222 png_ptr
->flags
&= ~PNG_FLAG_BENIGN_ERRORS_WARN
;
1224 #endif /* PNG_BENIGN_ERRORS_SUPPORTED */
1225 #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */