2 /* pngread.c - read a PNG file
4 * Copyright (c) 2018-2019 Cosmin Truta
5 * Copyright (c) 1998-2002,2004,2006-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 * This file contains routines that an application calls directly to
14 * read a PNG file or stream.
18 #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) && defined(PNG_STDIO_SUPPORTED)
22 #ifdef PNG_READ_SUPPORTED
24 /* Create a PNG structure for reading, and allocate any memory needed. */
25 PNG_FUNCTION(png_structp
,PNGAPI
26 png_create_read_struct
,(png_const_charp user_png_ver
, png_voidp error_ptr
,
27 png_error_ptr error_fn
, png_error_ptr warn_fn
),PNG_ALLOCATED
)
29 #ifndef PNG_USER_MEM_SUPPORTED
30 png_structp png_ptr
= png_create_png_struct(user_png_ver
, error_ptr
,
31 error_fn
, warn_fn
, NULL
, NULL
, NULL
);
33 return png_create_read_struct_2(user_png_ver
, error_ptr
, error_fn
,
34 warn_fn
, NULL
, NULL
, NULL
);
37 /* Alternate create PNG structure for reading, and allocate any memory
40 PNG_FUNCTION(png_structp
,PNGAPI
41 png_create_read_struct_2
,(png_const_charp user_png_ver
, png_voidp error_ptr
,
42 png_error_ptr error_fn
, png_error_ptr warn_fn
, png_voidp mem_ptr
,
43 png_malloc_ptr malloc_fn
, png_free_ptr free_fn
),PNG_ALLOCATED
)
45 png_structp png_ptr
= png_create_png_struct(user_png_ver
, error_ptr
,
46 error_fn
, warn_fn
, mem_ptr
, malloc_fn
, free_fn
);
51 png_ptr
->mode
= PNG_IS_READ_STRUCT
;
53 /* Added in libpng-1.6.0; this can be used to detect a read structure if
54 * required (it will be zero in a write structure.)
56 # ifdef PNG_SEQUENTIAL_READ_SUPPORTED
57 png_ptr
->IDAT_read_size
= PNG_IDAT_READ_SIZE
;
60 # ifdef PNG_BENIGN_READ_ERRORS_SUPPORTED
61 png_ptr
->flags
|= PNG_FLAG_BENIGN_ERRORS_WARN
;
63 /* In stable builds only warn if an application error can be completely
66 # if PNG_RELEASE_BUILD
67 png_ptr
->flags
|= PNG_FLAG_APP_WARNINGS_WARN
;
71 /* TODO: delay this, it can be done in png_init_io (if the app doesn't
72 * do it itself) avoiding setting the default function if it is not
75 png_set_read_fn(png_ptr
, NULL
, NULL
);
82 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
83 /* Read the information before the actual image data. This has been
84 * changed in v0.90 to allow reading a file that already has the magic
85 * bytes read from the stream. You can tell libpng how many bytes have
86 * been read from the beginning of the stream (up to the maximum of 8)
87 * via png_set_sig_bytes(), and we will only check the remaining bytes
88 * here. The application can then have access to the signature bytes we
89 * read if it is determined that this isn't a valid PNG file.
92 png_read_info(png_structrp png_ptr
, png_inforp info_ptr
)
94 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
98 png_debug(1, "in png_read_info");
100 if (png_ptr
== NULL
|| info_ptr
== NULL
)
103 /* Read and check the PNG file signature. */
104 png_read_sig(png_ptr
, info_ptr
);
108 png_uint_32 length
= png_read_chunk_header(png_ptr
);
109 png_uint_32 chunk_name
= png_ptr
->chunk_name
;
111 /* IDAT logic needs to happen here to simplify getting the two flags
114 if (chunk_name
== png_IDAT
)
116 if ((png_ptr
->mode
& PNG_HAVE_IHDR
) == 0)
117 png_chunk_error(png_ptr
, "Missing IHDR before IDAT");
119 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
&&
120 (png_ptr
->mode
& PNG_HAVE_PLTE
) == 0)
121 png_chunk_error(png_ptr
, "Missing PLTE before IDAT");
123 else if ((png_ptr
->mode
& PNG_AFTER_IDAT
) != 0)
124 png_chunk_benign_error(png_ptr
, "Too many IDATs found");
126 png_ptr
->mode
|= PNG_HAVE_IDAT
;
129 else if ((png_ptr
->mode
& PNG_HAVE_IDAT
) != 0)
131 png_ptr
->mode
|= PNG_HAVE_CHUNK_AFTER_IDAT
;
132 png_ptr
->mode
|= PNG_AFTER_IDAT
;
135 /* This should be a binary subdivision search or a hash for
136 * matching the chunk name rather than a linear search.
138 if (chunk_name
== png_IHDR
)
139 png_handle_IHDR(png_ptr
, info_ptr
, length
);
141 else if (chunk_name
== png_IEND
)
142 png_handle_IEND(png_ptr
, info_ptr
, length
);
144 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
145 else if ((keep
= png_chunk_unknown_handling(png_ptr
, chunk_name
)) != 0)
147 png_handle_unknown(png_ptr
, info_ptr
, length
, keep
);
149 if (chunk_name
== png_PLTE
)
150 png_ptr
->mode
|= PNG_HAVE_PLTE
;
152 else if (chunk_name
== png_IDAT
)
154 png_ptr
->idat_size
= 0; /* It has been consumed */
159 else if (chunk_name
== png_PLTE
)
160 png_handle_PLTE(png_ptr
, info_ptr
, length
);
162 else if (chunk_name
== png_IDAT
)
164 png_ptr
->idat_size
= length
;
168 #ifdef PNG_READ_bKGD_SUPPORTED
169 else if (chunk_name
== png_bKGD
)
170 png_handle_bKGD(png_ptr
, info_ptr
, length
);
173 #ifdef PNG_READ_cHRM_SUPPORTED
174 else if (chunk_name
== png_cHRM
)
175 png_handle_cHRM(png_ptr
, info_ptr
, length
);
178 #ifdef PNG_READ_eXIf_SUPPORTED
179 else if (chunk_name
== png_eXIf
)
180 png_handle_eXIf(png_ptr
, info_ptr
, length
);
183 #ifdef PNG_READ_gAMA_SUPPORTED
184 else if (chunk_name
== png_gAMA
)
185 png_handle_gAMA(png_ptr
, info_ptr
, length
);
188 #ifdef PNG_READ_hIST_SUPPORTED
189 else if (chunk_name
== png_hIST
)
190 png_handle_hIST(png_ptr
, info_ptr
, length
);
193 #ifdef PNG_READ_oFFs_SUPPORTED
194 else if (chunk_name
== png_oFFs
)
195 png_handle_oFFs(png_ptr
, info_ptr
, length
);
198 #ifdef PNG_READ_pCAL_SUPPORTED
199 else if (chunk_name
== png_pCAL
)
200 png_handle_pCAL(png_ptr
, info_ptr
, length
);
203 #ifdef PNG_READ_sCAL_SUPPORTED
204 else if (chunk_name
== png_sCAL
)
205 png_handle_sCAL(png_ptr
, info_ptr
, length
);
208 #ifdef PNG_READ_pHYs_SUPPORTED
209 else if (chunk_name
== png_pHYs
)
210 png_handle_pHYs(png_ptr
, info_ptr
, length
);
213 #ifdef PNG_READ_sBIT_SUPPORTED
214 else if (chunk_name
== png_sBIT
)
215 png_handle_sBIT(png_ptr
, info_ptr
, length
);
218 #ifdef PNG_READ_sRGB_SUPPORTED
219 else if (chunk_name
== png_sRGB
)
220 png_handle_sRGB(png_ptr
, info_ptr
, length
);
223 #ifdef PNG_READ_iCCP_SUPPORTED
224 else if (chunk_name
== png_iCCP
)
225 png_handle_iCCP(png_ptr
, info_ptr
, length
);
228 #ifdef PNG_READ_sPLT_SUPPORTED
229 else if (chunk_name
== png_sPLT
)
230 png_handle_sPLT(png_ptr
, info_ptr
, length
);
233 #ifdef PNG_READ_tEXt_SUPPORTED
234 else if (chunk_name
== png_tEXt
)
235 png_handle_tEXt(png_ptr
, info_ptr
, length
);
238 #ifdef PNG_READ_tIME_SUPPORTED
239 else if (chunk_name
== png_tIME
)
240 png_handle_tIME(png_ptr
, info_ptr
, length
);
243 #ifdef PNG_READ_tRNS_SUPPORTED
244 else if (chunk_name
== png_tRNS
)
245 png_handle_tRNS(png_ptr
, info_ptr
, length
);
248 #ifdef PNG_READ_zTXt_SUPPORTED
249 else if (chunk_name
== png_zTXt
)
250 png_handle_zTXt(png_ptr
, info_ptr
, length
);
253 #ifdef PNG_READ_iTXt_SUPPORTED
254 else if (chunk_name
== png_iTXt
)
255 png_handle_iTXt(png_ptr
, info_ptr
, length
);
259 png_handle_unknown(png_ptr
, info_ptr
, length
,
260 PNG_HANDLE_CHUNK_AS_DEFAULT
);
263 #endif /* SEQUENTIAL_READ */
265 /* Optional call to update the users info_ptr structure */
267 png_read_update_info(png_structrp png_ptr
, png_inforp info_ptr
)
269 png_debug(1, "in png_read_update_info");
273 if ((png_ptr
->flags
& PNG_FLAG_ROW_INIT
) == 0)
275 png_read_start_row(png_ptr
);
277 # ifdef PNG_READ_TRANSFORMS_SUPPORTED
278 png_read_transform_info(png_ptr
, info_ptr
);
284 /* New in 1.6.0 this avoids the bug of doing the initializations twice */
286 png_app_error(png_ptr
,
287 "png_read_update_info/png_start_read_image: duplicate call");
291 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
292 /* Initialize palette, background, etc, after transformations
293 * are set, but before any reading takes place. This allows
294 * the user to obtain a gamma-corrected palette, for example.
295 * If the user doesn't call this, we will do it ourselves.
298 png_start_read_image(png_structrp png_ptr
)
300 png_debug(1, "in png_start_read_image");
304 if ((png_ptr
->flags
& PNG_FLAG_ROW_INIT
) == 0)
305 png_read_start_row(png_ptr
);
307 /* New in 1.6.0 this avoids the bug of doing the initializations twice */
309 png_app_error(png_ptr
,
310 "png_start_read_image/png_read_update_info: duplicate call");
313 #endif /* SEQUENTIAL_READ */
315 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
316 #ifdef PNG_MNG_FEATURES_SUPPORTED
317 /* Undoes intrapixel differencing,
318 * NOTE: this is apparently only supported in the 'sequential' reader.
321 png_do_read_intrapixel(png_row_infop row_info
, png_bytep row
)
323 png_debug(1, "in png_do_read_intrapixel");
326 (row_info
->color_type
& PNG_COLOR_MASK_COLOR
) != 0)
329 png_uint_32 row_width
= row_info
->width
;
331 if (row_info
->bit_depth
== 8)
336 if (row_info
->color_type
== PNG_COLOR_TYPE_RGB
)
339 else if (row_info
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
345 for (i
= 0, rp
= row
; i
< row_width
; i
++, rp
+= bytes_per_pixel
)
347 *(rp
) = (png_byte
)((256 + *rp
+ *(rp
+ 1)) & 0xff);
348 *(rp
+2) = (png_byte
)((256 + *(rp
+ 2) + *(rp
+ 1)) & 0xff);
351 else if (row_info
->bit_depth
== 16)
356 if (row_info
->color_type
== PNG_COLOR_TYPE_RGB
)
359 else if (row_info
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
365 for (i
= 0, rp
= row
; i
< row_width
; i
++, rp
+= bytes_per_pixel
)
367 png_uint_32 s0
= (png_uint_32
)(*(rp
) << 8) | *(rp
+ 1);
368 png_uint_32 s1
= (png_uint_32
)(*(rp
+ 2) << 8) | *(rp
+ 3);
369 png_uint_32 s2
= (png_uint_32
)(*(rp
+ 4) << 8) | *(rp
+ 5);
370 png_uint_32 red
= (s0
+ s1
+ 65536) & 0xffff;
371 png_uint_32 blue
= (s2
+ s1
+ 65536) & 0xffff;
372 *(rp
) = (png_byte
)((red
>> 8) & 0xff);
373 *(rp
+ 1) = (png_byte
)(red
& 0xff);
374 *(rp
+ 4) = (png_byte
)((blue
>> 8) & 0xff);
375 *(rp
+ 5) = (png_byte
)(blue
& 0xff);
380 #endif /* MNG_FEATURES */
383 png_read_row(png_structrp png_ptr
, png_bytep row
, png_bytep dsp_row
)
385 png_row_info row_info
;
390 png_debug2(1, "in png_read_row (row %lu, pass %d)",
391 (unsigned long)png_ptr
->row_number
, png_ptr
->pass
);
393 /* png_read_start_row sets the information (in particular iwidth) for this
396 if ((png_ptr
->flags
& PNG_FLAG_ROW_INIT
) == 0)
397 png_read_start_row(png_ptr
);
399 /* 1.5.6: row_info moved out of png_struct to a local here. */
400 row_info
.width
= png_ptr
->iwidth
; /* NOTE: width of current interlaced row */
401 row_info
.color_type
= png_ptr
->color_type
;
402 row_info
.bit_depth
= png_ptr
->bit_depth
;
403 row_info
.channels
= png_ptr
->channels
;
404 row_info
.pixel_depth
= png_ptr
->pixel_depth
;
405 row_info
.rowbytes
= PNG_ROWBYTES(row_info
.pixel_depth
, row_info
.width
);
407 #ifdef PNG_WARNINGS_SUPPORTED
408 if (png_ptr
->row_number
== 0 && png_ptr
->pass
== 0)
410 /* Check for transforms that have been set but were defined out */
411 #if defined(PNG_WRITE_INVERT_SUPPORTED) && !defined(PNG_READ_INVERT_SUPPORTED)
412 if ((png_ptr
->transformations
& PNG_INVERT_MONO
) != 0)
413 png_warning(png_ptr
, "PNG_READ_INVERT_SUPPORTED is not defined");
416 #if defined(PNG_WRITE_FILLER_SUPPORTED) && !defined(PNG_READ_FILLER_SUPPORTED)
417 if ((png_ptr
->transformations
& PNG_FILLER
) != 0)
418 png_warning(png_ptr
, "PNG_READ_FILLER_SUPPORTED is not defined");
421 #if defined(PNG_WRITE_PACKSWAP_SUPPORTED) && \
422 !defined(PNG_READ_PACKSWAP_SUPPORTED)
423 if ((png_ptr
->transformations
& PNG_PACKSWAP
) != 0)
424 png_warning(png_ptr
, "PNG_READ_PACKSWAP_SUPPORTED is not defined");
427 #if defined(PNG_WRITE_PACK_SUPPORTED) && !defined(PNG_READ_PACK_SUPPORTED)
428 if ((png_ptr
->transformations
& PNG_PACK
) != 0)
429 png_warning(png_ptr
, "PNG_READ_PACK_SUPPORTED is not defined");
432 #if defined(PNG_WRITE_SHIFT_SUPPORTED) && !defined(PNG_READ_SHIFT_SUPPORTED)
433 if ((png_ptr
->transformations
& PNG_SHIFT
) != 0)
434 png_warning(png_ptr
, "PNG_READ_SHIFT_SUPPORTED is not defined");
437 #if defined(PNG_WRITE_BGR_SUPPORTED) && !defined(PNG_READ_BGR_SUPPORTED)
438 if ((png_ptr
->transformations
& PNG_BGR
) != 0)
439 png_warning(png_ptr
, "PNG_READ_BGR_SUPPORTED is not defined");
442 #if defined(PNG_WRITE_SWAP_SUPPORTED) && !defined(PNG_READ_SWAP_SUPPORTED)
443 if ((png_ptr
->transformations
& PNG_SWAP_BYTES
) != 0)
444 png_warning(png_ptr
, "PNG_READ_SWAP_SUPPORTED is not defined");
447 #endif /* WARNINGS */
449 #ifdef PNG_READ_INTERLACING_SUPPORTED
450 /* If interlaced and we do not need a new row, combine row and return.
451 * Notice that the pixels we have from previous rows have been transformed
452 * already; we can only combine like with like (transformed or
453 * untransformed) and, because of the libpng API for interlaced images, this
454 * means we must transform before de-interlacing.
456 if (png_ptr
->interlaced
!= 0 &&
457 (png_ptr
->transformations
& PNG_INTERLACE
) != 0)
459 switch (png_ptr
->pass
)
462 if (png_ptr
->row_number
& 0x07)
465 png_combine_row(png_ptr
, dsp_row
, 1/*display*/);
466 png_read_finish_row(png_ptr
);
472 if ((png_ptr
->row_number
& 0x07) || png_ptr
->width
< 5)
475 png_combine_row(png_ptr
, dsp_row
, 1/*display*/);
477 png_read_finish_row(png_ptr
);
483 if ((png_ptr
->row_number
& 0x07) != 4)
485 if (dsp_row
!= NULL
&& (png_ptr
->row_number
& 4))
486 png_combine_row(png_ptr
, dsp_row
, 1/*display*/);
488 png_read_finish_row(png_ptr
);
494 if ((png_ptr
->row_number
& 3) || png_ptr
->width
< 3)
497 png_combine_row(png_ptr
, dsp_row
, 1/*display*/);
499 png_read_finish_row(png_ptr
);
505 if ((png_ptr
->row_number
& 3) != 2)
507 if (dsp_row
!= NULL
&& (png_ptr
->row_number
& 2))
508 png_combine_row(png_ptr
, dsp_row
, 1/*display*/);
510 png_read_finish_row(png_ptr
);
516 if ((png_ptr
->row_number
& 1) || png_ptr
->width
< 2)
519 png_combine_row(png_ptr
, dsp_row
, 1/*display*/);
521 png_read_finish_row(png_ptr
);
528 if ((png_ptr
->row_number
& 1) == 0)
530 png_read_finish_row(png_ptr
);
538 if ((png_ptr
->mode
& PNG_HAVE_IDAT
) == 0)
539 png_error(png_ptr
, "Invalid attempt to read row data");
541 /* Fill the row with IDAT data: */
542 png_ptr
->row_buf
[0]=255; /* to force error if no data was found */
543 png_read_IDAT_data(png_ptr
, png_ptr
->row_buf
, row_info
.rowbytes
+ 1);
545 if (png_ptr
->row_buf
[0] > PNG_FILTER_VALUE_NONE
)
547 if (png_ptr
->row_buf
[0] < PNG_FILTER_VALUE_LAST
)
548 png_read_filter_row(png_ptr
, &row_info
, png_ptr
->row_buf
+ 1,
549 png_ptr
->prev_row
+ 1, png_ptr
->row_buf
[0]);
551 png_error(png_ptr
, "bad adaptive filter value");
554 /* libpng 1.5.6: the following line was copying png_ptr->rowbytes before
555 * 1.5.6, while the buffer really is this big in current versions of libpng
556 * it may not be in the future, so this was changed just to copy the
559 memcpy(png_ptr
->prev_row
, png_ptr
->row_buf
, row_info
.rowbytes
+ 1);
561 #ifdef PNG_MNG_FEATURES_SUPPORTED
562 if ((png_ptr
->mng_features_permitted
& PNG_FLAG_MNG_FILTER_64
) != 0 &&
563 (png_ptr
->filter_type
== PNG_INTRAPIXEL_DIFFERENCING
))
565 /* Intrapixel differencing */
566 png_do_read_intrapixel(&row_info
, png_ptr
->row_buf
+ 1);
570 #ifdef PNG_READ_TRANSFORMS_SUPPORTED
571 if (png_ptr
->transformations
)
572 png_do_read_transformations(png_ptr
, &row_info
);
575 /* The transformed pixel depth should match the depth now in row_info. */
576 if (png_ptr
->transformed_pixel_depth
== 0)
578 png_ptr
->transformed_pixel_depth
= row_info
.pixel_depth
;
579 if (row_info
.pixel_depth
> png_ptr
->maximum_pixel_depth
)
580 png_error(png_ptr
, "sequential row overflow");
583 else if (png_ptr
->transformed_pixel_depth
!= row_info
.pixel_depth
)
584 png_error(png_ptr
, "internal sequential row size calculation error");
586 #ifdef PNG_READ_INTERLACING_SUPPORTED
587 /* Expand interlaced rows to full size */
588 if (png_ptr
->interlaced
!= 0 &&
589 (png_ptr
->transformations
& PNG_INTERLACE
) != 0)
591 if (png_ptr
->pass
< 6)
592 png_do_read_interlace(&row_info
, png_ptr
->row_buf
+ 1, png_ptr
->pass
,
593 png_ptr
->transformations
);
596 png_combine_row(png_ptr
, dsp_row
, 1/*display*/);
599 png_combine_row(png_ptr
, row
, 0/*row*/);
606 png_combine_row(png_ptr
, row
, -1/*ignored*/);
609 png_combine_row(png_ptr
, dsp_row
, -1/*ignored*/);
611 png_read_finish_row(png_ptr
);
613 if (png_ptr
->read_row_fn
!= NULL
)
614 (*(png_ptr
->read_row_fn
))(png_ptr
, png_ptr
->row_number
, png_ptr
->pass
);
617 #endif /* SEQUENTIAL_READ */
619 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
620 /* Read one or more rows of image data. If the image is interlaced,
621 * and png_set_interlace_handling() has been called, the rows need to
622 * contain the contents of the rows from the previous pass. If the
623 * image has alpha or transparency, and png_handle_alpha()[*] has been
624 * called, the rows contents must be initialized to the contents of the
627 * "row" holds the actual image, and pixels are placed in it
628 * as they arrive. If the image is displayed after each pass, it will
629 * appear to "sparkle" in. "display_row" can be used to display a
630 * "chunky" progressive image, with finer detail added as it becomes
631 * available. If you do not want this "chunky" display, you may pass
632 * NULL for display_row. If you do not want the sparkle display, and
633 * you have not called png_handle_alpha(), you may pass NULL for rows.
634 * If you have called png_handle_alpha(), and the image has either an
635 * alpha channel or a transparency chunk, you must provide a buffer for
636 * rows. In this case, you do not have to provide a display_row buffer
637 * also, but you may. If the image is not interlaced, or if you have
638 * not called png_set_interlace_handling(), the display_row buffer will
639 * be ignored, so pass NULL to it.
641 * [*] png_handle_alpha() does not exist yet, as of this version of libpng
645 png_read_rows(png_structrp png_ptr
, png_bytepp row
,
646 png_bytepp display_row
, png_uint_32 num_rows
)
652 png_debug(1, "in png_read_rows");
659 if (rp
!= NULL
&& dp
!= NULL
)
660 for (i
= 0; i
< num_rows
; i
++)
662 png_bytep rptr
= *rp
++;
663 png_bytep dptr
= *dp
++;
665 png_read_row(png_ptr
, rptr
, dptr
);
669 for (i
= 0; i
< num_rows
; i
++)
671 png_bytep rptr
= *rp
;
672 png_read_row(png_ptr
, rptr
, NULL
);
677 for (i
= 0; i
< num_rows
; i
++)
679 png_bytep dptr
= *dp
;
680 png_read_row(png_ptr
, NULL
, dptr
);
684 #endif /* SEQUENTIAL_READ */
686 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
687 /* Read the entire image. If the image has an alpha channel or a tRNS
688 * chunk, and you have called png_handle_alpha()[*], you will need to
689 * initialize the image to the current image that PNG will be overlaying.
690 * We set the num_rows again here, in case it was incorrectly set in
691 * png_read_start_row() by a call to png_read_update_info() or
692 * png_start_read_image() if png_set_interlace_handling() wasn't called
693 * prior to either of these functions like it should have been. You can
694 * only call this function once. If you desire to have an image for
695 * each pass of a interlaced image, use png_read_rows() instead.
697 * [*] png_handle_alpha() does not exist yet, as of this version of libpng
700 png_read_image(png_structrp png_ptr
, png_bytepp image
)
702 png_uint_32 i
, image_height
;
706 png_debug(1, "in png_read_image");
711 #ifdef PNG_READ_INTERLACING_SUPPORTED
712 if ((png_ptr
->flags
& PNG_FLAG_ROW_INIT
) == 0)
714 pass
= png_set_interlace_handling(png_ptr
);
715 /* And make sure transforms are initialized. */
716 png_start_read_image(png_ptr
);
720 if (png_ptr
->interlaced
!= 0 &&
721 (png_ptr
->transformations
& PNG_INTERLACE
) == 0)
723 /* Caller called png_start_read_image or png_read_update_info without
724 * first turning on the PNG_INTERLACE transform. We can fix this here,
725 * but the caller should do it!
727 png_warning(png_ptr
, "Interlace handling should be turned on when "
728 "using png_read_image");
729 /* Make sure this is set correctly */
730 png_ptr
->num_rows
= png_ptr
->height
;
733 /* Obtain the pass number, which also turns on the PNG_INTERLACE flag in
734 * the above error case.
736 pass
= png_set_interlace_handling(png_ptr
);
739 if (png_ptr
->interlaced
)
741 "Cannot read interlaced image -- interlace handler disabled");
746 image_height
=png_ptr
->height
;
748 for (j
= 0; j
< pass
; j
++)
751 for (i
= 0; i
< image_height
; i
++)
753 png_read_row(png_ptr
, *rp
, NULL
);
758 #endif /* SEQUENTIAL_READ */
760 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
761 /* Read the end of the PNG file. Will not read past the end of the
762 * file, will verify the end is accurate, and will read any comments
763 * or time information at the end of the file, if info is not NULL.
766 png_read_end(png_structrp png_ptr
, png_inforp info_ptr
)
768 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
772 png_debug(1, "in png_read_end");
777 /* If png_read_end is called in the middle of reading the rows there may
778 * still be pending IDAT data and an owned zstream. Deal with this here.
780 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
781 if (png_chunk_unknown_handling(png_ptr
, png_IDAT
) == 0)
783 png_read_finish_IDAT(png_ptr
);
785 #ifdef PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED
786 /* Report invalid palette index; added at libng-1.5.10 */
787 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
&&
788 png_ptr
->num_palette_max
> png_ptr
->num_palette
)
789 png_benign_error(png_ptr
, "Read palette index exceeding num_palette");
794 png_uint_32 length
= png_read_chunk_header(png_ptr
);
795 png_uint_32 chunk_name
= png_ptr
->chunk_name
;
797 if (chunk_name
!= png_IDAT
)
798 png_ptr
->mode
|= PNG_HAVE_CHUNK_AFTER_IDAT
;
800 if (chunk_name
== png_IEND
)
801 png_handle_IEND(png_ptr
, info_ptr
, length
);
803 else if (chunk_name
== png_IHDR
)
804 png_handle_IHDR(png_ptr
, info_ptr
, length
);
806 else if (info_ptr
== NULL
)
807 png_crc_finish(png_ptr
, length
);
809 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
810 else if ((keep
= png_chunk_unknown_handling(png_ptr
, chunk_name
)) != 0)
812 if (chunk_name
== png_IDAT
)
814 if ((length
> 0 && !(png_ptr
->flags
& PNG_FLAG_ZSTREAM_ENDED
))
815 || (png_ptr
->mode
& PNG_HAVE_CHUNK_AFTER_IDAT
) != 0)
816 png_benign_error(png_ptr
, ".Too many IDATs found");
818 png_handle_unknown(png_ptr
, info_ptr
, length
, keep
);
819 if (chunk_name
== png_PLTE
)
820 png_ptr
->mode
|= PNG_HAVE_PLTE
;
824 else if (chunk_name
== png_IDAT
)
826 /* Zero length IDATs are legal after the last IDAT has been
827 * read, but not after other chunks have been read. 1.6 does not
828 * always read all the deflate data; specifically it cannot be relied
829 * upon to read the Adler32 at the end. If it doesn't ignore IDAT
830 * chunks which are longer than zero as well:
832 if ((length
> 0 && !(png_ptr
->flags
& PNG_FLAG_ZSTREAM_ENDED
))
833 || (png_ptr
->mode
& PNG_HAVE_CHUNK_AFTER_IDAT
) != 0)
834 png_benign_error(png_ptr
, "..Too many IDATs found");
836 png_crc_finish(png_ptr
, length
);
838 else if (chunk_name
== png_PLTE
)
839 png_handle_PLTE(png_ptr
, info_ptr
, length
);
841 #ifdef PNG_READ_bKGD_SUPPORTED
842 else if (chunk_name
== png_bKGD
)
843 png_handle_bKGD(png_ptr
, info_ptr
, length
);
846 #ifdef PNG_READ_cHRM_SUPPORTED
847 else if (chunk_name
== png_cHRM
)
848 png_handle_cHRM(png_ptr
, info_ptr
, length
);
851 #ifdef PNG_READ_eXIf_SUPPORTED
852 else if (chunk_name
== png_eXIf
)
853 png_handle_eXIf(png_ptr
, info_ptr
, length
);
856 #ifdef PNG_READ_gAMA_SUPPORTED
857 else if (chunk_name
== png_gAMA
)
858 png_handle_gAMA(png_ptr
, info_ptr
, length
);
861 #ifdef PNG_READ_hIST_SUPPORTED
862 else if (chunk_name
== png_hIST
)
863 png_handle_hIST(png_ptr
, info_ptr
, length
);
866 #ifdef PNG_READ_oFFs_SUPPORTED
867 else if (chunk_name
== png_oFFs
)
868 png_handle_oFFs(png_ptr
, info_ptr
, length
);
871 #ifdef PNG_READ_pCAL_SUPPORTED
872 else if (chunk_name
== png_pCAL
)
873 png_handle_pCAL(png_ptr
, info_ptr
, length
);
876 #ifdef PNG_READ_sCAL_SUPPORTED
877 else if (chunk_name
== png_sCAL
)
878 png_handle_sCAL(png_ptr
, info_ptr
, length
);
881 #ifdef PNG_READ_pHYs_SUPPORTED
882 else if (chunk_name
== png_pHYs
)
883 png_handle_pHYs(png_ptr
, info_ptr
, length
);
886 #ifdef PNG_READ_sBIT_SUPPORTED
887 else if (chunk_name
== png_sBIT
)
888 png_handle_sBIT(png_ptr
, info_ptr
, length
);
891 #ifdef PNG_READ_sRGB_SUPPORTED
892 else if (chunk_name
== png_sRGB
)
893 png_handle_sRGB(png_ptr
, info_ptr
, length
);
896 #ifdef PNG_READ_iCCP_SUPPORTED
897 else if (chunk_name
== png_iCCP
)
898 png_handle_iCCP(png_ptr
, info_ptr
, length
);
901 #ifdef PNG_READ_sPLT_SUPPORTED
902 else if (chunk_name
== png_sPLT
)
903 png_handle_sPLT(png_ptr
, info_ptr
, length
);
906 #ifdef PNG_READ_tEXt_SUPPORTED
907 else if (chunk_name
== png_tEXt
)
908 png_handle_tEXt(png_ptr
, info_ptr
, length
);
911 #ifdef PNG_READ_tIME_SUPPORTED
912 else if (chunk_name
== png_tIME
)
913 png_handle_tIME(png_ptr
, info_ptr
, length
);
916 #ifdef PNG_READ_tRNS_SUPPORTED
917 else if (chunk_name
== png_tRNS
)
918 png_handle_tRNS(png_ptr
, info_ptr
, length
);
921 #ifdef PNG_READ_zTXt_SUPPORTED
922 else if (chunk_name
== png_zTXt
)
923 png_handle_zTXt(png_ptr
, info_ptr
, length
);
926 #ifdef PNG_READ_iTXt_SUPPORTED
927 else if (chunk_name
== png_iTXt
)
928 png_handle_iTXt(png_ptr
, info_ptr
, length
);
932 png_handle_unknown(png_ptr
, info_ptr
, length
,
933 PNG_HANDLE_CHUNK_AS_DEFAULT
);
934 } while ((png_ptr
->mode
& PNG_HAVE_IEND
) == 0);
936 #endif /* SEQUENTIAL_READ */
938 /* Free all memory used in the read struct */
940 png_read_destroy(png_structrp png_ptr
)
942 png_debug(1, "in png_read_destroy");
944 #ifdef PNG_READ_GAMMA_SUPPORTED
945 png_destroy_gamma_table(png_ptr
);
948 png_free(png_ptr
, png_ptr
->big_row_buf
);
949 png_ptr
->big_row_buf
= NULL
;
950 png_free(png_ptr
, png_ptr
->big_prev_row
);
951 png_ptr
->big_prev_row
= NULL
;
952 png_free(png_ptr
, png_ptr
->read_buffer
);
953 png_ptr
->read_buffer
= NULL
;
955 #ifdef PNG_READ_QUANTIZE_SUPPORTED
956 png_free(png_ptr
, png_ptr
->palette_lookup
);
957 png_ptr
->palette_lookup
= NULL
;
958 png_free(png_ptr
, png_ptr
->quantize_index
);
959 png_ptr
->quantize_index
= NULL
;
962 if ((png_ptr
->free_me
& PNG_FREE_PLTE
) != 0)
964 png_zfree(png_ptr
, png_ptr
->palette
);
965 png_ptr
->palette
= NULL
;
967 png_ptr
->free_me
&= ~PNG_FREE_PLTE
;
969 #if defined(PNG_tRNS_SUPPORTED) || \
970 defined(PNG_READ_EXPAND_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
971 if ((png_ptr
->free_me
& PNG_FREE_TRNS
) != 0)
973 png_free(png_ptr
, png_ptr
->trans_alpha
);
974 png_ptr
->trans_alpha
= NULL
;
976 png_ptr
->free_me
&= ~PNG_FREE_TRNS
;
979 inflateEnd(&png_ptr
->zstream
);
981 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
982 png_free(png_ptr
, png_ptr
->save_buffer
);
983 png_ptr
->save_buffer
= NULL
;
986 #if defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED) && \
987 defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
988 png_free(png_ptr
, png_ptr
->unknown_chunk
.data
);
989 png_ptr
->unknown_chunk
.data
= NULL
;
992 #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
993 png_free(png_ptr
, png_ptr
->chunk_list
);
994 png_ptr
->chunk_list
= NULL
;
997 #if defined(PNG_READ_EXPAND_SUPPORTED) && \
998 defined(PNG_ARM_NEON_IMPLEMENTATION)
999 png_free(png_ptr
, png_ptr
->riffled_palette
);
1000 png_ptr
->riffled_palette
= NULL
;
1003 /* NOTE: the 'setjmp' buffer may still be allocated and the memory and error
1004 * callbacks are still set at this point. They are required to complete the
1005 * destruction of the png_struct itself.
1009 /* Free all memory used by the read */
1011 png_destroy_read_struct(png_structpp png_ptr_ptr
, png_infopp info_ptr_ptr
,
1012 png_infopp end_info_ptr_ptr
)
1014 png_structrp png_ptr
= NULL
;
1016 png_debug(1, "in png_destroy_read_struct");
1018 if (png_ptr_ptr
!= NULL
)
1019 png_ptr
= *png_ptr_ptr
;
1021 if (png_ptr
== NULL
)
1024 /* libpng 1.6.0: use the API to destroy info structs to ensure consistent
1025 * behavior. Prior to 1.6.0 libpng did extra 'info' destruction in this API.
1026 * The extra was, apparently, unnecessary yet this hides memory leak bugs.
1028 png_destroy_info_struct(png_ptr
, end_info_ptr_ptr
);
1029 png_destroy_info_struct(png_ptr
, info_ptr_ptr
);
1031 *png_ptr_ptr
= NULL
;
1032 png_read_destroy(png_ptr
);
1033 png_destroy_png_struct(png_ptr
);
1037 png_set_read_status_fn(png_structrp png_ptr
, png_read_status_ptr read_row_fn
)
1039 if (png_ptr
== NULL
)
1042 png_ptr
->read_row_fn
= read_row_fn
;
1046 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
1047 #ifdef PNG_INFO_IMAGE_SUPPORTED
1049 png_read_png(png_structrp png_ptr
, png_inforp info_ptr
,
1050 int transforms
, voidp params
)
1052 if (png_ptr
== NULL
|| info_ptr
== NULL
)
1055 /* png_read_info() gives us all of the information from the
1056 * PNG file before the first IDAT (image data chunk).
1058 png_read_info(png_ptr
, info_ptr
);
1059 if (info_ptr
->height
> PNG_UINT_32_MAX
/(sizeof (png_bytep
)))
1060 png_error(png_ptr
, "Image is too high to process with png_read_png()");
1062 /* -------------- image transformations start here ------------------- */
1063 /* libpng 1.6.10: add code to cause a png_app_error if a selected TRANSFORM
1064 * is not implemented. This will only happen in de-configured (non-default)
1065 * libpng builds. The results can be unexpected - png_read_png may return
1066 * short or mal-formed rows because the transform is skipped.
1069 /* Tell libpng to strip 16-bit/color files down to 8 bits per color.
1071 if ((transforms
& PNG_TRANSFORM_SCALE_16
) != 0)
1072 /* Added at libpng-1.5.4. "strip_16" produces the same result that it
1073 * did in earlier versions, while "scale_16" is now more accurate.
1075 #ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
1076 png_set_scale_16(png_ptr
);
1078 png_app_error(png_ptr
, "PNG_TRANSFORM_SCALE_16 not supported");
1081 /* If both SCALE and STRIP are required pngrtran will effectively cancel the
1082 * latter by doing SCALE first. This is ok and allows apps not to check for
1083 * which is supported to get the right answer.
1085 if ((transforms
& PNG_TRANSFORM_STRIP_16
) != 0)
1086 #ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
1087 png_set_strip_16(png_ptr
);
1089 png_app_error(png_ptr
, "PNG_TRANSFORM_STRIP_16 not supported");
1092 /* Strip alpha bytes from the input data without combining with
1093 * the background (not recommended).
1095 if ((transforms
& PNG_TRANSFORM_STRIP_ALPHA
) != 0)
1096 #ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
1097 png_set_strip_alpha(png_ptr
);
1099 png_app_error(png_ptr
, "PNG_TRANSFORM_STRIP_ALPHA not supported");
1102 /* Extract multiple pixels with bit depths of 1, 2, or 4 from a single
1103 * byte into separate bytes (useful for paletted and grayscale images).
1105 if ((transforms
& PNG_TRANSFORM_PACKING
) != 0)
1106 #ifdef PNG_READ_PACK_SUPPORTED
1107 png_set_packing(png_ptr
);
1109 png_app_error(png_ptr
, "PNG_TRANSFORM_PACKING not supported");
1112 /* Change the order of packed pixels to least significant bit first
1113 * (not useful if you are using png_set_packing).
1115 if ((transforms
& PNG_TRANSFORM_PACKSWAP
) != 0)
1116 #ifdef PNG_READ_PACKSWAP_SUPPORTED
1117 png_set_packswap(png_ptr
);
1119 png_app_error(png_ptr
, "PNG_TRANSFORM_PACKSWAP not supported");
1122 /* Expand paletted colors into true RGB triplets
1123 * Expand grayscale images to full 8 bits from 1, 2, or 4 bits/pixel
1124 * Expand paletted or RGB images with transparency to full alpha
1125 * channels so the data will be available as RGBA quartets.
1127 if ((transforms
& PNG_TRANSFORM_EXPAND
) != 0)
1128 #ifdef PNG_READ_EXPAND_SUPPORTED
1129 png_set_expand(png_ptr
);
1131 png_app_error(png_ptr
, "PNG_TRANSFORM_EXPAND not supported");
1134 /* We don't handle background color or gamma transformation or quantizing.
1137 /* Invert monochrome files to have 0 as white and 1 as black
1139 if ((transforms
& PNG_TRANSFORM_INVERT_MONO
) != 0)
1140 #ifdef PNG_READ_INVERT_SUPPORTED
1141 png_set_invert_mono(png_ptr
);
1143 png_app_error(png_ptr
, "PNG_TRANSFORM_INVERT_MONO not supported");
1146 /* If you want to shift the pixel values from the range [0,255] or
1147 * [0,65535] to the original [0,7] or [0,31], or whatever range the
1148 * colors were originally in:
1150 if ((transforms
& PNG_TRANSFORM_SHIFT
) != 0)
1151 #ifdef PNG_READ_SHIFT_SUPPORTED
1152 if ((info_ptr
->valid
& PNG_INFO_sBIT
) != 0)
1153 png_set_shift(png_ptr
, &info_ptr
->sig_bit
);
1155 png_app_error(png_ptr
, "PNG_TRANSFORM_SHIFT not supported");
1158 /* Flip the RGB pixels to BGR (or RGBA to BGRA) */
1159 if ((transforms
& PNG_TRANSFORM_BGR
) != 0)
1160 #ifdef PNG_READ_BGR_SUPPORTED
1161 png_set_bgr(png_ptr
);
1163 png_app_error(png_ptr
, "PNG_TRANSFORM_BGR not supported");
1166 /* Swap the RGBA or GA data to ARGB or AG (or BGRA to ABGR) */
1167 if ((transforms
& PNG_TRANSFORM_SWAP_ALPHA
) != 0)
1168 #ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
1169 png_set_swap_alpha(png_ptr
);
1171 png_app_error(png_ptr
, "PNG_TRANSFORM_SWAP_ALPHA not supported");
1174 /* Swap bytes of 16-bit files to least significant byte first */
1175 if ((transforms
& PNG_TRANSFORM_SWAP_ENDIAN
) != 0)
1176 #ifdef PNG_READ_SWAP_SUPPORTED
1177 png_set_swap(png_ptr
);
1179 png_app_error(png_ptr
, "PNG_TRANSFORM_SWAP_ENDIAN not supported");
1182 /* Added at libpng-1.2.41 */
1183 /* Invert the alpha channel from opacity to transparency */
1184 if ((transforms
& PNG_TRANSFORM_INVERT_ALPHA
) != 0)
1185 #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
1186 png_set_invert_alpha(png_ptr
);
1188 png_app_error(png_ptr
, "PNG_TRANSFORM_INVERT_ALPHA not supported");
1191 /* Added at libpng-1.2.41 */
1192 /* Expand grayscale image to RGB */
1193 if ((transforms
& PNG_TRANSFORM_GRAY_TO_RGB
) != 0)
1194 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
1195 png_set_gray_to_rgb(png_ptr
);
1197 png_app_error(png_ptr
, "PNG_TRANSFORM_GRAY_TO_RGB not supported");
1200 /* Added at libpng-1.5.4 */
1201 if ((transforms
& PNG_TRANSFORM_EXPAND_16
) != 0)
1202 #ifdef PNG_READ_EXPAND_16_SUPPORTED
1203 png_set_expand_16(png_ptr
);
1205 png_app_error(png_ptr
, "PNG_TRANSFORM_EXPAND_16 not supported");
1208 /* We don't handle adding filler bytes */
1210 /* We use png_read_image and rely on that for interlace handling, but we also
1211 * call png_read_update_info therefore must turn on interlace handling now:
1213 (void)png_set_interlace_handling(png_ptr
);
1215 /* Optional call to gamma correct and add the background to the palette
1216 * and update info structure. REQUIRED if you are expecting libpng to
1217 * update the palette for you (i.e., you selected such a transform above).
1219 png_read_update_info(png_ptr
, info_ptr
);
1221 /* -------------- image transformations end here ------------------- */
1223 png_free_data(png_ptr
, info_ptr
, PNG_FREE_ROWS
, 0);
1224 if (info_ptr
->row_pointers
== NULL
)
1228 info_ptr
->row_pointers
= png_voidcast(png_bytepp
, png_malloc(png_ptr
,
1229 info_ptr
->height
* (sizeof (png_bytep
))));
1231 for (iptr
=0; iptr
<info_ptr
->height
; iptr
++)
1232 info_ptr
->row_pointers
[iptr
] = NULL
;
1234 info_ptr
->free_me
|= PNG_FREE_ROWS
;
1236 for (iptr
= 0; iptr
< info_ptr
->height
; iptr
++)
1237 info_ptr
->row_pointers
[iptr
] = png_voidcast(png_bytep
,
1238 png_malloc(png_ptr
, info_ptr
->rowbytes
));
1241 png_read_image(png_ptr
, info_ptr
->row_pointers
);
1242 info_ptr
->valid
|= PNG_INFO_IDAT
;
1244 /* Read rest of file, and get additional chunks in info_ptr - REQUIRED */
1245 png_read_end(png_ptr
, info_ptr
);
1249 #endif /* INFO_IMAGE */
1250 #endif /* SEQUENTIAL_READ */
1252 #ifdef PNG_SIMPLIFIED_READ_SUPPORTED
1255 * This code currently relies on the sequential reader, though it could easily
1256 * be made to work with the progressive one.
1258 /* Arguments to png_image_finish_read: */
1260 /* Encoding of PNG data (used by the color-map code) */
1261 # define P_NOTSET 0 /* File encoding not yet known */
1262 # define P_sRGB 1 /* 8-bit encoded to sRGB gamma */
1263 # define P_LINEAR 2 /* 16-bit linear: not encoded, NOT pre-multiplied! */
1264 # define P_FILE 3 /* 8-bit encoded to file gamma, not sRGB or linear */
1265 # define P_LINEAR8 4 /* 8-bit linear: only from a file value */
1267 /* Color-map processing: after libpng has run on the PNG image further
1268 * processing may be needed to convert the data to color-map indices.
1270 #define PNG_CMAP_NONE 0
1271 #define PNG_CMAP_GA 1 /* Process GA data to a color-map with alpha */
1272 #define PNG_CMAP_TRANS 2 /* Process GA data to a background index */
1273 #define PNG_CMAP_RGB 3 /* Process RGB data */
1274 #define PNG_CMAP_RGB_ALPHA 4 /* Process RGBA data */
1276 /* The following document where the background is for each processing case. */
1277 #define PNG_CMAP_NONE_BACKGROUND 256
1278 #define PNG_CMAP_GA_BACKGROUND 231
1279 #define PNG_CMAP_TRANS_BACKGROUND 254
1280 #define PNG_CMAP_RGB_BACKGROUND 256
1281 #define PNG_CMAP_RGB_ALPHA_BACKGROUND 216
1288 png_int_32 row_stride
;
1290 png_const_colorp background
;
1291 /* Local variables: */
1292 png_voidp local_row
;
1293 png_voidp first_row
;
1294 ptrdiff_t row_bytes
; /* step between rows */
1295 int file_encoding
; /* E_ values above */
1296 png_fixed_point gamma_to_linear
; /* For P_FILE, reciprocal of gamma */
1297 int colormap_processing
; /* PNG_CMAP_ values above */
1298 } png_image_read_control
;
1300 /* Do all the *safe* initialization - 'safe' means that png_error won't be
1301 * called, so setting up the jmp_buf is not required. This means that anything
1302 * called from here must *not* call png_malloc - it has to call png_malloc_warn
1303 * instead so that control is returned safely back to this routine.
1306 png_image_read_init(png_imagep image
)
1308 if (image
->opaque
== NULL
)
1310 png_structp png_ptr
= png_create_read_struct(PNG_LIBPNG_VER_STRING
, image
,
1311 png_safe_error
, png_safe_warning
);
1313 /* And set the rest of the structure to NULL to ensure that the various
1314 * fields are consistent.
1316 memset(image
, 0, (sizeof *image
));
1317 image
->version
= PNG_IMAGE_VERSION
;
1319 if (png_ptr
!= NULL
)
1321 png_infop info_ptr
= png_create_info_struct(png_ptr
);
1323 if (info_ptr
!= NULL
)
1325 png_controlp control
= png_voidcast(png_controlp
,
1326 png_malloc_warn(png_ptr
, (sizeof *control
)));
1328 if (control
!= NULL
)
1330 memset(control
, 0, (sizeof *control
));
1332 control
->png_ptr
= png_ptr
;
1333 control
->info_ptr
= info_ptr
;
1334 control
->for_write
= 0;
1336 image
->opaque
= control
;
1340 /* Error clean up */
1341 png_destroy_info_struct(png_ptr
, &info_ptr
);
1344 png_destroy_read_struct(&png_ptr
, NULL
, NULL
);
1347 return png_image_error(image
, "png_image_read: out of memory");
1350 return png_image_error(image
, "png_image_read: opaque pointer not NULL");
1353 /* Utility to find the base format of a PNG file from a png_struct. */
1355 png_image_format(png_structrp png_ptr
)
1357 png_uint_32 format
= 0;
1359 if ((png_ptr
->color_type
& PNG_COLOR_MASK_COLOR
) != 0)
1360 format
|= PNG_FORMAT_FLAG_COLOR
;
1362 if ((png_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0)
1363 format
|= PNG_FORMAT_FLAG_ALPHA
;
1365 /* Use png_ptr here, not info_ptr, because by examination png_handle_tRNS
1366 * sets the png_struct fields; that's all we are interested in here. The
1367 * precise interaction with an app call to png_set_tRNS and PNG file reading
1370 else if (png_ptr
->num_trans
> 0)
1371 format
|= PNG_FORMAT_FLAG_ALPHA
;
1373 if (png_ptr
->bit_depth
== 16)
1374 format
|= PNG_FORMAT_FLAG_LINEAR
;
1376 if ((png_ptr
->color_type
& PNG_COLOR_MASK_PALETTE
) != 0)
1377 format
|= PNG_FORMAT_FLAG_COLORMAP
;
1382 /* Is the given gamma significantly different from sRGB? The test is the same
1383 * one used in pngrtran.c when deciding whether to do gamma correction. The
1384 * arithmetic optimizes the division by using the fact that the inverse of the
1385 * file sRGB gamma is 2.2
1388 png_gamma_not_sRGB(png_fixed_point g
)
1392 /* An uninitialized gamma is assumed to be sRGB for the simplified API. */
1396 return png_gamma_significant((g
* 11 + 2)/5 /* i.e. *2.2, rounded */);
1402 /* Do the main body of a 'png_image_begin_read' function; read the PNG file
1403 * header and fill in all the information. This is executed in a safe context,
1404 * unlike the init routine above.
1407 png_image_read_header(png_voidp argument
)
1409 png_imagep image
= png_voidcast(png_imagep
, argument
);
1410 png_structrp png_ptr
= image
->opaque
->png_ptr
;
1411 png_inforp info_ptr
= image
->opaque
->info_ptr
;
1413 #ifdef PNG_BENIGN_ERRORS_SUPPORTED
1414 png_set_benign_errors(png_ptr
, 1/*warn*/);
1416 png_read_info(png_ptr
, info_ptr
);
1418 /* Do this the fast way; just read directly out of png_struct. */
1419 image
->width
= png_ptr
->width
;
1420 image
->height
= png_ptr
->height
;
1423 png_uint_32 format
= png_image_format(png_ptr
);
1425 image
->format
= format
;
1427 #ifdef PNG_COLORSPACE_SUPPORTED
1428 /* Does the colorspace match sRGB? If there is no color endpoint
1429 * (colorant) information assume yes, otherwise require the
1430 * 'ENDPOINTS_MATCHP_sRGB' colorspace flag to have been set. If the
1431 * colorspace has been determined to be invalid ignore it.
1433 if ((format
& PNG_FORMAT_FLAG_COLOR
) != 0 && ((png_ptr
->colorspace
.flags
1434 & (PNG_COLORSPACE_HAVE_ENDPOINTS
|PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB
|
1435 PNG_COLORSPACE_INVALID
)) == PNG_COLORSPACE_HAVE_ENDPOINTS
))
1436 image
->flags
|= PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB
;
1440 /* We need the maximum number of entries regardless of the format the
1441 * application sets here.
1444 png_uint_32 cmap_entries
;
1446 switch (png_ptr
->color_type
)
1448 case PNG_COLOR_TYPE_GRAY
:
1449 cmap_entries
= 1U << png_ptr
->bit_depth
;
1452 case PNG_COLOR_TYPE_PALETTE
:
1453 cmap_entries
= (png_uint_32
)png_ptr
->num_palette
;
1461 if (cmap_entries
> 256)
1464 image
->colormap_entries
= cmap_entries
;
1470 #ifdef PNG_STDIO_SUPPORTED
1472 png_image_begin_read_from_stdio(png_imagep image
, FILE* file
)
1474 if (image
!= NULL
&& image
->version
== PNG_IMAGE_VERSION
)
1478 if (png_image_read_init(image
) != 0)
1480 /* This is slightly evil, but png_init_io doesn't do anything other
1481 * than this and we haven't changed the standard IO functions so
1482 * this saves a 'safe' function.
1484 image
->opaque
->png_ptr
->io_ptr
= file
;
1485 return png_safe_execute(image
, png_image_read_header
, image
);
1490 return png_image_error(image
,
1491 "png_image_begin_read_from_stdio: invalid argument");
1494 else if (image
!= NULL
)
1495 return png_image_error(image
,
1496 "png_image_begin_read_from_stdio: incorrect PNG_IMAGE_VERSION");
1502 png_image_begin_read_from_file(png_imagep image
, const char *file_name
)
1504 if (image
!= NULL
&& image
->version
== PNG_IMAGE_VERSION
)
1506 if (file_name
!= NULL
)
1508 FILE *fp
= fopen(file_name
, "rb");
1512 if (png_image_read_init(image
) != 0)
1514 image
->opaque
->png_ptr
->io_ptr
= fp
;
1515 image
->opaque
->owned_file
= 1;
1516 return png_safe_execute(image
, png_image_read_header
, image
);
1519 /* Clean up: just the opened file. */
1524 return png_image_error(image
, strerror(errno
));
1528 return png_image_error(image
,
1529 "png_image_begin_read_from_file: invalid argument");
1532 else if (image
!= NULL
)
1533 return png_image_error(image
,
1534 "png_image_begin_read_from_file: incorrect PNG_IMAGE_VERSION");
1540 static void PNGCBAPI
1541 png_image_memory_read(png_structp png_ptr
, png_bytep out
, size_t need
)
1543 if (png_ptr
!= NULL
)
1545 png_imagep image
= png_voidcast(png_imagep
, png_ptr
->io_ptr
);
1548 png_controlp cp
= image
->opaque
;
1551 png_const_bytep memory
= cp
->memory
;
1552 size_t size
= cp
->size
;
1554 if (memory
!= NULL
&& size
>= need
)
1556 memcpy(out
, memory
, need
);
1557 cp
->memory
= memory
+ need
;
1558 cp
->size
= size
- need
;
1562 png_error(png_ptr
, "read beyond end of data");
1566 png_error(png_ptr
, "invalid memory read");
1570 int PNGAPI
png_image_begin_read_from_memory(png_imagep image
,
1571 png_const_voidp memory
, size_t size
)
1573 if (image
!= NULL
&& image
->version
== PNG_IMAGE_VERSION
)
1575 if (memory
!= NULL
&& size
> 0)
1577 if (png_image_read_init(image
) != 0)
1579 /* Now set the IO functions to read from the memory buffer and
1580 * store it into io_ptr. Again do this in-place to avoid calling a
1581 * libpng function that requires error handling.
1583 image
->opaque
->memory
= png_voidcast(png_const_bytep
, memory
);
1584 image
->opaque
->size
= size
;
1585 image
->opaque
->png_ptr
->io_ptr
= image
;
1586 image
->opaque
->png_ptr
->read_data_fn
= png_image_memory_read
;
1588 return png_safe_execute(image
, png_image_read_header
, image
);
1593 return png_image_error(image
,
1594 "png_image_begin_read_from_memory: invalid argument");
1597 else if (image
!= NULL
)
1598 return png_image_error(image
,
1599 "png_image_begin_read_from_memory: incorrect PNG_IMAGE_VERSION");
1604 /* Utility function to skip chunks that are not used by the simplified image
1605 * read functions and an appropriate macro to call it.
1607 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
1609 png_image_skip_unused_chunks(png_structrp png_ptr
)
1611 /* Prepare the reader to ignore all recognized chunks whose data will not
1612 * be used, i.e., all chunks recognized by libpng except for those
1613 * involved in basic image reading:
1615 * IHDR, PLTE, IDAT, IEND
1617 * Or image data handling:
1619 * tRNS, bKGD, gAMA, cHRM, sRGB, [iCCP] and sBIT.
1621 * This provides a small performance improvement and eliminates any
1622 * potential vulnerability to security problems in the unused chunks.
1624 * At present the iCCP chunk data isn't used, so iCCP chunk can be ignored
1625 * too. This allows the simplified API to be compiled without iCCP support,
1626 * however if the support is there the chunk is still checked to detect
1627 * errors (which are unfortunately quite common.)
1630 static const png_byte chunks_to_process
[] = {
1631 98, 75, 71, 68, '\0', /* bKGD */
1632 99, 72, 82, 77, '\0', /* cHRM */
1633 103, 65, 77, 65, '\0', /* gAMA */
1634 # ifdef PNG_READ_iCCP_SUPPORTED
1635 105, 67, 67, 80, '\0', /* iCCP */
1637 115, 66, 73, 84, '\0', /* sBIT */
1638 115, 82, 71, 66, '\0', /* sRGB */
1641 /* Ignore unknown chunks and all other chunks except for the
1642 * IHDR, PLTE, tRNS, IDAT, and IEND chunks.
1644 png_set_keep_unknown_chunks(png_ptr
, PNG_HANDLE_CHUNK_NEVER
,
1647 /* But do not ignore image data handling chunks */
1648 png_set_keep_unknown_chunks(png_ptr
, PNG_HANDLE_CHUNK_AS_DEFAULT
,
1649 chunks_to_process
, (int)/*SAFE*/(sizeof chunks_to_process
)/5);
1653 # define PNG_SKIP_CHUNKS(p) png_image_skip_unused_chunks(p)
1655 # define PNG_SKIP_CHUNKS(p) ((void)0)
1656 #endif /* HANDLE_AS_UNKNOWN */
1658 /* The following macro gives the exact rounded answer for all values in the
1659 * range 0..255 (it actually divides by 51.2, but the rounding still generates
1660 * the correct numbers 0..5
1662 #define PNG_DIV51(v8) (((v8) * 5 + 130) >> 8)
1664 /* Utility functions to make particular color-maps */
1666 set_file_encoding(png_image_read_control
*display
)
1668 png_fixed_point g
= display
->image
->opaque
->png_ptr
->colorspace
.gamma
;
1669 if (png_gamma_significant(g
) != 0)
1671 if (png_gamma_not_sRGB(g
) != 0)
1673 display
->file_encoding
= P_FILE
;
1674 display
->gamma_to_linear
= png_reciprocal(g
);
1678 display
->file_encoding
= P_sRGB
;
1682 display
->file_encoding
= P_LINEAR8
;
1686 decode_gamma(png_image_read_control
*display
, png_uint_32 value
, int encoding
)
1688 if (encoding
== P_FILE
) /* double check */
1689 encoding
= display
->file_encoding
;
1691 if (encoding
== P_NOTSET
) /* must be the file encoding */
1693 set_file_encoding(display
);
1694 encoding
= display
->file_encoding
;
1700 value
= png_gamma_16bit_correct(value
*257, display
->gamma_to_linear
);
1704 value
= png_sRGB_table
[value
];
1716 png_error(display
->image
->opaque
->png_ptr
,
1717 "unexpected encoding (internal error)");
1725 png_colormap_compose(png_image_read_control
*display
,
1726 png_uint_32 foreground
, int foreground_encoding
, png_uint_32 alpha
,
1727 png_uint_32 background
, int encoding
)
1729 /* The file value is composed on the background, the background has the given
1730 * encoding and so does the result, the file is encoded with P_FILE and the
1731 * file and alpha are 8-bit values. The (output) encoding will always be
1732 * P_LINEAR or P_sRGB.
1734 png_uint_32 f
= decode_gamma(display
, foreground
, foreground_encoding
);
1735 png_uint_32 b
= decode_gamma(display
, background
, encoding
);
1737 /* The alpha is always an 8-bit value (it comes from the palette), the value
1738 * scaled by 255 is what PNG_sRGB_FROM_LINEAR requires.
1740 f
= f
* alpha
+ b
* (255-alpha
);
1742 if (encoding
== P_LINEAR
)
1744 /* Scale to 65535; divide by 255, approximately (in fact this is extremely
1745 * accurate, it divides by 255.00000005937181414556, with no overflow.)
1747 f
*= 257; /* Now scaled by 65535 */
1749 f
= (f
+32768) >> 16;
1753 f
= PNG_sRGB_FROM_LINEAR(f
);
1758 /* NOTE: P_LINEAR values to this routine must be 16-bit, but P_FILE values must
1762 png_create_colormap_entry(png_image_read_control
*display
,
1763 png_uint_32 ip
, png_uint_32 red
, png_uint_32 green
, png_uint_32 blue
,
1764 png_uint_32 alpha
, int encoding
)
1766 png_imagep image
= display
->image
;
1767 int output_encoding
= (image
->format
& PNG_FORMAT_FLAG_LINEAR
) != 0 ?
1769 int convert_to_Y
= (image
->format
& PNG_FORMAT_FLAG_COLOR
) == 0 &&
1770 (red
!= green
|| green
!= blue
);
1773 png_error(image
->opaque
->png_ptr
, "color-map index out of range");
1775 /* Update the cache with whether the file gamma is significantly different
1778 if (encoding
== P_FILE
)
1780 if (display
->file_encoding
== P_NOTSET
)
1781 set_file_encoding(display
);
1783 /* Note that the cached value may be P_FILE too, but if it is then the
1784 * gamma_to_linear member has been set.
1786 encoding
= display
->file_encoding
;
1789 if (encoding
== P_FILE
)
1791 png_fixed_point g
= display
->gamma_to_linear
;
1793 red
= png_gamma_16bit_correct(red
*257, g
);
1794 green
= png_gamma_16bit_correct(green
*257, g
);
1795 blue
= png_gamma_16bit_correct(blue
*257, g
);
1797 if (convert_to_Y
!= 0 || output_encoding
== P_LINEAR
)
1800 encoding
= P_LINEAR
;
1805 red
= PNG_sRGB_FROM_LINEAR(red
* 255);
1806 green
= PNG_sRGB_FROM_LINEAR(green
* 255);
1807 blue
= PNG_sRGB_FROM_LINEAR(blue
* 255);
1812 else if (encoding
== P_LINEAR8
)
1814 /* This encoding occurs quite frequently in test cases because PngSuite
1815 * includes a gAMA 1.0 chunk with most images.
1821 encoding
= P_LINEAR
;
1824 else if (encoding
== P_sRGB
&&
1825 (convert_to_Y
!= 0 || output_encoding
== P_LINEAR
))
1827 /* The values are 8-bit sRGB values, but must be converted to 16-bit
1830 red
= png_sRGB_table
[red
];
1831 green
= png_sRGB_table
[green
];
1832 blue
= png_sRGB_table
[blue
];
1834 encoding
= P_LINEAR
;
1837 /* This is set if the color isn't gray but the output is. */
1838 if (encoding
== P_LINEAR
)
1840 if (convert_to_Y
!= 0)
1842 /* NOTE: these values are copied from png_do_rgb_to_gray */
1843 png_uint_32 y
= (png_uint_32
)6968 * red
+ (png_uint_32
)23434 * green
+
1844 (png_uint_32
)2366 * blue
;
1846 if (output_encoding
== P_LINEAR
)
1847 y
= (y
+ 16384) >> 15;
1851 /* y is scaled by 32768, we need it scaled by 255: */
1854 y
= PNG_sRGB_FROM_LINEAR((y
+ 64) >> 7);
1855 alpha
= PNG_DIV257(alpha
);
1859 blue
= red
= green
= y
;
1862 else if (output_encoding
== P_sRGB
)
1864 red
= PNG_sRGB_FROM_LINEAR(red
* 255);
1865 green
= PNG_sRGB_FROM_LINEAR(green
* 255);
1866 blue
= PNG_sRGB_FROM_LINEAR(blue
* 255);
1867 alpha
= PNG_DIV257(alpha
);
1872 if (encoding
!= output_encoding
)
1873 png_error(image
->opaque
->png_ptr
, "bad encoding (internal error)");
1875 /* Store the value. */
1877 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
1878 int afirst
= (image
->format
& PNG_FORMAT_FLAG_AFIRST
) != 0 &&
1879 (image
->format
& PNG_FORMAT_FLAG_ALPHA
) != 0;
1883 # ifdef PNG_FORMAT_BGR_SUPPORTED
1884 int bgr
= (image
->format
& PNG_FORMAT_FLAG_BGR
) != 0 ? 2 : 0;
1889 if (output_encoding
== P_LINEAR
)
1891 png_uint_16p entry
= png_voidcast(png_uint_16p
, display
->colormap
);
1893 entry
+= ip
* PNG_IMAGE_SAMPLE_CHANNELS(image
->format
);
1895 /* The linear 16-bit values must be pre-multiplied by the alpha channel
1896 * value, if less than 65535 (this is, effectively, composite on black
1897 * if the alpha channel is removed.)
1899 switch (PNG_IMAGE_SAMPLE_CHANNELS(image
->format
))
1902 entry
[afirst
? 0 : 3] = (png_uint_16
)alpha
;
1910 blue
= (blue
* alpha
+ 32767U)/65535U;
1911 green
= (green
* alpha
+ 32767U)/65535U;
1912 red
= (red
* alpha
+ 32767U)/65535U;
1916 red
= green
= blue
= 0;
1918 entry
[afirst
+ (2 ^ bgr
)] = (png_uint_16
)blue
;
1919 entry
[afirst
+ 1] = (png_uint_16
)green
;
1920 entry
[afirst
+ bgr
] = (png_uint_16
)red
;
1924 entry
[1 ^ afirst
] = (png_uint_16
)alpha
;
1931 green
= (green
* alpha
+ 32767U)/65535U;
1936 entry
[afirst
] = (png_uint_16
)green
;
1944 else /* output encoding is P_sRGB */
1946 png_bytep entry
= png_voidcast(png_bytep
, display
->colormap
);
1948 entry
+= ip
* PNG_IMAGE_SAMPLE_CHANNELS(image
->format
);
1950 switch (PNG_IMAGE_SAMPLE_CHANNELS(image
->format
))
1953 entry
[afirst
? 0 : 3] = (png_byte
)alpha
;
1956 entry
[afirst
+ (2 ^ bgr
)] = (png_byte
)blue
;
1957 entry
[afirst
+ 1] = (png_byte
)green
;
1958 entry
[afirst
+ bgr
] = (png_byte
)red
;
1962 entry
[1 ^ afirst
] = (png_byte
)alpha
;
1965 entry
[afirst
] = (png_byte
)green
;
1983 make_gray_file_colormap(png_image_read_control
*display
)
1987 for (i
=0; i
<256; ++i
)
1988 png_create_colormap_entry(display
, i
, i
, i
, i
, 255, P_FILE
);
1994 make_gray_colormap(png_image_read_control
*display
)
1998 for (i
=0; i
<256; ++i
)
1999 png_create_colormap_entry(display
, i
, i
, i
, i
, 255, P_sRGB
);
2003 #define PNG_GRAY_COLORMAP_ENTRIES 256
2006 make_ga_colormap(png_image_read_control
*display
)
2010 /* Alpha is retained, the output will be a color-map with entries
2011 * selected by six levels of alpha. One transparent entry, 6 gray
2012 * levels for all the intermediate alpha values, leaving 230 entries
2013 * for the opaque grays. The color-map entries are the six values
2014 * [0..5]*51, the GA processing uses PNG_DIV51(value) to find the
2017 * if (alpha > 229) // opaque
2019 * // The 231 entries are selected to make the math below work:
2021 * entry = (231 * gray + 128) >> 8;
2023 * else if (alpha < 26) // transparent
2028 * else // partially opaque
2030 * base = 226 + 6 * PNG_DIV51(alpha);
2031 * entry = PNG_DIV51(gray);
2037 unsigned int gray
= (i
* 256 + 115) / 231;
2038 png_create_colormap_entry(display
, i
++, gray
, gray
, gray
, 255, P_sRGB
);
2041 /* 255 is used here for the component values for consistency with the code
2042 * that undoes premultiplication in pngwrite.c.
2044 png_create_colormap_entry(display
, i
++, 255, 255, 255, 0, P_sRGB
);
2051 png_create_colormap_entry(display
, i
++, g
*51, g
*51, g
*51, a
*51,
2058 #define PNG_GA_COLORMAP_ENTRIES 256
2061 make_rgb_colormap(png_image_read_control
*display
)
2065 /* Build a 6x6x6 opaque RGB cube */
2066 for (i
=r
=0; r
<6; ++r
)
2075 png_create_colormap_entry(display
, i
++, r
*51, g
*51, b
*51, 255,
2083 #define PNG_RGB_COLORMAP_ENTRIES 216
2085 /* Return a palette index to the above palette given three 8-bit sRGB values. */
2086 #define PNG_RGB_INDEX(r,g,b) \
2087 ((png_byte)(6 * (6 * PNG_DIV51(r) + PNG_DIV51(g)) + PNG_DIV51(b)))
2090 png_image_read_colormap(png_voidp argument
)
2092 png_image_read_control
*display
=
2093 png_voidcast(png_image_read_control
*, argument
);
2094 png_imagep image
= display
->image
;
2096 png_structrp png_ptr
= image
->opaque
->png_ptr
;
2097 png_uint_32 output_format
= image
->format
;
2098 int output_encoding
= (output_format
& PNG_FORMAT_FLAG_LINEAR
) != 0 ?
2101 unsigned int cmap_entries
;
2102 unsigned int output_processing
; /* Output processing option */
2103 unsigned int data_encoding
= P_NOTSET
; /* Encoding libpng must produce */
2105 /* Background information; the background color and the index of this color
2106 * in the color-map if it exists (else 256).
2108 unsigned int background_index
= 256;
2109 png_uint_32 back_r
, back_g
, back_b
;
2111 /* Flags to accumulate things that need to be done to the input. */
2112 int expand_tRNS
= 0;
2114 /* Exclude the NYI feature of compositing onto a color-mapped buffer; it is
2115 * very difficult to do, the results look awful, and it is difficult to see
2116 * what possible use it is because the application can't control the
2119 if (((png_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0 ||
2120 png_ptr
->num_trans
> 0) /* alpha in input */ &&
2121 ((output_format
& PNG_FORMAT_FLAG_ALPHA
) == 0) /* no alpha in output */)
2123 if (output_encoding
== P_LINEAR
) /* compose on black */
2124 back_b
= back_g
= back_r
= 0;
2126 else if (display
->background
== NULL
/* no way to remove it */)
2128 "background color must be supplied to remove alpha/transparency");
2130 /* Get a copy of the background color (this avoids repeating the checks
2131 * below.) The encoding is 8-bit sRGB or 16-bit linear, depending on the
2136 back_g
= display
->background
->green
;
2137 if ((output_format
& PNG_FORMAT_FLAG_COLOR
) != 0)
2139 back_r
= display
->background
->red
;
2140 back_b
= display
->background
->blue
;
2143 back_b
= back_r
= back_g
;
2147 else if (output_encoding
== P_LINEAR
)
2148 back_b
= back_r
= back_g
= 65535;
2151 back_b
= back_r
= back_g
= 255;
2153 /* Default the input file gamma if required - this is necessary because
2154 * libpng assumes that if no gamma information is present the data is in the
2155 * output format, but the simplified API deduces the gamma from the input
2158 if ((png_ptr
->colorspace
.flags
& PNG_COLORSPACE_HAVE_GAMMA
) == 0)
2160 /* Do this directly, not using the png_colorspace functions, to ensure
2161 * that it happens even if the colorspace is invalid (though probably if
2162 * it is the setting will be ignored) Note that the same thing can be
2163 * achieved at the application interface with png_set_gAMA.
2165 if (png_ptr
->bit_depth
== 16 &&
2166 (image
->flags
& PNG_IMAGE_FLAG_16BIT_sRGB
) == 0)
2167 png_ptr
->colorspace
.gamma
= PNG_GAMMA_LINEAR
;
2170 png_ptr
->colorspace
.gamma
= PNG_GAMMA_sRGB_INVERSE
;
2172 png_ptr
->colorspace
.flags
|= PNG_COLORSPACE_HAVE_GAMMA
;
2175 /* Decide what to do based on the PNG color type of the input data. The
2176 * utility function png_create_colormap_entry deals with most aspects of the
2177 * output transformations; this code works out how to produce bytes of
2178 * color-map entries from the original format.
2180 switch (png_ptr
->color_type
)
2182 case PNG_COLOR_TYPE_GRAY
:
2183 if (png_ptr
->bit_depth
<= 8)
2185 /* There at most 256 colors in the output, regardless of
2188 unsigned int step
, i
, val
, trans
= 256/*ignore*/, back_alpha
= 0;
2190 cmap_entries
= 1U << png_ptr
->bit_depth
;
2191 if (cmap_entries
> image
->colormap_entries
)
2192 png_error(png_ptr
, "gray[8] color-map: too few entries");
2194 step
= 255 / (cmap_entries
- 1);
2195 output_processing
= PNG_CMAP_NONE
;
2197 /* If there is a tRNS chunk then this either selects a transparent
2198 * value or, if the output has no alpha, the background color.
2200 if (png_ptr
->num_trans
> 0)
2202 trans
= png_ptr
->trans_color
.gray
;
2204 if ((output_format
& PNG_FORMAT_FLAG_ALPHA
) == 0)
2205 back_alpha
= output_encoding
== P_LINEAR
? 65535 : 255;
2208 /* png_create_colormap_entry just takes an RGBA and writes the
2209 * corresponding color-map entry using the format from 'image',
2210 * including the required conversion to sRGB or linear as
2211 * appropriate. The input values are always either sRGB (if the
2212 * gamma correction flag is 0) or 0..255 scaled file encoded values
2213 * (if the function must gamma correct them).
2215 for (i
=val
=0; i
<cmap_entries
; ++i
, val
+= step
)
2217 /* 'i' is a file value. While this will result in duplicated
2218 * entries for 8-bit non-sRGB encoded files it is necessary to
2219 * have non-gamma corrected values to do tRNS handling.
2222 png_create_colormap_entry(display
, i
, val
, val
, val
, 255,
2223 P_FILE
/*8-bit with file gamma*/);
2225 /* Else this entry is transparent. The colors don't matter if
2226 * there is an alpha channel (back_alpha == 0), but it does no
2227 * harm to pass them in; the values are not set above so this
2230 * NOTE: this preserves the full precision of the application
2231 * supplied background color when it is used.
2234 png_create_colormap_entry(display
, i
, back_r
, back_g
, back_b
,
2235 back_alpha
, output_encoding
);
2238 /* We need libpng to preserve the original encoding. */
2239 data_encoding
= P_FILE
;
2241 /* The rows from libpng, while technically gray values, are now also
2242 * color-map indices; however, they may need to be expanded to 1
2243 * byte per pixel. This is what png_set_packing does (i.e., it
2244 * unpacks the bit values into bytes.)
2246 if (png_ptr
->bit_depth
< 8)
2247 png_set_packing(png_ptr
);
2250 else /* bit depth is 16 */
2252 /* The 16-bit input values can be converted directly to 8-bit gamma
2253 * encoded values; however, if a tRNS chunk is present 257 color-map
2254 * entries are required. This means that the extra entry requires
2255 * special processing; add an alpha channel, sacrifice gray level
2256 * 254 and convert transparent (alpha==0) entries to that.
2258 * Use libpng to chop the data to 8 bits. Convert it to sRGB at the
2259 * same time to minimize quality loss. If a tRNS chunk is present
2260 * this means libpng must handle it too; otherwise it is impossible
2261 * to do the exact match on the 16-bit value.
2263 * If the output has no alpha channel *and* the background color is
2264 * gray then it is possible to let libpng handle the substitution by
2265 * ensuring that the corresponding gray level matches the background
2268 data_encoding
= P_sRGB
;
2270 if (PNG_GRAY_COLORMAP_ENTRIES
> image
->colormap_entries
)
2271 png_error(png_ptr
, "gray[16] color-map: too few entries");
2273 cmap_entries
= (unsigned int)make_gray_colormap(display
);
2275 if (png_ptr
->num_trans
> 0)
2277 unsigned int back_alpha
;
2279 if ((output_format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
2284 if (back_r
== back_g
&& back_g
== back_b
)
2286 /* Background is gray; no special processing will be
2290 png_uint_32 gray
= back_g
;
2292 if (output_encoding
== P_LINEAR
)
2294 gray
= PNG_sRGB_FROM_LINEAR(gray
* 255);
2296 /* And make sure the corresponding palette entry
2299 png_create_colormap_entry(display
, gray
, back_g
, back_g
,
2300 back_g
, 65535, P_LINEAR
);
2303 /* The background passed to libpng, however, must be the
2306 c
.index
= 0; /*unused*/
2307 c
.gray
= c
.red
= c
.green
= c
.blue
= (png_uint_16
)gray
;
2309 /* NOTE: does this work without expanding tRNS to alpha?
2310 * It should be the color->gray case below apparently
2313 png_set_background_fixed(png_ptr
, &c
,
2314 PNG_BACKGROUND_GAMMA_SCREEN
, 0/*need_expand*/,
2315 0/*gamma: not used*/);
2317 output_processing
= PNG_CMAP_NONE
;
2321 /* Coverity claims that output_encoding cannot be 2 (P_LINEAR)
2326 back_alpha
= output_encoding
== P_LINEAR
? 65535 : 255;
2330 /* output_processing means that the libpng-processed row will be
2331 * 8-bit GA and it has to be processing to single byte color-map
2332 * values. Entry 254 is replaced by either a completely
2333 * transparent entry or by the background color at full
2334 * precision (and the background color is not a simple gray
2335 * level in this case.)
2338 output_processing
= PNG_CMAP_TRANS
;
2339 background_index
= 254;
2341 /* And set (overwrite) color-map entry 254 to the actual
2342 * background color at full precision.
2344 png_create_colormap_entry(display
, 254, back_r
, back_g
, back_b
,
2345 back_alpha
, output_encoding
);
2349 output_processing
= PNG_CMAP_NONE
;
2353 case PNG_COLOR_TYPE_GRAY_ALPHA
:
2354 /* 8-bit or 16-bit PNG with two channels - gray and alpha. A minimum
2355 * of 65536 combinations. If, however, the alpha channel is to be
2356 * removed there are only 256 possibilities if the background is gray.
2357 * (Otherwise there is a subset of the 65536 possibilities defined by
2358 * the triangle between black, white and the background color.)
2360 * Reduce 16-bit files to 8-bit and sRGB encode the result. No need to
2361 * worry about tRNS matching - tRNS is ignored if there is an alpha
2364 data_encoding
= P_sRGB
;
2366 if ((output_format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
2368 if (PNG_GA_COLORMAP_ENTRIES
> image
->colormap_entries
)
2369 png_error(png_ptr
, "gray+alpha color-map: too few entries");
2371 cmap_entries
= (unsigned int)make_ga_colormap(display
);
2373 background_index
= PNG_CMAP_GA_BACKGROUND
;
2374 output_processing
= PNG_CMAP_GA
;
2377 else /* alpha is removed */
2379 /* Alpha must be removed as the PNG data is processed when the
2380 * background is a color because the G and A channels are
2381 * independent and the vector addition (non-parallel vectors) is a
2384 * This can be reduced to the same algorithm as above by making a
2385 * colormap containing gray levels (for the opaque grays), a
2386 * background entry (for a transparent pixel) and a set of four six
2387 * level color values, one set for each intermediate alpha value.
2388 * See the comments in make_ga_colormap for how this works in the
2389 * per-pixel processing.
2391 * If the background is gray, however, we only need a 256 entry gray
2392 * level color map. It is sufficient to make the entry generated
2393 * for the background color be exactly the color specified.
2395 if ((output_format
& PNG_FORMAT_FLAG_COLOR
) == 0 ||
2396 (back_r
== back_g
&& back_g
== back_b
))
2398 /* Background is gray; no special processing will be required. */
2400 png_uint_32 gray
= back_g
;
2402 if (PNG_GRAY_COLORMAP_ENTRIES
> image
->colormap_entries
)
2403 png_error(png_ptr
, "gray-alpha color-map: too few entries");
2405 cmap_entries
= (unsigned int)make_gray_colormap(display
);
2407 if (output_encoding
== P_LINEAR
)
2409 gray
= PNG_sRGB_FROM_LINEAR(gray
* 255);
2411 /* And make sure the corresponding palette entry matches. */
2412 png_create_colormap_entry(display
, gray
, back_g
, back_g
,
2413 back_g
, 65535, P_LINEAR
);
2416 /* The background passed to libpng, however, must be the sRGB
2419 c
.index
= 0; /*unused*/
2420 c
.gray
= c
.red
= c
.green
= c
.blue
= (png_uint_16
)gray
;
2422 png_set_background_fixed(png_ptr
, &c
,
2423 PNG_BACKGROUND_GAMMA_SCREEN
, 0/*need_expand*/,
2424 0/*gamma: not used*/);
2426 output_processing
= PNG_CMAP_NONE
;
2433 /* This is the same as png_make_ga_colormap, above, except that
2434 * the entries are all opaque.
2436 if (PNG_GA_COLORMAP_ENTRIES
> image
->colormap_entries
)
2437 png_error(png_ptr
, "ga-alpha color-map: too few entries");
2442 png_uint_32 gray
= (i
* 256 + 115) / 231;
2443 png_create_colormap_entry(display
, i
++, gray
, gray
, gray
,
2447 /* NOTE: this preserves the full precision of the application
2450 background_index
= i
;
2451 png_create_colormap_entry(display
, i
++, back_r
, back_g
, back_b
,
2453 /* Coverity claims that output_encoding
2454 * cannot be 2 (P_LINEAR) here.
2457 output_encoding
== P_LINEAR
? 65535U : 255U,
2461 /* For non-opaque input composite on the sRGB background - this
2462 * requires inverting the encoding for each component. The input
2463 * is still converted to the sRGB encoding because this is a
2464 * reasonable approximate to the logarithmic curve of human
2465 * visual sensitivity, at least over the narrow range which PNG
2466 * represents. Consequently 'G' is always sRGB encoded, while
2467 * 'A' is linear. We need the linear background colors.
2469 if (output_encoding
== P_sRGB
) /* else already linear */
2471 /* This may produce a value not exactly matching the
2472 * background, but that's ok because these numbers are only
2473 * used when alpha != 0
2475 back_r
= png_sRGB_table
[back_r
];
2476 back_g
= png_sRGB_table
[back_g
];
2477 back_b
= png_sRGB_table
[back_b
];
2484 /* PNG_sRGB_FROM_LINEAR expects a 16-bit linear value scaled
2485 * by an 8-bit alpha value (0..255).
2487 png_uint_32 alpha
= 51 * a
;
2488 png_uint_32 back_rx
= (255-alpha
) * back_r
;
2489 png_uint_32 back_gx
= (255-alpha
) * back_g
;
2490 png_uint_32 back_bx
= (255-alpha
) * back_b
;
2494 png_uint_32 gray
= png_sRGB_table
[g
*51] * alpha
;
2496 png_create_colormap_entry(display
, i
++,
2497 PNG_sRGB_FROM_LINEAR(gray
+ back_rx
),
2498 PNG_sRGB_FROM_LINEAR(gray
+ back_gx
),
2499 PNG_sRGB_FROM_LINEAR(gray
+ back_bx
), 255, P_sRGB
);
2504 output_processing
= PNG_CMAP_GA
;
2509 case PNG_COLOR_TYPE_RGB
:
2510 case PNG_COLOR_TYPE_RGB_ALPHA
:
2511 /* Exclude the case where the output is gray; we can always handle this
2512 * with the cases above.
2514 if ((output_format
& PNG_FORMAT_FLAG_COLOR
) == 0)
2516 /* The color-map will be grayscale, so we may as well convert the
2517 * input RGB values to a simple grayscale and use the grayscale
2520 * NOTE: calling this apparently damages the recognition of the
2521 * transparent color in background color handling; call
2522 * png_set_tRNS_to_alpha before png_set_background_fixed.
2524 png_set_rgb_to_gray_fixed(png_ptr
, PNG_ERROR_ACTION_NONE
, -1,
2526 data_encoding
= P_sRGB
;
2528 /* The output will now be one or two 8-bit gray or gray+alpha
2529 * channels. The more complex case arises when the input has alpha.
2531 if ((png_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
||
2532 png_ptr
->num_trans
> 0) &&
2533 (output_format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
2535 /* Both input and output have an alpha channel, so no background
2536 * processing is required; just map the GA bytes to the right
2541 if (PNG_GA_COLORMAP_ENTRIES
> image
->colormap_entries
)
2542 png_error(png_ptr
, "rgb[ga] color-map: too few entries");
2544 cmap_entries
= (unsigned int)make_ga_colormap(display
);
2545 background_index
= PNG_CMAP_GA_BACKGROUND
;
2546 output_processing
= PNG_CMAP_GA
;
2551 /* Either the input or the output has no alpha channel, so there
2552 * will be no non-opaque pixels in the color-map; it will just be
2555 if (PNG_GRAY_COLORMAP_ENTRIES
> image
->colormap_entries
)
2556 png_error(png_ptr
, "rgb[gray] color-map: too few entries");
2558 /* Ideally this code would use libpng to do the gamma correction,
2559 * but if an input alpha channel is to be removed we will hit the
2560 * libpng bug in gamma+compose+rgb-to-gray (the double gamma
2561 * correction bug). Fix this by dropping the gamma correction in
2562 * this case and doing it in the palette; this will result in
2563 * duplicate palette entries, but that's better than the
2564 * alternative of double gamma correction.
2566 if ((png_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
||
2567 png_ptr
->num_trans
> 0) &&
2568 png_gamma_not_sRGB(png_ptr
->colorspace
.gamma
) != 0)
2570 cmap_entries
= (unsigned int)make_gray_file_colormap(display
);
2571 data_encoding
= P_FILE
;
2575 cmap_entries
= (unsigned int)make_gray_colormap(display
);
2577 /* But if the input has alpha or transparency it must be removed
2579 if (png_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
||
2580 png_ptr
->num_trans
> 0)
2583 png_uint_32 gray
= back_g
;
2585 /* We need to ensure that the application background exists in
2586 * the colormap and that completely transparent pixels map to
2587 * it. Achieve this simply by ensuring that the entry
2588 * selected for the background really is the background color.
2590 if (data_encoding
== P_FILE
) /* from the fixup above */
2592 /* The app supplied a gray which is in output_encoding, we
2593 * need to convert it to a value of the input (P_FILE)
2594 * encoding then set this palette entry to the required
2597 if (output_encoding
== P_sRGB
)
2598 gray
= png_sRGB_table
[gray
]; /* now P_LINEAR */
2600 gray
= PNG_DIV257(png_gamma_16bit_correct(gray
,
2601 png_ptr
->colorspace
.gamma
)); /* now P_FILE */
2603 /* And make sure the corresponding palette entry contains
2604 * exactly the required sRGB value.
2606 png_create_colormap_entry(display
, gray
, back_g
, back_g
,
2607 back_g
, 0/*unused*/, output_encoding
);
2610 else if (output_encoding
== P_LINEAR
)
2612 gray
= PNG_sRGB_FROM_LINEAR(gray
* 255);
2614 /* And make sure the corresponding palette entry matches.
2616 png_create_colormap_entry(display
, gray
, back_g
, back_g
,
2617 back_g
, 0/*unused*/, P_LINEAR
);
2620 /* The background passed to libpng, however, must be the
2621 * output (normally sRGB) value.
2623 c
.index
= 0; /*unused*/
2624 c
.gray
= c
.red
= c
.green
= c
.blue
= (png_uint_16
)gray
;
2626 /* NOTE: the following is apparently a bug in libpng. Without
2627 * it the transparent color recognition in
2628 * png_set_background_fixed seems to go wrong.
2631 png_set_background_fixed(png_ptr
, &c
,
2632 PNG_BACKGROUND_GAMMA_SCREEN
, 0/*need_expand*/,
2633 0/*gamma: not used*/);
2636 output_processing
= PNG_CMAP_NONE
;
2640 else /* output is color */
2642 /* We could use png_quantize here so long as there is no transparent
2643 * color or alpha; png_quantize ignores alpha. Easier overall just
2644 * to do it once and using PNG_DIV51 on the 6x6x6 reduced RGB cube.
2645 * Consequently we always want libpng to produce sRGB data.
2647 data_encoding
= P_sRGB
;
2649 /* Is there any transparency or alpha? */
2650 if (png_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
||
2651 png_ptr
->num_trans
> 0)
2653 /* Is there alpha in the output too? If so all four channels are
2654 * processed into a special RGB cube with alpha support.
2656 if ((output_format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
2660 if (PNG_RGB_COLORMAP_ENTRIES
+1+27 > image
->colormap_entries
)
2661 png_error(png_ptr
, "rgb+alpha color-map: too few entries");
2663 cmap_entries
= (unsigned int)make_rgb_colormap(display
);
2665 /* Add a transparent entry. */
2666 png_create_colormap_entry(display
, cmap_entries
, 255, 255,
2669 /* This is stored as the background index for the processing
2672 background_index
= cmap_entries
++;
2674 /* Add 27 r,g,b entries each with alpha 0.5. */
2675 for (r
=0; r
<256; r
= (r
<< 1) | 0x7f)
2679 for (g
=0; g
<256; g
= (g
<< 1) | 0x7f)
2683 /* This generates components with the values 0, 127 and
2686 for (b
=0; b
<256; b
= (b
<< 1) | 0x7f)
2687 png_create_colormap_entry(display
, cmap_entries
++,
2688 r
, g
, b
, 128, P_sRGB
);
2693 output_processing
= PNG_CMAP_RGB_ALPHA
;
2698 /* Alpha/transparency must be removed. The background must
2699 * exist in the color map (achieved by setting adding it after
2700 * the 666 color-map). If the standard processing code will
2701 * pick up this entry automatically that's all that is
2702 * required; libpng can be called to do the background
2705 unsigned int sample_size
=
2706 PNG_IMAGE_SAMPLE_SIZE(output_format
);
2707 png_uint_32 r
, g
, b
; /* sRGB background */
2709 if (PNG_RGB_COLORMAP_ENTRIES
+1+27 > image
->colormap_entries
)
2710 png_error(png_ptr
, "rgb-alpha color-map: too few entries");
2712 cmap_entries
= (unsigned int)make_rgb_colormap(display
);
2714 png_create_colormap_entry(display
, cmap_entries
, back_r
,
2715 back_g
, back_b
, 0/*unused*/, output_encoding
);
2717 if (output_encoding
== P_LINEAR
)
2719 r
= PNG_sRGB_FROM_LINEAR(back_r
* 255);
2720 g
= PNG_sRGB_FROM_LINEAR(back_g
* 255);
2721 b
= PNG_sRGB_FROM_LINEAR(back_b
* 255);
2731 /* Compare the newly-created color-map entry with the one the
2732 * PNG_CMAP_RGB algorithm will use. If the two entries don't
2733 * match, add the new one and set this as the background
2736 if (memcmp((png_const_bytep
)display
->colormap
+
2737 sample_size
* cmap_entries
,
2738 (png_const_bytep
)display
->colormap
+
2739 sample_size
* PNG_RGB_INDEX(r
,g
,b
),
2742 /* The background color must be added. */
2743 background_index
= cmap_entries
++;
2745 /* Add 27 r,g,b entries each with created by composing with
2746 * the background at alpha 0.5.
2748 for (r
=0; r
<256; r
= (r
<< 1) | 0x7f)
2750 for (g
=0; g
<256; g
= (g
<< 1) | 0x7f)
2752 /* This generates components with the values 0, 127
2755 for (b
=0; b
<256; b
= (b
<< 1) | 0x7f)
2756 png_create_colormap_entry(display
, cmap_entries
++,
2757 png_colormap_compose(display
, r
, P_sRGB
, 128,
2758 back_r
, output_encoding
),
2759 png_colormap_compose(display
, g
, P_sRGB
, 128,
2760 back_g
, output_encoding
),
2761 png_colormap_compose(display
, b
, P_sRGB
, 128,
2762 back_b
, output_encoding
),
2763 0/*unused*/, output_encoding
);
2768 output_processing
= PNG_CMAP_RGB_ALPHA
;
2771 else /* background color is in the standard color-map */
2775 c
.index
= 0; /*unused*/
2776 c
.red
= (png_uint_16
)back_r
;
2777 c
.gray
= c
.green
= (png_uint_16
)back_g
;
2778 c
.blue
= (png_uint_16
)back_b
;
2780 png_set_background_fixed(png_ptr
, &c
,
2781 PNG_BACKGROUND_GAMMA_SCREEN
, 0/*need_expand*/,
2782 0/*gamma: not used*/);
2784 output_processing
= PNG_CMAP_RGB
;
2789 else /* no alpha or transparency in the input */
2791 /* Alpha in the output is irrelevant, simply map the opaque input
2792 * pixels to the 6x6x6 color-map.
2794 if (PNG_RGB_COLORMAP_ENTRIES
> image
->colormap_entries
)
2795 png_error(png_ptr
, "rgb color-map: too few entries");
2797 cmap_entries
= (unsigned int)make_rgb_colormap(display
);
2798 output_processing
= PNG_CMAP_RGB
;
2803 case PNG_COLOR_TYPE_PALETTE
:
2804 /* It's already got a color-map. It may be necessary to eliminate the
2805 * tRNS entries though.
2808 unsigned int num_trans
= png_ptr
->num_trans
;
2809 png_const_bytep trans
= num_trans
> 0 ? png_ptr
->trans_alpha
: NULL
;
2810 png_const_colorp colormap
= png_ptr
->palette
;
2811 int do_background
= trans
!= NULL
&&
2812 (output_format
& PNG_FORMAT_FLAG_ALPHA
) == 0;
2819 output_processing
= PNG_CMAP_NONE
;
2820 data_encoding
= P_FILE
; /* Don't change from color-map indices */
2821 cmap_entries
= (unsigned int)png_ptr
->num_palette
;
2822 if (cmap_entries
> 256)
2825 if (cmap_entries
> (unsigned int)image
->colormap_entries
)
2826 png_error(png_ptr
, "palette color-map: too few entries");
2828 for (i
=0; i
< cmap_entries
; ++i
)
2830 if (do_background
!= 0 && i
< num_trans
&& trans
[i
] < 255)
2833 png_create_colormap_entry(display
, i
, back_r
, back_g
,
2834 back_b
, 0, output_encoding
);
2838 /* Must compose the PNG file color in the color-map entry
2839 * on the sRGB color in 'back'.
2841 png_create_colormap_entry(display
, i
,
2842 png_colormap_compose(display
, colormap
[i
].red
,
2843 P_FILE
, trans
[i
], back_r
, output_encoding
),
2844 png_colormap_compose(display
, colormap
[i
].green
,
2845 P_FILE
, trans
[i
], back_g
, output_encoding
),
2846 png_colormap_compose(display
, colormap
[i
].blue
,
2847 P_FILE
, trans
[i
], back_b
, output_encoding
),
2848 output_encoding
== P_LINEAR
? trans
[i
] * 257U :
2855 png_create_colormap_entry(display
, i
, colormap
[i
].red
,
2856 colormap
[i
].green
, colormap
[i
].blue
,
2857 i
< num_trans
? trans
[i
] : 255U, P_FILE
/*8-bit*/);
2860 /* The PNG data may have indices packed in fewer than 8 bits, it
2861 * must be expanded if so.
2863 if (png_ptr
->bit_depth
< 8)
2864 png_set_packing(png_ptr
);
2869 png_error(png_ptr
, "invalid PNG color type");
2873 /* Now deal with the output processing */
2874 if (expand_tRNS
!= 0 && png_ptr
->num_trans
> 0 &&
2875 (png_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
) == 0)
2876 png_set_tRNS_to_alpha(png_ptr
);
2878 switch (data_encoding
)
2881 /* Change to 8-bit sRGB */
2882 png_set_alpha_mode_fixed(png_ptr
, PNG_ALPHA_PNG
, PNG_GAMMA_sRGB
);
2886 if (png_ptr
->bit_depth
> 8)
2887 png_set_scale_16(png_ptr
);
2892 png_error(png_ptr
, "bad data option (internal error)");
2896 if (cmap_entries
> 256 || cmap_entries
> image
->colormap_entries
)
2897 png_error(png_ptr
, "color map overflow (BAD internal error)");
2899 image
->colormap_entries
= cmap_entries
;
2901 /* Double check using the recorded background index */
2902 switch (output_processing
)
2905 if (background_index
!= PNG_CMAP_NONE_BACKGROUND
)
2906 goto bad_background
;
2910 if (background_index
!= PNG_CMAP_GA_BACKGROUND
)
2911 goto bad_background
;
2914 case PNG_CMAP_TRANS
:
2915 if (background_index
>= cmap_entries
||
2916 background_index
!= PNG_CMAP_TRANS_BACKGROUND
)
2917 goto bad_background
;
2921 if (background_index
!= PNG_CMAP_RGB_BACKGROUND
)
2922 goto bad_background
;
2925 case PNG_CMAP_RGB_ALPHA
:
2926 if (background_index
!= PNG_CMAP_RGB_ALPHA_BACKGROUND
)
2927 goto bad_background
;
2931 png_error(png_ptr
, "bad processing option (internal error)");
2934 png_error(png_ptr
, "bad background index (internal error)");
2937 display
->colormap_processing
= (int)output_processing
;
2942 /* The final part of the color-map read called from png_image_finish_read. */
2944 png_image_read_and_map(png_voidp argument
)
2946 png_image_read_control
*display
= png_voidcast(png_image_read_control
*,
2948 png_imagep image
= display
->image
;
2949 png_structrp png_ptr
= image
->opaque
->png_ptr
;
2952 /* Called when the libpng data must be transformed into the color-mapped
2953 * form. There is a local row buffer in display->local and this routine must
2954 * do the interlace handling.
2956 switch (png_ptr
->interlaced
)
2958 case PNG_INTERLACE_NONE
:
2962 case PNG_INTERLACE_ADAM7
:
2963 passes
= PNG_INTERLACE_ADAM7_PASSES
;
2967 png_error(png_ptr
, "unknown interlace type");
2971 png_uint_32 height
= image
->height
;
2972 png_uint_32 width
= image
->width
;
2973 int proc
= display
->colormap_processing
;
2974 png_bytep first_row
= png_voidcast(png_bytep
, display
->first_row
);
2975 ptrdiff_t step_row
= display
->row_bytes
;
2978 for (pass
= 0; pass
< passes
; ++pass
)
2980 unsigned int startx
, stepx
, stepy
;
2983 if (png_ptr
->interlaced
== PNG_INTERLACE_ADAM7
)
2985 /* The row may be empty for a short image: */
2986 if (PNG_PASS_COLS(width
, pass
) == 0)
2989 startx
= PNG_PASS_START_COL(pass
);
2990 stepx
= PNG_PASS_COL_OFFSET(pass
);
2991 y
= PNG_PASS_START_ROW(pass
);
2992 stepy
= PNG_PASS_ROW_OFFSET(pass
);
3002 for (; y
<height
; y
+= stepy
)
3004 png_bytep inrow
= png_voidcast(png_bytep
, display
->local_row
);
3005 png_bytep outrow
= first_row
+ y
* step_row
;
3006 png_const_bytep end_row
= outrow
+ width
;
3008 /* Read read the libpng data into the temporary buffer. */
3009 png_read_row(png_ptr
, inrow
, NULL
);
3011 /* Now process the row according to the processing option, note
3012 * that the caller verifies that the format of the libpng output
3013 * data is as required.
3019 for (; outrow
< end_row
; outrow
+= stepx
)
3021 /* The data is always in the PNG order */
3022 unsigned int gray
= *inrow
++;
3023 unsigned int alpha
= *inrow
++;
3026 /* NOTE: this code is copied as a comment in
3027 * make_ga_colormap above. Please update the
3028 * comment if you change this code!
3030 if (alpha
> 229) /* opaque */
3032 entry
= (231 * gray
+ 128) >> 8;
3034 else if (alpha
< 26) /* transparent */
3038 else /* partially opaque */
3040 entry
= 226 + 6 * PNG_DIV51(alpha
) + PNG_DIV51(gray
);
3043 *outrow
= (png_byte
)entry
;
3047 case PNG_CMAP_TRANS
:
3048 for (; outrow
< end_row
; outrow
+= stepx
)
3050 png_byte gray
= *inrow
++;
3051 png_byte alpha
= *inrow
++;
3054 *outrow
= PNG_CMAP_TRANS_BACKGROUND
;
3056 else if (gray
!= PNG_CMAP_TRANS_BACKGROUND
)
3060 *outrow
= (png_byte
)(PNG_CMAP_TRANS_BACKGROUND
+1);
3065 for (; outrow
< end_row
; outrow
+= stepx
)
3067 *outrow
= PNG_RGB_INDEX(inrow
[0], inrow
[1], inrow
[2]);
3072 case PNG_CMAP_RGB_ALPHA
:
3073 for (; outrow
< end_row
; outrow
+= stepx
)
3075 unsigned int alpha
= inrow
[3];
3077 /* Because the alpha entries only hold alpha==0.5 values
3078 * split the processing at alpha==0.25 (64) and 0.75
3083 *outrow
= PNG_RGB_INDEX(inrow
[0], inrow
[1],
3086 else if (alpha
< 64)
3087 *outrow
= PNG_CMAP_RGB_ALPHA_BACKGROUND
;
3091 /* Likewise there are three entries for each of r, g
3092 * and b. We could select the entry by popcount on
3093 * the top two bits on those architectures that
3094 * support it, this is what the code below does,
3097 unsigned int back_i
= PNG_CMAP_RGB_ALPHA_BACKGROUND
+1;
3099 /* Here are how the values map:
3105 * So, as above with the explicit alpha checks, the
3106 * breakpoints are at 64 and 196.
3108 if (inrow
[0] & 0x80) back_i
+= 9; /* red */
3109 if (inrow
[0] & 0x40) back_i
+= 9;
3110 if (inrow
[0] & 0x80) back_i
+= 3; /* green */
3111 if (inrow
[0] & 0x40) back_i
+= 3;
3112 if (inrow
[0] & 0x80) back_i
+= 1; /* blue */
3113 if (inrow
[0] & 0x40) back_i
+= 1;
3115 *outrow
= (png_byte
)back_i
;
3133 png_image_read_colormapped(png_voidp argument
)
3135 png_image_read_control
*display
= png_voidcast(png_image_read_control
*,
3137 png_imagep image
= display
->image
;
3138 png_controlp control
= image
->opaque
;
3139 png_structrp png_ptr
= control
->png_ptr
;
3140 png_inforp info_ptr
= control
->info_ptr
;
3142 int passes
= 0; /* As a flag */
3144 PNG_SKIP_CHUNKS(png_ptr
);
3146 /* Update the 'info' structure and make sure the result is as required; first
3147 * make sure to turn on the interlace handling if it will be required
3148 * (because it can't be turned on *after* the call to png_read_update_info!)
3150 if (display
->colormap_processing
== PNG_CMAP_NONE
)
3151 passes
= png_set_interlace_handling(png_ptr
);
3153 png_read_update_info(png_ptr
, info_ptr
);
3155 /* The expected output can be deduced from the colormap_processing option. */
3156 switch (display
->colormap_processing
)
3159 /* Output must be one channel and one byte per pixel, the output
3160 * encoding can be anything.
3162 if ((info_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
||
3163 info_ptr
->color_type
== PNG_COLOR_TYPE_GRAY
) &&
3164 info_ptr
->bit_depth
== 8)
3169 case PNG_CMAP_TRANS
:
3171 /* Output must be two channels and the 'G' one must be sRGB, the latter
3172 * can be checked with an exact number because it should have been set
3173 * to this number above!
3175 if (info_ptr
->color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
&&
3176 info_ptr
->bit_depth
== 8 &&
3177 png_ptr
->screen_gamma
== PNG_GAMMA_sRGB
&&
3178 image
->colormap_entries
== 256)
3184 /* Output must be 8-bit sRGB encoded RGB */
3185 if (info_ptr
->color_type
== PNG_COLOR_TYPE_RGB
&&
3186 info_ptr
->bit_depth
== 8 &&
3187 png_ptr
->screen_gamma
== PNG_GAMMA_sRGB
&&
3188 image
->colormap_entries
== 216)
3193 case PNG_CMAP_RGB_ALPHA
:
3194 /* Output must be 8-bit sRGB encoded RGBA */
3195 if (info_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
&&
3196 info_ptr
->bit_depth
== 8 &&
3197 png_ptr
->screen_gamma
== PNG_GAMMA_sRGB
&&
3198 image
->colormap_entries
== 244 /* 216 + 1 + 27 */)
3205 png_error(png_ptr
, "bad color-map processing (internal error)");
3208 /* Now read the rows. Do this here if it is possible to read directly into
3209 * the output buffer, otherwise allocate a local row buffer of the maximum
3210 * size libpng requires and call the relevant processing routine safely.
3213 png_voidp first_row
= display
->buffer
;
3214 ptrdiff_t row_bytes
= display
->row_stride
;
3216 /* The following expression is designed to work correctly whether it gives
3217 * a signed or an unsigned result.
3221 char *ptr
= png_voidcast(char*, first_row
);
3222 ptr
+= (image
->height
-1) * (-row_bytes
);
3223 first_row
= png_voidcast(png_voidp
, ptr
);
3226 display
->first_row
= first_row
;
3227 display
->row_bytes
= row_bytes
;
3233 png_voidp row
= png_malloc(png_ptr
, png_get_rowbytes(png_ptr
, info_ptr
));
3235 display
->local_row
= row
;
3236 result
= png_safe_execute(image
, png_image_read_and_map
, display
);
3237 display
->local_row
= NULL
;
3238 png_free(png_ptr
, row
);
3245 png_alloc_size_t row_bytes
= (png_alloc_size_t
)display
->row_bytes
;
3247 while (--passes
>= 0)
3249 png_uint_32 y
= image
->height
;
3250 png_bytep row
= png_voidcast(png_bytep
, display
->first_row
);
3254 png_read_row(png_ptr
, row
, NULL
);
3263 /* Just the row reading part of png_image_read. */
3265 png_image_read_composite(png_voidp argument
)
3267 png_image_read_control
*display
= png_voidcast(png_image_read_control
*,
3269 png_imagep image
= display
->image
;
3270 png_structrp png_ptr
= image
->opaque
->png_ptr
;
3273 switch (png_ptr
->interlaced
)
3275 case PNG_INTERLACE_NONE
:
3279 case PNG_INTERLACE_ADAM7
:
3280 passes
= PNG_INTERLACE_ADAM7_PASSES
;
3284 png_error(png_ptr
, "unknown interlace type");
3288 png_uint_32 height
= image
->height
;
3289 png_uint_32 width
= image
->width
;
3290 ptrdiff_t step_row
= display
->row_bytes
;
3291 unsigned int channels
=
3292 (image
->format
& PNG_FORMAT_FLAG_COLOR
) != 0 ? 3 : 1;
3295 for (pass
= 0; pass
< passes
; ++pass
)
3297 unsigned int startx
, stepx
, stepy
;
3300 if (png_ptr
->interlaced
== PNG_INTERLACE_ADAM7
)
3302 /* The row may be empty for a short image: */
3303 if (PNG_PASS_COLS(width
, pass
) == 0)
3306 startx
= PNG_PASS_START_COL(pass
) * channels
;
3307 stepx
= PNG_PASS_COL_OFFSET(pass
) * channels
;
3308 y
= PNG_PASS_START_ROW(pass
);
3309 stepy
= PNG_PASS_ROW_OFFSET(pass
);
3320 for (; y
<height
; y
+= stepy
)
3322 png_bytep inrow
= png_voidcast(png_bytep
, display
->local_row
);
3324 png_const_bytep end_row
;
3326 /* Read the row, which is packed: */
3327 png_read_row(png_ptr
, inrow
, NULL
);
3329 outrow
= png_voidcast(png_bytep
, display
->first_row
);
3330 outrow
+= y
* step_row
;
3331 end_row
= outrow
+ width
* channels
;
3333 /* Now do the composition on each pixel in this row. */
3335 for (; outrow
< end_row
; outrow
+= stepx
)
3337 png_byte alpha
= inrow
[channels
];
3339 if (alpha
> 0) /* else no change to the output */
3343 for (c
=0; c
<channels
; ++c
)
3345 png_uint_32 component
= inrow
[c
];
3347 if (alpha
< 255) /* else just use component */
3349 /* This is PNG_OPTIMIZED_ALPHA, the component value
3350 * is a linear 8-bit value. Combine this with the
3351 * current outrow[c] value which is sRGB encoded.
3352 * Arithmetic here is 16-bits to preserve the output
3355 component
*= 257*255; /* =65535 */
3356 component
+= (255-alpha
)*png_sRGB_table
[outrow
[c
]];
3358 /* So 'component' is scaled by 255*65535 and is
3359 * therefore appropriate for the sRGB to linear
3362 component
= PNG_sRGB_FROM_LINEAR(component
);
3365 outrow
[c
] = (png_byte
)component
;
3369 inrow
+= channels
+1; /* components and alpha channel */
3378 /* The do_local_background case; called when all the following transforms are to
3385 * This is a work-around for the fact that both the PNG_RGB_TO_GRAY and
3386 * PNG_COMPOSITE code performs gamma correction, so we get double gamma
3387 * correction. The fix-up is to prevent the PNG_COMPOSITE operation from
3388 * happening inside libpng, so this routine sees an 8 or 16-bit gray+alpha
3389 * row and handles the removal or pre-multiplication of the alpha channel.
3392 png_image_read_background(png_voidp argument
)
3394 png_image_read_control
*display
= png_voidcast(png_image_read_control
*,
3396 png_imagep image
= display
->image
;
3397 png_structrp png_ptr
= image
->opaque
->png_ptr
;
3398 png_inforp info_ptr
= image
->opaque
->info_ptr
;
3399 png_uint_32 height
= image
->height
;
3400 png_uint_32 width
= image
->width
;
3403 /* Double check the convoluted logic below. We expect to get here with
3404 * libpng doing rgb to gray and gamma correction but background processing
3405 * left to the png_image_read_background function. The rows libpng produce
3406 * might be 8 or 16-bit but should always have two channels; gray plus alpha.
3408 if ((png_ptr
->transformations
& PNG_RGB_TO_GRAY
) == 0)
3409 png_error(png_ptr
, "lost rgb to gray");
3411 if ((png_ptr
->transformations
& PNG_COMPOSE
) != 0)
3412 png_error(png_ptr
, "unexpected compose");
3414 if (png_get_channels(png_ptr
, info_ptr
) != 2)
3415 png_error(png_ptr
, "lost/gained channels");
3417 /* Expect the 8-bit case to always remove the alpha channel */
3418 if ((image
->format
& PNG_FORMAT_FLAG_LINEAR
) == 0 &&
3419 (image
->format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
3420 png_error(png_ptr
, "unexpected 8-bit transformation");
3422 switch (png_ptr
->interlaced
)
3424 case PNG_INTERLACE_NONE
:
3428 case PNG_INTERLACE_ADAM7
:
3429 passes
= PNG_INTERLACE_ADAM7_PASSES
;
3433 png_error(png_ptr
, "unknown interlace type");
3436 /* Use direct access to info_ptr here because otherwise the simplified API
3437 * would require PNG_EASY_ACCESS_SUPPORTED (just for this.) Note this is
3438 * checking the value after libpng expansions, not the original value in the
3441 switch (info_ptr
->bit_depth
)
3444 /* 8-bit sRGB gray values with an alpha channel; the alpha channel is
3445 * to be removed by composing on a background: either the row if
3446 * display->background is NULL or display->background->green if not.
3447 * Unlike the code above ALPHA_OPTIMIZED has *not* been done.
3450 png_bytep first_row
= png_voidcast(png_bytep
, display
->first_row
);
3451 ptrdiff_t step_row
= display
->row_bytes
;
3453 for (pass
= 0; pass
< passes
; ++pass
)
3455 png_bytep row
= png_voidcast(png_bytep
, display
->first_row
);
3456 unsigned int startx
, stepx
, stepy
;
3459 if (png_ptr
->interlaced
== PNG_INTERLACE_ADAM7
)
3461 /* The row may be empty for a short image: */
3462 if (PNG_PASS_COLS(width
, pass
) == 0)
3465 startx
= PNG_PASS_START_COL(pass
);
3466 stepx
= PNG_PASS_COL_OFFSET(pass
);
3467 y
= PNG_PASS_START_ROW(pass
);
3468 stepy
= PNG_PASS_ROW_OFFSET(pass
);
3478 if (display
->background
== NULL
)
3480 for (; y
<height
; y
+= stepy
)
3482 png_bytep inrow
= png_voidcast(png_bytep
,
3483 display
->local_row
);
3484 png_bytep outrow
= first_row
+ y
* step_row
;
3485 png_const_bytep end_row
= outrow
+ width
;
3487 /* Read the row, which is packed: */
3488 png_read_row(png_ptr
, inrow
, NULL
);
3490 /* Now do the composition on each pixel in this row. */
3492 for (; outrow
< end_row
; outrow
+= stepx
)
3494 png_byte alpha
= inrow
[1];
3496 if (alpha
> 0) /* else no change to the output */
3498 png_uint_32 component
= inrow
[0];
3500 if (alpha
< 255) /* else just use component */
3502 /* Since PNG_OPTIMIZED_ALPHA was not set it is
3503 * necessary to invert the sRGB transfer
3504 * function and multiply the alpha out.
3506 component
= png_sRGB_table
[component
] * alpha
;
3507 component
+= png_sRGB_table
[outrow
[0]] *
3509 component
= PNG_sRGB_FROM_LINEAR(component
);
3512 outrow
[0] = (png_byte
)component
;
3515 inrow
+= 2; /* gray and alpha channel */
3520 else /* constant background value */
3522 png_byte background8
= display
->background
->green
;
3523 png_uint_16 background
= png_sRGB_table
[background8
];
3525 for (; y
<height
; y
+= stepy
)
3527 png_bytep inrow
= png_voidcast(png_bytep
,
3528 display
->local_row
);
3529 png_bytep outrow
= first_row
+ y
* step_row
;
3530 png_const_bytep end_row
= outrow
+ width
;
3532 /* Read the row, which is packed: */
3533 png_read_row(png_ptr
, inrow
, NULL
);
3535 /* Now do the composition on each pixel in this row. */
3537 for (; outrow
< end_row
; outrow
+= stepx
)
3539 png_byte alpha
= inrow
[1];
3541 if (alpha
> 0) /* else use background */
3543 png_uint_32 component
= inrow
[0];
3545 if (alpha
< 255) /* else just use component */
3547 component
= png_sRGB_table
[component
] * alpha
;
3548 component
+= background
* (255-alpha
);
3549 component
= PNG_sRGB_FROM_LINEAR(component
);
3552 outrow
[0] = (png_byte
)component
;
3556 outrow
[0] = background8
;
3558 inrow
+= 2; /* gray and alpha channel */
3561 row
+= display
->row_bytes
;
3569 /* 16-bit linear with pre-multiplied alpha; the pre-multiplication must
3570 * still be done and, maybe, the alpha channel removed. This code also
3571 * handles the alpha-first option.
3574 png_uint_16p first_row
= png_voidcast(png_uint_16p
,
3575 display
->first_row
);
3576 /* The division by two is safe because the caller passed in a
3577 * stride which was multiplied by 2 (below) to get row_bytes.
3579 ptrdiff_t step_row
= display
->row_bytes
/ 2;
3580 unsigned int preserve_alpha
= (image
->format
&
3581 PNG_FORMAT_FLAG_ALPHA
) != 0;
3582 unsigned int outchannels
= 1U+preserve_alpha
;
3585 # ifdef PNG_SIMPLIFIED_READ_AFIRST_SUPPORTED
3586 if (preserve_alpha
!= 0 &&
3587 (image
->format
& PNG_FORMAT_FLAG_AFIRST
) != 0)
3591 for (pass
= 0; pass
< passes
; ++pass
)
3593 unsigned int startx
, stepx
, stepy
;
3596 /* The 'x' start and step are adjusted to output components here.
3598 if (png_ptr
->interlaced
== PNG_INTERLACE_ADAM7
)
3600 /* The row may be empty for a short image: */
3601 if (PNG_PASS_COLS(width
, pass
) == 0)
3604 startx
= PNG_PASS_START_COL(pass
) * outchannels
;
3605 stepx
= PNG_PASS_COL_OFFSET(pass
) * outchannels
;
3606 y
= PNG_PASS_START_ROW(pass
);
3607 stepy
= PNG_PASS_ROW_OFFSET(pass
);
3614 stepx
= outchannels
;
3618 for (; y
<height
; y
+= stepy
)
3620 png_const_uint_16p inrow
;
3621 png_uint_16p outrow
= first_row
+ y
*step_row
;
3622 png_uint_16p end_row
= outrow
+ width
* outchannels
;
3624 /* Read the row, which is packed: */
3625 png_read_row(png_ptr
, png_voidcast(png_bytep
,
3626 display
->local_row
), NULL
);
3627 inrow
= png_voidcast(png_const_uint_16p
, display
->local_row
);
3629 /* Now do the pre-multiplication on each pixel in this row.
3632 for (; outrow
< end_row
; outrow
+= stepx
)
3634 png_uint_32 component
= inrow
[0];
3635 png_uint_16 alpha
= inrow
[1];
3637 if (alpha
> 0) /* else 0 */
3639 if (alpha
< 65535) /* else just use component */
3650 outrow
[swap_alpha
] = (png_uint_16
)component
;
3651 if (preserve_alpha
!= 0)
3652 outrow
[1 ^ swap_alpha
] = alpha
;
3654 inrow
+= 2; /* components and alpha channel */
3663 png_error(png_ptr
, "unexpected bit depth");
3670 /* The guts of png_image_finish_read as a png_safe_execute callback. */
3672 png_image_read_direct(png_voidp argument
)
3674 png_image_read_control
*display
= png_voidcast(png_image_read_control
*,
3676 png_imagep image
= display
->image
;
3677 png_structrp png_ptr
= image
->opaque
->png_ptr
;
3678 png_inforp info_ptr
= image
->opaque
->info_ptr
;
3680 png_uint_32 format
= image
->format
;
3681 int linear
= (format
& PNG_FORMAT_FLAG_LINEAR
) != 0;
3682 int do_local_compose
= 0;
3683 int do_local_background
= 0; /* to avoid double gamma correction bug */
3686 /* Add transforms to ensure the correct output format is produced then check
3687 * that the required implementation support is there. Always expand; always
3688 * need 8 bits minimum, no palette and expanded tRNS.
3690 png_set_expand(png_ptr
);
3692 /* Now check the format to see if it was modified. */
3694 png_uint_32 base_format
= png_image_format(png_ptr
) &
3695 ~PNG_FORMAT_FLAG_COLORMAP
/* removed by png_set_expand */;
3696 png_uint_32 change
= format
^ base_format
;
3697 png_fixed_point output_gamma
;
3698 int mode
; /* alpha mode */
3700 /* Do this first so that we have a record if rgb to gray is happening. */
3701 if ((change
& PNG_FORMAT_FLAG_COLOR
) != 0)
3703 /* gray<->color transformation required. */
3704 if ((format
& PNG_FORMAT_FLAG_COLOR
) != 0)
3705 png_set_gray_to_rgb(png_ptr
);
3709 /* libpng can't do both rgb to gray and
3710 * background/pre-multiplication if there is also significant gamma
3711 * correction, because both operations require linear colors and
3712 * the code only supports one transform doing the gamma correction.
3713 * Handle this by doing the pre-multiplication or background
3714 * operation in this code, if necessary.
3716 * TODO: fix this by rewriting pngrtran.c (!)
3718 * For the moment (given that fixing this in pngrtran.c is an
3719 * enormous change) 'do_local_background' is used to indicate that
3720 * the problem exists.
3722 if ((base_format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
3723 do_local_background
= 1/*maybe*/;
3725 png_set_rgb_to_gray_fixed(png_ptr
, PNG_ERROR_ACTION_NONE
,
3726 PNG_RGB_TO_GRAY_DEFAULT
, PNG_RGB_TO_GRAY_DEFAULT
);
3729 change
&= ~PNG_FORMAT_FLAG_COLOR
;
3732 /* Set the gamma appropriately, linear for 16-bit input, sRGB otherwise.
3735 png_fixed_point input_gamma_default
;
3737 if ((base_format
& PNG_FORMAT_FLAG_LINEAR
) != 0 &&
3738 (image
->flags
& PNG_IMAGE_FLAG_16BIT_sRGB
) == 0)
3739 input_gamma_default
= PNG_GAMMA_LINEAR
;
3741 input_gamma_default
= PNG_DEFAULT_sRGB
;
3743 /* Call png_set_alpha_mode to set the default for the input gamma; the
3744 * output gamma is set by a second call below.
3746 png_set_alpha_mode_fixed(png_ptr
, PNG_ALPHA_PNG
, input_gamma_default
);
3751 /* If there *is* an alpha channel in the input it must be multiplied
3752 * out; use PNG_ALPHA_STANDARD, otherwise just use PNG_ALPHA_PNG.
3754 if ((base_format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
3755 mode
= PNG_ALPHA_STANDARD
; /* associated alpha */
3758 mode
= PNG_ALPHA_PNG
;
3760 output_gamma
= PNG_GAMMA_LINEAR
;
3765 mode
= PNG_ALPHA_PNG
;
3766 output_gamma
= PNG_DEFAULT_sRGB
;
3769 if ((change
& PNG_FORMAT_FLAG_ASSOCIATED_ALPHA
) != 0)
3771 mode
= PNG_ALPHA_OPTIMIZED
;
3772 change
&= ~PNG_FORMAT_FLAG_ASSOCIATED_ALPHA
;
3775 /* If 'do_local_background' is set check for the presence of gamma
3776 * correction; this is part of the work-round for the libpng bug
3779 * TODO: fix libpng and remove this.
3781 if (do_local_background
!= 0)
3783 png_fixed_point gtest
;
3785 /* This is 'png_gamma_threshold' from pngrtran.c; the test used for
3786 * gamma correction, the screen gamma hasn't been set on png_struct
3787 * yet; it's set below. png_struct::gamma, however, is set to the
3790 if (png_muldiv(>est
, output_gamma
, png_ptr
->colorspace
.gamma
,
3791 PNG_FP_1
) != 0 && png_gamma_significant(gtest
) == 0)
3792 do_local_background
= 0;
3794 else if (mode
== PNG_ALPHA_STANDARD
)
3796 do_local_background
= 2/*required*/;
3797 mode
= PNG_ALPHA_PNG
; /* prevent libpng doing it */
3800 /* else leave as 1 for the checks below */
3803 /* If the bit-depth changes then handle that here. */
3804 if ((change
& PNG_FORMAT_FLAG_LINEAR
) != 0)
3806 if (linear
!= 0 /*16-bit output*/)
3807 png_set_expand_16(png_ptr
);
3809 else /* 8-bit output */
3810 png_set_scale_16(png_ptr
);
3812 change
&= ~PNG_FORMAT_FLAG_LINEAR
;
3815 /* Now the background/alpha channel changes. */
3816 if ((change
& PNG_FORMAT_FLAG_ALPHA
) != 0)
3818 /* Removing an alpha channel requires composition for the 8-bit
3819 * formats; for the 16-bit it is already done, above, by the
3820 * pre-multiplication and the channel just needs to be stripped.
3822 if ((base_format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
3824 /* If RGB->gray is happening the alpha channel must be left and the
3825 * operation completed locally.
3827 * TODO: fix libpng and remove this.
3829 if (do_local_background
!= 0)
3830 do_local_background
= 2/*required*/;
3832 /* 16-bit output: just remove the channel */
3833 else if (linear
!= 0) /* compose on black (well, pre-multiply) */
3834 png_set_strip_alpha(png_ptr
);
3836 /* 8-bit output: do an appropriate compose */
3837 else if (display
->background
!= NULL
)
3841 c
.index
= 0; /*unused*/
3842 c
.red
= display
->background
->red
;
3843 c
.green
= display
->background
->green
;
3844 c
.blue
= display
->background
->blue
;
3845 c
.gray
= display
->background
->green
;
3847 /* This is always an 8-bit sRGB value, using the 'green' channel
3848 * for gray is much better than calculating the luminance here;
3849 * we can get off-by-one errors in that calculation relative to
3850 * the app expectations and that will show up in transparent
3853 png_set_background_fixed(png_ptr
, &c
,
3854 PNG_BACKGROUND_GAMMA_SCREEN
, 0/*need_expand*/,
3855 0/*gamma: not used*/);
3858 else /* compose on row: implemented below. */
3860 do_local_compose
= 1;
3861 /* This leaves the alpha channel in the output, so it has to be
3862 * removed by the code below. Set the encoding to the 'OPTIMIZE'
3863 * one so the code only has to hack on the pixels that require
3866 mode
= PNG_ALPHA_OPTIMIZED
;
3870 else /* output needs an alpha channel */
3872 /* This is tricky because it happens before the swap operation has
3873 * been accomplished; however, the swap does *not* swap the added
3874 * alpha channel (weird API), so it must be added in the correct
3877 png_uint_32 filler
; /* opaque filler */
3886 #ifdef PNG_FORMAT_AFIRST_SUPPORTED
3887 if ((format
& PNG_FORMAT_FLAG_AFIRST
) != 0)
3889 where
= PNG_FILLER_BEFORE
;
3890 change
&= ~PNG_FORMAT_FLAG_AFIRST
;
3895 where
= PNG_FILLER_AFTER
;
3897 png_set_add_alpha(png_ptr
, filler
, where
);
3900 /* This stops the (irrelevant) call to swap_alpha below. */
3901 change
&= ~PNG_FORMAT_FLAG_ALPHA
;
3904 /* Now set the alpha mode correctly; this is always done, even if there is
3905 * no alpha channel in either the input or the output because it correctly
3906 * sets the output gamma.
3908 png_set_alpha_mode_fixed(png_ptr
, mode
, output_gamma
);
3910 # ifdef PNG_FORMAT_BGR_SUPPORTED
3911 if ((change
& PNG_FORMAT_FLAG_BGR
) != 0)
3913 /* Check only the output format; PNG is never BGR; don't do this if
3914 * the output is gray, but fix up the 'format' value in that case.
3916 if ((format
& PNG_FORMAT_FLAG_COLOR
) != 0)
3917 png_set_bgr(png_ptr
);
3920 format
&= ~PNG_FORMAT_FLAG_BGR
;
3922 change
&= ~PNG_FORMAT_FLAG_BGR
;
3926 # ifdef PNG_FORMAT_AFIRST_SUPPORTED
3927 if ((change
& PNG_FORMAT_FLAG_AFIRST
) != 0)
3929 /* Only relevant if there is an alpha channel - it's particularly
3930 * important to handle this correctly because do_local_compose may
3931 * be set above and then libpng will keep the alpha channel for this
3934 if ((format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
3936 /* Disable this if doing a local background,
3937 * TODO: remove this when local background is no longer required.
3939 if (do_local_background
!= 2)
3940 png_set_swap_alpha(png_ptr
);
3944 format
&= ~PNG_FORMAT_FLAG_AFIRST
;
3946 change
&= ~PNG_FORMAT_FLAG_AFIRST
;
3950 /* If the *output* is 16-bit then we need to check for a byte-swap on this
3955 png_uint_16 le
= 0x0001;
3957 if ((*(png_const_bytep
) & le
) != 0)
3958 png_set_swap(png_ptr
);
3961 /* If change is not now 0 some transformation is missing - error out. */
3963 png_error(png_ptr
, "png_read_image: unsupported transformation");
3966 PNG_SKIP_CHUNKS(png_ptr
);
3968 /* Update the 'info' structure and make sure the result is as required; first
3969 * make sure to turn on the interlace handling if it will be required
3970 * (because it can't be turned on *after* the call to png_read_update_info!)
3972 * TODO: remove the do_local_background fixup below.
3974 if (do_local_compose
== 0 && do_local_background
!= 2)
3975 passes
= png_set_interlace_handling(png_ptr
);
3977 png_read_update_info(png_ptr
, info_ptr
);
3980 png_uint_32 info_format
= 0;
3982 if ((info_ptr
->color_type
& PNG_COLOR_MASK_COLOR
) != 0)
3983 info_format
|= PNG_FORMAT_FLAG_COLOR
;
3985 if ((info_ptr
->color_type
& PNG_COLOR_MASK_ALPHA
) != 0)
3987 /* do_local_compose removes this channel below. */
3988 if (do_local_compose
== 0)
3990 /* do_local_background does the same if required. */
3991 if (do_local_background
!= 2 ||
3992 (format
& PNG_FORMAT_FLAG_ALPHA
) != 0)
3993 info_format
|= PNG_FORMAT_FLAG_ALPHA
;
3997 else if (do_local_compose
!= 0) /* internal error */
3998 png_error(png_ptr
, "png_image_read: alpha channel lost");
4000 if ((format
& PNG_FORMAT_FLAG_ASSOCIATED_ALPHA
) != 0) {
4001 info_format
|= PNG_FORMAT_FLAG_ASSOCIATED_ALPHA
;
4004 if (info_ptr
->bit_depth
== 16)
4005 info_format
|= PNG_FORMAT_FLAG_LINEAR
;
4007 #ifdef PNG_FORMAT_BGR_SUPPORTED
4008 if ((png_ptr
->transformations
& PNG_BGR
) != 0)
4009 info_format
|= PNG_FORMAT_FLAG_BGR
;
4012 #ifdef PNG_FORMAT_AFIRST_SUPPORTED
4013 if (do_local_background
== 2)
4015 if ((format
& PNG_FORMAT_FLAG_AFIRST
) != 0)
4016 info_format
|= PNG_FORMAT_FLAG_AFIRST
;
4019 if ((png_ptr
->transformations
& PNG_SWAP_ALPHA
) != 0 ||
4020 ((png_ptr
->transformations
& PNG_ADD_ALPHA
) != 0 &&
4021 (png_ptr
->flags
& PNG_FLAG_FILLER_AFTER
) == 0))
4023 if (do_local_background
== 2)
4024 png_error(png_ptr
, "unexpected alpha swap transformation");
4026 info_format
|= PNG_FORMAT_FLAG_AFIRST
;
4030 /* This is actually an internal error. */
4031 if (info_format
!= format
)
4032 png_error(png_ptr
, "png_read_image: invalid transformations");
4035 /* Now read the rows. If do_local_compose is set then it is necessary to use
4036 * a local row buffer. The output will be GA, RGBA or BGRA and must be
4037 * converted to G, RGB or BGR as appropriate. The 'local_row' member of the
4038 * display acts as a flag.
4041 png_voidp first_row
= display
->buffer
;
4042 ptrdiff_t row_bytes
= display
->row_stride
;
4047 /* The following expression is designed to work correctly whether it gives
4048 * a signed or an unsigned result.
4052 char *ptr
= png_voidcast(char*, first_row
);
4053 ptr
+= (image
->height
-1) * (-row_bytes
);
4054 first_row
= png_voidcast(png_voidp
, ptr
);
4057 display
->first_row
= first_row
;
4058 display
->row_bytes
= row_bytes
;
4061 if (do_local_compose
!= 0)
4064 png_voidp row
= png_malloc(png_ptr
, png_get_rowbytes(png_ptr
, info_ptr
));
4066 display
->local_row
= row
;
4067 result
= png_safe_execute(image
, png_image_read_composite
, display
);
4068 display
->local_row
= NULL
;
4069 png_free(png_ptr
, row
);
4074 else if (do_local_background
== 2)
4077 png_voidp row
= png_malloc(png_ptr
, png_get_rowbytes(png_ptr
, info_ptr
));
4079 display
->local_row
= row
;
4080 result
= png_safe_execute(image
, png_image_read_background
, display
);
4081 display
->local_row
= NULL
;
4082 png_free(png_ptr
, row
);
4089 png_alloc_size_t row_bytes
= (png_alloc_size_t
)display
->row_bytes
;
4091 while (--passes
>= 0)
4093 png_uint_32 y
= image
->height
;
4094 png_bytep row
= png_voidcast(png_bytep
, display
->first_row
);
4098 png_read_row(png_ptr
, row
, NULL
);
4108 png_image_finish_read(png_imagep image
, png_const_colorp background
,
4109 void *buffer
, png_int_32 row_stride
, void *colormap
)
4111 if (image
!= NULL
&& image
->version
== PNG_IMAGE_VERSION
)
4113 /* Check for row_stride overflow. This check is not performed on the
4114 * original PNG format because it may not occur in the output PNG format
4115 * and libpng deals with the issues of reading the original.
4117 unsigned int channels
= PNG_IMAGE_PIXEL_CHANNELS(image
->format
);
4119 /* The following checks just the 'row_stride' calculation to ensure it
4120 * fits in a signed 32-bit value. Because channels/components can be
4121 * either 1 or 2 bytes in size the length of a row can still overflow 32
4122 * bits; this is just to verify that the 'row_stride' argument can be
4125 if (image
->width
<= 0x7fffffffU
/channels
) /* no overflow */
4128 png_uint_32 png_row_stride
= image
->width
* channels
;
4130 if (row_stride
== 0)
4131 row_stride
= (png_int_32
)/*SAFE*/png_row_stride
;
4134 check
= (png_uint_32
)(-row_stride
);
4137 check
= (png_uint_32
)row_stride
;
4139 /* This verifies 'check', the absolute value of the actual stride
4140 * passed in and detects overflow in the application calculation (i.e.
4141 * if the app did actually pass in a non-zero 'row_stride'.
4143 if (image
->opaque
!= NULL
&& buffer
!= NULL
&& check
>= png_row_stride
)
4145 /* Now check for overflow of the image buffer calculation; this
4146 * limits the whole image size to 32 bits for API compatibility with
4147 * the current, 32-bit, PNG_IMAGE_BUFFER_SIZE macro.
4149 * The PNG_IMAGE_BUFFER_SIZE macro is:
4151 * (PNG_IMAGE_PIXEL_COMPONENT_SIZE(fmt)*height*(row_stride))
4153 * And the component size is always 1 or 2, so make sure that the
4154 * number of *bytes* that the application is saying are available
4155 * does actually fit into a 32-bit number.
4157 * NOTE: this will be changed in 1.7 because PNG_IMAGE_BUFFER_SIZE
4158 * will be changed to use png_alloc_size_t; bigger images can be
4159 * accommodated on 64-bit systems.
4161 if (image
->height
<=
4162 0xffffffffU
/PNG_IMAGE_PIXEL_COMPONENT_SIZE(image
->format
)/check
)
4164 if ((image
->format
& PNG_FORMAT_FLAG_COLORMAP
) == 0 ||
4165 (image
->colormap_entries
> 0 && colormap
!= NULL
))
4168 png_image_read_control display
;
4170 memset(&display
, 0, (sizeof display
));
4171 display
.image
= image
;
4172 display
.buffer
= buffer
;
4173 display
.row_stride
= row_stride
;
4174 display
.colormap
= colormap
;
4175 display
.background
= background
;
4176 display
.local_row
= NULL
;
4178 /* Choose the correct 'end' routine; for the color-map case
4179 * all the setup has already been done.
4181 if ((image
->format
& PNG_FORMAT_FLAG_COLORMAP
) != 0)
4183 png_safe_execute(image
,
4184 png_image_read_colormap
, &display
) &&
4185 png_safe_execute(image
,
4186 png_image_read_colormapped
, &display
);
4190 png_safe_execute(image
,
4191 png_image_read_direct
, &display
);
4193 png_image_free(image
);
4198 return png_image_error(image
,
4199 "png_image_finish_read[color-map]: no color-map");
4203 return png_image_error(image
,
4204 "png_image_finish_read: image too large");
4208 return png_image_error(image
,
4209 "png_image_finish_read: invalid argument");
4213 return png_image_error(image
,
4214 "png_image_finish_read: row_stride too large");
4217 else if (image
!= NULL
)
4218 return png_image_error(image
,
4219 "png_image_finish_read: damaged PNG_IMAGE_VERSION");
4224 #endif /* SIMPLIFIED_READ */