blob: 5abf1efd9f73bffbc5561eab4057bc0f29465e62 [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngget.c - retrieval of values from info struct
3 *
xNombred07bb0d2020-03-10 20:17:12 +01004 * Copyright (c) 2018 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.
Patrick Scotta0bb96c2009-07-22 11:50:02 -04008 *
9 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
12 *
The Android Open Source Project893912b2009-03-03 19:30:05 -080013 */
14
Chris Craikca2bf812013-07-29 15:28:30 -070015#include "pngpriv.h"
16
The Android Open Source Project893912b2009-03-03 19:30:05 -080017#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
18
19png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070020png_get_valid(png_const_structrp png_ptr, png_const_inforp info_ptr,
21 png_uint_32 flag)
The Android Open Source Project893912b2009-03-03 19:30:05 -080022{
23 if (png_ptr != NULL && info_ptr != NULL)
24 return(info_ptr->valid & flag);
Patrick Scotta0bb96c2009-07-22 11:50:02 -040025
Chris Craikca2bf812013-07-29 15:28:30 -070026 return(0);
The Android Open Source Project893912b2009-03-03 19:30:05 -080027}
28
xNombred07bb0d2020-03-10 20:17:12 +010029size_t PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070030png_get_rowbytes(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080031{
32 if (png_ptr != NULL && info_ptr != NULL)
33 return(info_ptr->rowbytes);
Patrick Scotta0bb96c2009-07-22 11:50:02 -040034
Chris Craikca2bf812013-07-29 15:28:30 -070035 return(0);
The Android Open Source Project893912b2009-03-03 19:30:05 -080036}
37
Patrick Scott5f6bd842010-06-28 16:55:16 -040038#ifdef PNG_INFO_IMAGE_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080039png_bytepp PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070040png_get_rows(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080041{
42 if (png_ptr != NULL && info_ptr != NULL)
43 return(info_ptr->row_pointers);
Patrick Scotta0bb96c2009-07-22 11:50:02 -040044
Chris Craikca2bf812013-07-29 15:28:30 -070045 return(0);
The Android Open Source Project893912b2009-03-03 19:30:05 -080046}
47#endif
48
49#ifdef PNG_EASY_ACCESS_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -040050/* Easy access to info, added in libpng-0.99 */
The Android Open Source Project893912b2009-03-03 19:30:05 -080051png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070052png_get_image_width(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080053{
54 if (png_ptr != NULL && info_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -080055 return info_ptr->width;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040056
The Android Open Source Project893912b2009-03-03 19:30:05 -080057 return (0);
58}
59
60png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070061png_get_image_height(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080062{
63 if (png_ptr != NULL && info_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -080064 return info_ptr->height;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040065
The Android Open Source Project893912b2009-03-03 19:30:05 -080066 return (0);
67}
68
69png_byte PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070070png_get_bit_depth(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080071{
72 if (png_ptr != NULL && info_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -080073 return info_ptr->bit_depth;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040074
The Android Open Source Project893912b2009-03-03 19:30:05 -080075 return (0);
76}
77
78png_byte PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070079png_get_color_type(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080080{
81 if (png_ptr != NULL && info_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -080082 return info_ptr->color_type;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040083
The Android Open Source Project893912b2009-03-03 19:30:05 -080084 return (0);
85}
86
87png_byte PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070088png_get_filter_type(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080089{
90 if (png_ptr != NULL && info_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -080091 return info_ptr->filter_type;
Patrick Scotta0bb96c2009-07-22 11:50:02 -040092
The Android Open Source Project893912b2009-03-03 19:30:05 -080093 return (0);
94}
95
96png_byte PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -070097png_get_interlace_type(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -080098{
99 if (png_ptr != NULL && info_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800100 return info_ptr->interlace_type;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400101
The Android Open Source Project893912b2009-03-03 19:30:05 -0800102 return (0);
103}
104
105png_byte PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700106png_get_compression_type(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800107{
108 if (png_ptr != NULL && info_ptr != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800109 return info_ptr->compression_type;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400110
The Android Open Source Project893912b2009-03-03 19:30:05 -0800111 return (0);
112}
113
114png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700115png_get_x_pixels_per_meter(png_const_structrp png_ptr, png_const_inforp
116 info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800117{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400118#ifdef PNG_pHYs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500119 if (png_ptr != NULL && info_ptr != NULL &&
120 (info_ptr->valid & PNG_INFO_pHYs) != 0)
Chris Craikca2bf812013-07-29 15:28:30 -0700121 {
122 png_debug1(1, "in %s retrieval function",
123 "png_get_x_pixels_per_meter");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400124
Chris Craikca2bf812013-07-29 15:28:30 -0700125 if (info_ptr->phys_unit_type == PNG_RESOLUTION_METER)
126 return (info_ptr->x_pixels_per_unit);
127 }
Matt Sarett9b1fe632015-11-25 10:21:17 -0500128#else
129 PNG_UNUSED(png_ptr)
130 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800131#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700132
The Android Open Source Project893912b2009-03-03 19:30:05 -0800133 return (0);
134}
135
136png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700137png_get_y_pixels_per_meter(png_const_structrp png_ptr, png_const_inforp
138 info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800139{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400140#ifdef PNG_pHYs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500141 if (png_ptr != NULL && info_ptr != NULL &&
142 (info_ptr->valid & PNG_INFO_pHYs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800143 {
Chris Craikca2bf812013-07-29 15:28:30 -0700144 png_debug1(1, "in %s retrieval function",
145 "png_get_y_pixels_per_meter");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400146
Chris Craikca2bf812013-07-29 15:28:30 -0700147 if (info_ptr->phys_unit_type == PNG_RESOLUTION_METER)
148 return (info_ptr->y_pixels_per_unit);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800149 }
Matt Sarett9b1fe632015-11-25 10:21:17 -0500150#else
151 PNG_UNUSED(png_ptr)
152 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800153#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700154
The Android Open Source Project893912b2009-03-03 19:30:05 -0800155 return (0);
156}
157
158png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700159png_get_pixels_per_meter(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800160{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400161#ifdef PNG_pHYs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500162 if (png_ptr != NULL && info_ptr != NULL &&
163 (info_ptr->valid & PNG_INFO_pHYs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800164 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700165 png_debug1(1, "in %s retrieval function", "png_get_pixels_per_meter");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400166
Chris Craikca2bf812013-07-29 15:28:30 -0700167 if (info_ptr->phys_unit_type == PNG_RESOLUTION_METER &&
168 info_ptr->x_pixels_per_unit == info_ptr->y_pixels_per_unit)
169 return (info_ptr->x_pixels_per_unit);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800170 }
Matt Sarett9b1fe632015-11-25 10:21:17 -0500171#else
172 PNG_UNUSED(png_ptr)
173 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800174#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700175
The Android Open Source Project893912b2009-03-03 19:30:05 -0800176 return (0);
177}
178
179#ifdef PNG_FLOATING_POINT_SUPPORTED
180float PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700181png_get_pixel_aspect_ratio(png_const_structrp png_ptr, png_const_inforp
182 info_ptr)
183{
184#ifdef PNG_READ_pHYs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500185 if (png_ptr != NULL && info_ptr != NULL &&
186 (info_ptr->valid & PNG_INFO_pHYs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800187 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700188 png_debug1(1, "in %s retrieval function", "png_get_aspect_ratio");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400189
Chris Craikca2bf812013-07-29 15:28:30 -0700190 if (info_ptr->x_pixels_per_unit != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800191 return ((float)((float)info_ptr->y_pixels_per_unit
Chris Craikca2bf812013-07-29 15:28:30 -0700192 /(float)info_ptr->x_pixels_per_unit));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800193 }
194#else
Chris Craikca2bf812013-07-29 15:28:30 -0700195 PNG_UNUSED(png_ptr)
196 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800197#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700198
The Android Open Source Project893912b2009-03-03 19:30:05 -0800199 return ((float)0.0);
200}
201#endif
202
Chris Craikca2bf812013-07-29 15:28:30 -0700203#ifdef PNG_FIXED_POINT_SUPPORTED
204png_fixed_point PNGAPI
205png_get_pixel_aspect_ratio_fixed(png_const_structrp png_ptr,
206 png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800207{
Chris Craikca2bf812013-07-29 15:28:30 -0700208#ifdef PNG_READ_pHYs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500209 if (png_ptr != NULL && info_ptr != NULL &&
210 (info_ptr->valid & PNG_INFO_pHYs) != 0 &&
211 info_ptr->x_pixels_per_unit > 0 && info_ptr->y_pixels_per_unit > 0 &&
212 info_ptr->x_pixels_per_unit <= PNG_UINT_31_MAX &&
213 info_ptr->y_pixels_per_unit <= PNG_UINT_31_MAX)
Chris Craikca2bf812013-07-29 15:28:30 -0700214 {
215 png_fixed_point res;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400216
Chris Craikca2bf812013-07-29 15:28:30 -0700217 png_debug1(1, "in %s retrieval function", "png_get_aspect_ratio_fixed");
218
219 /* The following casts work because a PNG 4 byte integer only has a valid
220 * range of 0..2^31-1; otherwise the cast might overflow.
221 */
222 if (png_muldiv(&res, (png_int_32)info_ptr->y_pixels_per_unit, PNG_FP_1,
Matt Sarett9b1fe632015-11-25 10:21:17 -0500223 (png_int_32)info_ptr->x_pixels_per_unit) != 0)
Chris Craikca2bf812013-07-29 15:28:30 -0700224 return res;
225 }
226#else
227 PNG_UNUSED(png_ptr)
228 PNG_UNUSED(info_ptr)
229#endif
230
231 return 0;
232}
233#endif
234
235png_int_32 PNGAPI
236png_get_x_offset_microns(png_const_structrp png_ptr, png_const_inforp info_ptr)
237{
238#ifdef PNG_oFFs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500239 if (png_ptr != NULL && info_ptr != NULL &&
240 (info_ptr->valid & PNG_INFO_oFFs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800241 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700242 png_debug1(1, "in %s retrieval function", "png_get_x_offset_microns");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400243
Chris Craikca2bf812013-07-29 15:28:30 -0700244 if (info_ptr->offset_unit_type == PNG_OFFSET_MICROMETER)
245 return (info_ptr->x_offset);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800246 }
Matt Sarett9b1fe632015-11-25 10:21:17 -0500247#else
248 PNG_UNUSED(png_ptr)
249 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800250#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700251
The Android Open Source Project893912b2009-03-03 19:30:05 -0800252 return (0);
253}
254
255png_int_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700256png_get_y_offset_microns(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800257{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400258#ifdef PNG_oFFs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500259 if (png_ptr != NULL && info_ptr != NULL &&
260 (info_ptr->valid & PNG_INFO_oFFs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800261 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700262 png_debug1(1, "in %s retrieval function", "png_get_y_offset_microns");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400263
Chris Craikca2bf812013-07-29 15:28:30 -0700264 if (info_ptr->offset_unit_type == PNG_OFFSET_MICROMETER)
265 return (info_ptr->y_offset);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800266 }
Matt Sarett9b1fe632015-11-25 10:21:17 -0500267#else
268 PNG_UNUSED(png_ptr)
269 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800270#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700271
The Android Open Source Project893912b2009-03-03 19:30:05 -0800272 return (0);
273}
274
275png_int_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700276png_get_x_offset_pixels(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800277{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400278#ifdef PNG_oFFs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500279 if (png_ptr != NULL && info_ptr != NULL &&
280 (info_ptr->valid & PNG_INFO_oFFs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800281 {
Chris Craikca2bf812013-07-29 15:28:30 -0700282 png_debug1(1, "in %s retrieval function", "png_get_x_offset_pixels");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400283
Chris Craikca2bf812013-07-29 15:28:30 -0700284 if (info_ptr->offset_unit_type == PNG_OFFSET_PIXEL)
285 return (info_ptr->x_offset);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800286 }
Matt Sarett9b1fe632015-11-25 10:21:17 -0500287#else
288 PNG_UNUSED(png_ptr)
289 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800290#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700291
The Android Open Source Project893912b2009-03-03 19:30:05 -0800292 return (0);
293}
294
295png_int_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700296png_get_y_offset_pixels(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800297{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400298#ifdef PNG_oFFs_SUPPORTED
Matt Sarett9b1fe632015-11-25 10:21:17 -0500299 if (png_ptr != NULL && info_ptr != NULL &&
300 (info_ptr->valid & PNG_INFO_oFFs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800301 {
Chris Craikca2bf812013-07-29 15:28:30 -0700302 png_debug1(1, "in %s retrieval function", "png_get_y_offset_pixels");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400303
Chris Craikca2bf812013-07-29 15:28:30 -0700304 if (info_ptr->offset_unit_type == PNG_OFFSET_PIXEL)
305 return (info_ptr->y_offset);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800306 }
Matt Sarett9b1fe632015-11-25 10:21:17 -0500307#else
308 PNG_UNUSED(png_ptr)
309 PNG_UNUSED(info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800310#endif
Chris Craikca2bf812013-07-29 15:28:30 -0700311
The Android Open Source Project893912b2009-03-03 19:30:05 -0800312 return (0);
313}
314
Chris Craikca2bf812013-07-29 15:28:30 -0700315#ifdef PNG_INCH_CONVERSIONS_SUPPORTED
316static png_uint_32
317ppi_from_ppm(png_uint_32 ppm)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800318{
Chris Craikca2bf812013-07-29 15:28:30 -0700319#if 0
320 /* The conversion is *(2.54/100), in binary (32 digits):
321 * .00000110100000001001110101001001
322 */
323 png_uint_32 t1001, t1101;
324 ppm >>= 1; /* .1 */
325 t1001 = ppm + (ppm >> 3); /* .1001 */
326 t1101 = t1001 + (ppm >> 1); /* .1101 */
327 ppm >>= 20; /* .000000000000000000001 */
328 t1101 += t1101 >> 15; /* .1101000000000001101 */
329 t1001 >>= 11; /* .000000000001001 */
330 t1001 += t1001 >> 12; /* .000000000001001000000001001 */
331 ppm += t1001; /* .000000000001001000001001001 */
332 ppm += t1101; /* .110100000001001110101001001 */
333 return (ppm + 16) >> 5;/* .00000110100000001001110101001001 */
334#else
335 /* The argument is a PNG unsigned integer, so it is not permitted
336 * to be bigger than 2^31.
337 */
338 png_fixed_point result;
339 if (ppm <= PNG_UINT_31_MAX && png_muldiv(&result, (png_int_32)ppm, 127,
Matt Sarett9b1fe632015-11-25 10:21:17 -0500340 5000) != 0)
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400341 return (png_uint_32)result;
Chris Craikca2bf812013-07-29 15:28:30 -0700342
343 /* Overflow. */
344 return 0;
345#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800346}
347
348png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700349png_get_pixels_per_inch(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800350{
Chris Craikca2bf812013-07-29 15:28:30 -0700351 return ppi_from_ppm(png_get_pixels_per_meter(png_ptr, info_ptr));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800352}
353
354png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700355png_get_x_pixels_per_inch(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800356{
Chris Craikca2bf812013-07-29 15:28:30 -0700357 return ppi_from_ppm(png_get_x_pixels_per_meter(png_ptr, info_ptr));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800358}
359
Chris Craikca2bf812013-07-29 15:28:30 -0700360png_uint_32 PNGAPI
361png_get_y_pixels_per_inch(png_const_structrp png_ptr, png_const_inforp info_ptr)
362{
363 return ppi_from_ppm(png_get_y_pixels_per_meter(png_ptr, info_ptr));
364}
365
366#ifdef PNG_FIXED_POINT_SUPPORTED
367static png_fixed_point
368png_fixed_inches_from_microns(png_const_structrp png_ptr, png_int_32 microns)
369{
xNombred07bb0d2020-03-10 20:17:12 +0100370 /* Convert from meters * 1,000,000 to inches * 100,000, meters to
Chris Craikca2bf812013-07-29 15:28:30 -0700371 * inches is simply *(100/2.54), so we want *(10/2.54) == 500/127.
372 * Notice that this can overflow - a warning is output and 0 is
373 * returned.
374 */
375 return png_muldiv_warn(png_ptr, microns, 500, 127);
376}
377
378png_fixed_point PNGAPI
379png_get_x_offset_inches_fixed(png_const_structrp png_ptr,
380 png_const_inforp info_ptr)
381{
382 return png_fixed_inches_from_microns(png_ptr,
383 png_get_x_offset_microns(png_ptr, info_ptr));
384}
385#endif
386
387#ifdef PNG_FIXED_POINT_SUPPORTED
388png_fixed_point PNGAPI
389png_get_y_offset_inches_fixed(png_const_structrp png_ptr,
390 png_const_inforp info_ptr)
391{
392 return png_fixed_inches_from_microns(png_ptr,
393 png_get_y_offset_microns(png_ptr, info_ptr));
394}
395#endif
396
397#ifdef PNG_FLOATING_POINT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800398float PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700399png_get_x_offset_inches(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800400{
Chris Craikca2bf812013-07-29 15:28:30 -0700401 /* To avoid the overflow do the conversion directly in floating
402 * point.
403 */
404 return (float)(png_get_x_offset_microns(png_ptr, info_ptr) * .00003937);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800405}
Chris Craikca2bf812013-07-29 15:28:30 -0700406#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800407
Chris Craikca2bf812013-07-29 15:28:30 -0700408#ifdef PNG_FLOATING_POINT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800409float PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700410png_get_y_offset_inches(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800411{
Chris Craikca2bf812013-07-29 15:28:30 -0700412 /* To avoid the overflow do the conversion directly in floating
413 * point.
414 */
415 return (float)(png_get_y_offset_microns(png_ptr, info_ptr) * .00003937);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800416}
Chris Craikca2bf812013-07-29 15:28:30 -0700417#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800418
Patrick Scott5f6bd842010-06-28 16:55:16 -0400419#ifdef PNG_pHYs_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800420png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700421png_get_pHYs_dpi(png_const_structrp png_ptr, png_const_inforp info_ptr,
422 png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800423{
424 png_uint_32 retval = 0;
425
Matt Sarett9b1fe632015-11-25 10:21:17 -0500426 if (png_ptr != NULL && info_ptr != NULL &&
427 (info_ptr->valid & PNG_INFO_pHYs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800428 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700429 png_debug1(1, "in %s retrieval function", "pHYs");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400430
The Android Open Source Project893912b2009-03-03 19:30:05 -0800431 if (res_x != NULL)
432 {
433 *res_x = info_ptr->x_pixels_per_unit;
434 retval |= PNG_INFO_pHYs;
435 }
Chris Craikca2bf812013-07-29 15:28:30 -0700436
The Android Open Source Project893912b2009-03-03 19:30:05 -0800437 if (res_y != NULL)
438 {
439 *res_y = info_ptr->y_pixels_per_unit;
440 retval |= PNG_INFO_pHYs;
441 }
Chris Craikca2bf812013-07-29 15:28:30 -0700442
The Android Open Source Project893912b2009-03-03 19:30:05 -0800443 if (unit_type != NULL)
444 {
445 *unit_type = (int)info_ptr->phys_unit_type;
446 retval |= PNG_INFO_pHYs;
Chris Craikca2bf812013-07-29 15:28:30 -0700447
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700448 if (*unit_type == 1)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800449 {
450 if (res_x != NULL) *res_x = (png_uint_32)(*res_x * .0254 + .50);
451 if (res_y != NULL) *res_y = (png_uint_32)(*res_y * .0254 + .50);
452 }
453 }
454 }
Chris Craikca2bf812013-07-29 15:28:30 -0700455
The Android Open Source Project893912b2009-03-03 19:30:05 -0800456 return (retval);
457}
Matt Sarett9b1fe632015-11-25 10:21:17 -0500458#endif /* pHYs */
Alex Naidis7a055fd2016-10-01 12:23:07 +0200459#endif /* INCH_CONVERSIONS */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800460
461/* png_get_channels really belongs in here, too, but it's been around longer */
462
Alex Naidis7a055fd2016-10-01 12:23:07 +0200463#endif /* EASY_ACCESS */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800464
Chris Craikca2bf812013-07-29 15:28:30 -0700465
The Android Open Source Project893912b2009-03-03 19:30:05 -0800466png_byte PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700467png_get_channels(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800468{
469 if (png_ptr != NULL && info_ptr != NULL)
470 return(info_ptr->channels);
Chris Craikca2bf812013-07-29 15:28:30 -0700471
472 return (0);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800473}
474
Chris Craikca2bf812013-07-29 15:28:30 -0700475#ifdef PNG_READ_SUPPORTED
476png_const_bytep PNGAPI
477png_get_signature(png_const_structrp png_ptr, png_const_inforp info_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800478{
479 if (png_ptr != NULL && info_ptr != NULL)
480 return(info_ptr->signature);
Chris Craikca2bf812013-07-29 15:28:30 -0700481
482 return (NULL);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800483}
Chris Craikca2bf812013-07-29 15:28:30 -0700484#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800485
Patrick Scott5f6bd842010-06-28 16:55:16 -0400486#ifdef PNG_bKGD_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800487png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700488png_get_bKGD(png_const_structrp png_ptr, png_inforp info_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200489 png_color_16p *background)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800490{
Matt Sarett9b1fe632015-11-25 10:21:17 -0500491 if (png_ptr != NULL && info_ptr != NULL &&
492 (info_ptr->valid & PNG_INFO_bKGD) != 0 &&
493 background != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800494 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700495 png_debug1(1, "in %s retrieval function", "bKGD");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400496
The Android Open Source Project893912b2009-03-03 19:30:05 -0800497 *background = &(info_ptr->background);
498 return (PNG_INFO_bKGD);
499 }
Chris Craikca2bf812013-07-29 15:28:30 -0700500
The Android Open Source Project893912b2009-03-03 19:30:05 -0800501 return (0);
502}
503#endif
504
Patrick Scott5f6bd842010-06-28 16:55:16 -0400505#ifdef PNG_cHRM_SUPPORTED
Chris Craikca2bf812013-07-29 15:28:30 -0700506/* The XYZ APIs were added in 1.5.5 to take advantage of the code added at the
507 * same time to correct the rgb grayscale coefficient defaults obtained from the
508 * cHRM chunk in 1.5.4
509 */
510# ifdef PNG_FLOATING_POINT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800511png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700512png_get_cHRM(png_const_structrp png_ptr, png_const_inforp info_ptr,
513 double *white_x, double *white_y, double *red_x, double *red_y,
514 double *green_x, double *green_y, double *blue_x, double *blue_y)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800515{
Chris Craikca2bf812013-07-29 15:28:30 -0700516 /* Quiet API change: this code used to only return the end points if a cHRM
517 * chunk was present, but the end points can also come from iCCP or sRGB
518 * chunks, so in 1.6.0 the png_get_ APIs return the end points regardless and
519 * the png_set_ APIs merely check that set end points are mutually
520 * consistent.
521 */
522 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500523 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800524 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700525 png_debug1(1, "in %s retrieval function", "cHRM");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400526
The Android Open Source Project893912b2009-03-03 19:30:05 -0800527 if (white_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700528 *white_x = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200529 info_ptr->colorspace.end_points_xy.whitex, "cHRM white X");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800530 if (white_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700531 *white_y = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200532 info_ptr->colorspace.end_points_xy.whitey, "cHRM white Y");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800533 if (red_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700534 *red_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redx,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200535 "cHRM red X");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800536 if (red_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700537 *red_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redy,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200538 "cHRM red Y");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800539 if (green_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700540 *green_x = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200541 info_ptr->colorspace.end_points_xy.greenx, "cHRM green X");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800542 if (green_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700543 *green_y = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200544 info_ptr->colorspace.end_points_xy.greeny, "cHRM green Y");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800545 if (blue_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700546 *blue_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluex,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200547 "cHRM blue X");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800548 if (blue_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700549 *blue_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluey,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200550 "cHRM blue Y");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800551 return (PNG_INFO_cHRM);
552 }
Chris Craikca2bf812013-07-29 15:28:30 -0700553
The Android Open Source Project893912b2009-03-03 19:30:05 -0800554 return (0);
555}
Chris Craikca2bf812013-07-29 15:28:30 -0700556
The Android Open Source Project893912b2009-03-03 19:30:05 -0800557png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700558png_get_cHRM_XYZ(png_const_structrp png_ptr, png_const_inforp info_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200559 double *red_X, double *red_Y, double *red_Z, double *green_X,
560 double *green_Y, double *green_Z, double *blue_X, double *blue_Y,
561 double *blue_Z)
Chris Craikca2bf812013-07-29 15:28:30 -0700562{
563 if (png_ptr != NULL && info_ptr != NULL &&
Alex Naidis7a055fd2016-10-01 12:23:07 +0200564 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
Chris Craikca2bf812013-07-29 15:28:30 -0700565 {
566 png_debug1(1, "in %s retrieval function", "cHRM_XYZ(float)");
567
568 if (red_X != NULL)
569 *red_X = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_X,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200570 "cHRM red X");
Chris Craikca2bf812013-07-29 15:28:30 -0700571 if (red_Y != NULL)
572 *red_Y = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_Y,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200573 "cHRM red Y");
Chris Craikca2bf812013-07-29 15:28:30 -0700574 if (red_Z != NULL)
575 *red_Z = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_Z,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200576 "cHRM red Z");
Chris Craikca2bf812013-07-29 15:28:30 -0700577 if (green_X != NULL)
578 *green_X = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200579 info_ptr->colorspace.end_points_XYZ.green_X, "cHRM green X");
Chris Craikca2bf812013-07-29 15:28:30 -0700580 if (green_Y != NULL)
581 *green_Y = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200582 info_ptr->colorspace.end_points_XYZ.green_Y, "cHRM green Y");
Chris Craikca2bf812013-07-29 15:28:30 -0700583 if (green_Z != NULL)
584 *green_Z = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200585 info_ptr->colorspace.end_points_XYZ.green_Z, "cHRM green Z");
Chris Craikca2bf812013-07-29 15:28:30 -0700586 if (blue_X != NULL)
587 *blue_X = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200588 info_ptr->colorspace.end_points_XYZ.blue_X, "cHRM blue X");
Chris Craikca2bf812013-07-29 15:28:30 -0700589 if (blue_Y != NULL)
590 *blue_Y = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200591 info_ptr->colorspace.end_points_XYZ.blue_Y, "cHRM blue Y");
Chris Craikca2bf812013-07-29 15:28:30 -0700592 if (blue_Z != NULL)
593 *blue_Z = png_float(png_ptr,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200594 info_ptr->colorspace.end_points_XYZ.blue_Z, "cHRM blue Z");
Chris Craikca2bf812013-07-29 15:28:30 -0700595 return (PNG_INFO_cHRM);
596 }
597
598 return (0);
599}
600# endif
601
602# ifdef PNG_FIXED_POINT_SUPPORTED
603png_uint_32 PNGAPI
604png_get_cHRM_XYZ_fixed(png_const_structrp png_ptr, png_const_inforp info_ptr,
605 png_fixed_point *int_red_X, png_fixed_point *int_red_Y,
606 png_fixed_point *int_red_Z, png_fixed_point *int_green_X,
607 png_fixed_point *int_green_Y, png_fixed_point *int_green_Z,
608 png_fixed_point *int_blue_X, png_fixed_point *int_blue_Y,
609 png_fixed_point *int_blue_Z)
610{
611 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500612 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
Chris Craikca2bf812013-07-29 15:28:30 -0700613 {
614 png_debug1(1, "in %s retrieval function", "cHRM_XYZ");
615
616 if (int_red_X != NULL)
617 *int_red_X = info_ptr->colorspace.end_points_XYZ.red_X;
618 if (int_red_Y != NULL)
619 *int_red_Y = info_ptr->colorspace.end_points_XYZ.red_Y;
620 if (int_red_Z != NULL)
621 *int_red_Z = info_ptr->colorspace.end_points_XYZ.red_Z;
622 if (int_green_X != NULL)
623 *int_green_X = info_ptr->colorspace.end_points_XYZ.green_X;
624 if (int_green_Y != NULL)
625 *int_green_Y = info_ptr->colorspace.end_points_XYZ.green_Y;
626 if (int_green_Z != NULL)
627 *int_green_Z = info_ptr->colorspace.end_points_XYZ.green_Z;
628 if (int_blue_X != NULL)
629 *int_blue_X = info_ptr->colorspace.end_points_XYZ.blue_X;
630 if (int_blue_Y != NULL)
631 *int_blue_Y = info_ptr->colorspace.end_points_XYZ.blue_Y;
632 if (int_blue_Z != NULL)
633 *int_blue_Z = info_ptr->colorspace.end_points_XYZ.blue_Z;
634 return (PNG_INFO_cHRM);
635 }
636
637 return (0);
638}
639
640png_uint_32 PNGAPI
641png_get_cHRM_fixed(png_const_structrp png_ptr, png_const_inforp info_ptr,
642 png_fixed_point *white_x, png_fixed_point *white_y, png_fixed_point *red_x,
643 png_fixed_point *red_y, png_fixed_point *green_x, png_fixed_point *green_y,
644 png_fixed_point *blue_x, png_fixed_point *blue_y)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800645{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400646 png_debug1(1, "in %s retrieval function", "cHRM");
647
Chris Craikca2bf812013-07-29 15:28:30 -0700648 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500649 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800650 {
The Android Open Source Project893912b2009-03-03 19:30:05 -0800651 if (white_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700652 *white_x = info_ptr->colorspace.end_points_xy.whitex;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800653 if (white_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700654 *white_y = info_ptr->colorspace.end_points_xy.whitey;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800655 if (red_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700656 *red_x = info_ptr->colorspace.end_points_xy.redx;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800657 if (red_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700658 *red_y = info_ptr->colorspace.end_points_xy.redy;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800659 if (green_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700660 *green_x = info_ptr->colorspace.end_points_xy.greenx;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800661 if (green_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700662 *green_y = info_ptr->colorspace.end_points_xy.greeny;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800663 if (blue_x != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700664 *blue_x = info_ptr->colorspace.end_points_xy.bluex;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800665 if (blue_y != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -0700666 *blue_y = info_ptr->colorspace.end_points_xy.bluey;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800667 return (PNG_INFO_cHRM);
668 }
Chris Craikca2bf812013-07-29 15:28:30 -0700669
The Android Open Source Project893912b2009-03-03 19:30:05 -0800670 return (0);
671}
Chris Craikca2bf812013-07-29 15:28:30 -0700672# endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800673#endif
674
Patrick Scott5f6bd842010-06-28 16:55:16 -0400675#ifdef PNG_gAMA_SUPPORTED
Chris Craikca2bf812013-07-29 15:28:30 -0700676# ifdef PNG_FIXED_POINT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800677png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700678png_get_gAMA_fixed(png_const_structrp png_ptr, png_const_inforp info_ptr,
679 png_fixed_point *file_gamma)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800680{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400681 png_debug1(1, "in %s retrieval function", "gAMA");
682
Chris Craikca2bf812013-07-29 15:28:30 -0700683 if (png_ptr != NULL && info_ptr != NULL &&
Alex Naidis7a055fd2016-10-01 12:23:07 +0200684 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 &&
685 file_gamma != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800686 {
Chris Craikca2bf812013-07-29 15:28:30 -0700687 *file_gamma = info_ptr->colorspace.gamma;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800688 return (PNG_INFO_gAMA);
689 }
Patrick Scott5f6bd842010-06-28 16:55:16 -0400690
The Android Open Source Project893912b2009-03-03 19:30:05 -0800691 return (0);
692}
Chris Craikca2bf812013-07-29 15:28:30 -0700693# endif
694
695# ifdef PNG_FLOATING_POINT_SUPPORTED
696png_uint_32 PNGAPI
697png_get_gAMA(png_const_structrp png_ptr, png_const_inforp info_ptr,
698 double *file_gamma)
699{
700 png_debug1(1, "in %s retrieval function", "gAMA(float)");
701
702 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500703 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 &&
Chris Craikca2bf812013-07-29 15:28:30 -0700704 file_gamma != NULL)
705 {
706 *file_gamma = png_float(png_ptr, info_ptr->colorspace.gamma,
Alex Naidis7a055fd2016-10-01 12:23:07 +0200707 "png_get_gAMA");
Chris Craikca2bf812013-07-29 15:28:30 -0700708 return (PNG_INFO_gAMA);
709 }
710
711 return (0);
712}
713# endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800714#endif
715
Patrick Scott5f6bd842010-06-28 16:55:16 -0400716#ifdef PNG_sRGB_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800717png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700718png_get_sRGB(png_const_structrp png_ptr, png_const_inforp info_ptr,
719 int *file_srgb_intent)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800720{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400721 png_debug1(1, "in %s retrieval function", "sRGB");
722
Matt Sarett9b1fe632015-11-25 10:21:17 -0500723 if (png_ptr != NULL && info_ptr != NULL &&
724 (info_ptr->valid & PNG_INFO_sRGB) != 0 && file_srgb_intent != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800725 {
Chris Craikca2bf812013-07-29 15:28:30 -0700726 *file_srgb_intent = info_ptr->colorspace.rendering_intent;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800727 return (PNG_INFO_sRGB);
728 }
Chris Craikca2bf812013-07-29 15:28:30 -0700729
The Android Open Source Project893912b2009-03-03 19:30:05 -0800730 return (0);
731}
732#endif
733
Patrick Scott5f6bd842010-06-28 16:55:16 -0400734#ifdef PNG_iCCP_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800735png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700736png_get_iCCP(png_const_structrp png_ptr, png_inforp info_ptr,
737 png_charpp name, int *compression_type,
738 png_bytepp profile, png_uint_32 *proflen)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800739{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400740 png_debug1(1, "in %s retrieval function", "iCCP");
741
Matt Sarett9b1fe632015-11-25 10:21:17 -0500742 if (png_ptr != NULL && info_ptr != NULL &&
743 (info_ptr->valid & PNG_INFO_iCCP) != 0 &&
xNombred07bb0d2020-03-10 20:17:12 +0100744 name != NULL && profile != NULL && proflen != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800745 {
The Android Open Source Project893912b2009-03-03 19:30:05 -0800746 *name = info_ptr->iccp_name;
747 *profile = info_ptr->iccp_profile;
Chris Craikca2bf812013-07-29 15:28:30 -0700748 *proflen = png_get_uint_32(info_ptr->iccp_profile);
749 /* This is somewhat irrelevant since the profile data returned has
750 * actually been uncompressed.
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400751 */
xNombred07bb0d2020-03-10 20:17:12 +0100752 if (compression_type != NULL)
753 *compression_type = PNG_COMPRESSION_TYPE_BASE;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800754 return (PNG_INFO_iCCP);
755 }
Chris Craikca2bf812013-07-29 15:28:30 -0700756
The Android Open Source Project893912b2009-03-03 19:30:05 -0800757 return (0);
xNombred07bb0d2020-03-10 20:17:12 +0100758
The Android Open Source Project893912b2009-03-03 19:30:05 -0800759}
760#endif
761
Patrick Scott5f6bd842010-06-28 16:55:16 -0400762#ifdef PNG_sPLT_SUPPORTED
Chris Craikca2bf812013-07-29 15:28:30 -0700763int PNGAPI
764png_get_sPLT(png_const_structrp png_ptr, png_inforp info_ptr,
765 png_sPLT_tpp spalettes)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800766{
767 if (png_ptr != NULL && info_ptr != NULL && spalettes != NULL)
768 {
Chris Craikca2bf812013-07-29 15:28:30 -0700769 *spalettes = info_ptr->splt_palettes;
770 return info_ptr->splt_palettes_num;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800771 }
Chris Craikca2bf812013-07-29 15:28:30 -0700772
The Android Open Source Project893912b2009-03-03 19:30:05 -0800773 return (0);
774}
775#endif
776
Leon Scroggins III3cc83ac2017-10-06 11:02:56 -0400777#ifdef PNG_eXIf_SUPPORTED
778png_uint_32 PNGAPI
779png_get_eXIf(png_const_structrp png_ptr, png_inforp info_ptr,
780 png_bytep *exif)
781{
782 png_warning(png_ptr, "png_get_eXIf does not work; use png_get_eXIf_1");
783 PNG_UNUSED(info_ptr)
784 PNG_UNUSED(exif)
785 return 0;
786}
787
788png_uint_32 PNGAPI
789png_get_eXIf_1(png_const_structrp png_ptr, png_const_inforp info_ptr,
790 png_uint_32 *num_exif, png_bytep *exif)
791{
792 png_debug1(1, "in %s retrieval function", "eXIf");
793
794 if (png_ptr != NULL && info_ptr != NULL &&
795 (info_ptr->valid & PNG_INFO_eXIf) != 0 && exif != NULL)
796 {
797 *num_exif = info_ptr->num_exif;
798 *exif = info_ptr->exif;
799 return (PNG_INFO_eXIf);
800 }
801
802 return (0);
803}
804#endif
805
Patrick Scott5f6bd842010-06-28 16:55:16 -0400806#ifdef PNG_hIST_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800807png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700808png_get_hIST(png_const_structrp png_ptr, png_inforp info_ptr,
809 png_uint_16p *hist)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800810{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400811 png_debug1(1, "in %s retrieval function", "hIST");
812
Matt Sarett9b1fe632015-11-25 10:21:17 -0500813 if (png_ptr != NULL && info_ptr != NULL &&
814 (info_ptr->valid & PNG_INFO_hIST) != 0 && hist != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800815 {
The Android Open Source Project893912b2009-03-03 19:30:05 -0800816 *hist = info_ptr->hist;
817 return (PNG_INFO_hIST);
818 }
Chris Craikca2bf812013-07-29 15:28:30 -0700819
The Android Open Source Project893912b2009-03-03 19:30:05 -0800820 return (0);
821}
822#endif
823
824png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700825png_get_IHDR(png_const_structrp png_ptr, png_const_inforp info_ptr,
826 png_uint_32 *width, png_uint_32 *height, int *bit_depth,
827 int *color_type, int *interlace_type, int *compression_type,
828 int *filter_type)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800829{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400830 png_debug1(1, "in %s retrieval function", "IHDR");
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400831
Matt Sarett9b1fe632015-11-25 10:21:17 -0500832 if (png_ptr == NULL || info_ptr == NULL)
Patrick Scott5f6bd842010-06-28 16:55:16 -0400833 return (0);
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400834
Matt Sarett9b1fe632015-11-25 10:21:17 -0500835 if (width != NULL)
836 *width = info_ptr->width;
837
838 if (height != NULL)
839 *height = info_ptr->height;
840
841 if (bit_depth != NULL)
842 *bit_depth = info_ptr->bit_depth;
843
844 if (color_type != NULL)
845 *color_type = info_ptr->color_type;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400846
Patrick Scott5f6bd842010-06-28 16:55:16 -0400847 if (compression_type != NULL)
848 *compression_type = info_ptr->compression_type;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400849
Patrick Scott5f6bd842010-06-28 16:55:16 -0400850 if (filter_type != NULL)
851 *filter_type = info_ptr->filter_type;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400852
Patrick Scott5f6bd842010-06-28 16:55:16 -0400853 if (interlace_type != NULL)
854 *interlace_type = info_ptr->interlace_type;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800855
Patrick Scott5f6bd842010-06-28 16:55:16 -0400856 /* This is redundant if we can be sure that the info_ptr values were all
857 * assigned in png_set_IHDR(). We do the check anyhow in case an
858 * application has ignored our advice not to mess with the members
859 * of info_ptr directly.
860 */
Chris Craikca2bf812013-07-29 15:28:30 -0700861 png_check_IHDR(png_ptr, info_ptr->width, info_ptr->height,
Patrick Scott5f6bd842010-06-28 16:55:16 -0400862 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
863 info_ptr->compression_type, info_ptr->filter_type);
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400864
Patrick Scott5f6bd842010-06-28 16:55:16 -0400865 return (1);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800866}
867
Patrick Scott5f6bd842010-06-28 16:55:16 -0400868#ifdef PNG_oFFs_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800869png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700870png_get_oFFs(png_const_structrp png_ptr, png_const_inforp info_ptr,
871 png_int_32 *offset_x, png_int_32 *offset_y, int *unit_type)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800872{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400873 png_debug1(1, "in %s retrieval function", "oFFs");
874
Matt Sarett9b1fe632015-11-25 10:21:17 -0500875 if (png_ptr != NULL && info_ptr != NULL &&
876 (info_ptr->valid & PNG_INFO_oFFs) != 0 &&
877 offset_x != NULL && offset_y != NULL && unit_type != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800878 {
The Android Open Source Project893912b2009-03-03 19:30:05 -0800879 *offset_x = info_ptr->x_offset;
880 *offset_y = info_ptr->y_offset;
881 *unit_type = (int)info_ptr->offset_unit_type;
882 return (PNG_INFO_oFFs);
883 }
Chris Craikca2bf812013-07-29 15:28:30 -0700884
The Android Open Source Project893912b2009-03-03 19:30:05 -0800885 return (0);
886}
887#endif
888
Patrick Scott5f6bd842010-06-28 16:55:16 -0400889#ifdef PNG_pCAL_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800890png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700891png_get_pCAL(png_const_structrp png_ptr, png_inforp info_ptr,
892 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams,
893 png_charp *units, png_charpp *params)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800894{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400895 png_debug1(1, "in %s retrieval function", "pCAL");
896
Matt Sarett9b1fe632015-11-25 10:21:17 -0500897 if (png_ptr != NULL && info_ptr != NULL &&
898 (info_ptr->valid & PNG_INFO_pCAL) != 0 &&
899 purpose != NULL && X0 != NULL && X1 != NULL && type != NULL &&
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400900 nparams != NULL && units != NULL && params != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800901 {
The Android Open Source Project893912b2009-03-03 19:30:05 -0800902 *purpose = info_ptr->pcal_purpose;
903 *X0 = info_ptr->pcal_X0;
904 *X1 = info_ptr->pcal_X1;
905 *type = (int)info_ptr->pcal_type;
906 *nparams = (int)info_ptr->pcal_nparams;
907 *units = info_ptr->pcal_units;
908 *params = info_ptr->pcal_params;
909 return (PNG_INFO_pCAL);
910 }
Chris Craikca2bf812013-07-29 15:28:30 -0700911
The Android Open Source Project893912b2009-03-03 19:30:05 -0800912 return (0);
913}
914#endif
915
Patrick Scott5f6bd842010-06-28 16:55:16 -0400916#ifdef PNG_sCAL_SUPPORTED
Chris Craikca2bf812013-07-29 15:28:30 -0700917# ifdef PNG_FIXED_POINT_SUPPORTED
918# if defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) || \
919 defined(PNG_FLOATING_POINT_SUPPORTED)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800920png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700921png_get_sCAL_fixed(png_const_structrp png_ptr, png_const_inforp info_ptr,
922 int *unit, png_fixed_point *width, png_fixed_point *height)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800923{
Chris Craikca2bf812013-07-29 15:28:30 -0700924 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500925 (info_ptr->valid & PNG_INFO_sCAL) != 0)
Chris Craikca2bf812013-07-29 15:28:30 -0700926 {
927 *unit = info_ptr->scal_unit;
928 /*TODO: make this work without FP support; the API is currently eliminated
929 * if neither floating point APIs nor internal floating point arithmetic
930 * are enabled.
931 */
932 *width = png_fixed(png_ptr, atof(info_ptr->scal_s_width), "sCAL width");
933 *height = png_fixed(png_ptr, atof(info_ptr->scal_s_height),
Alex Naidis7a055fd2016-10-01 12:23:07 +0200934 "sCAL height");
Chris Craikca2bf812013-07-29 15:28:30 -0700935 return (PNG_INFO_sCAL);
936 }
937
938 return(0);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800939}
Chris Craikca2bf812013-07-29 15:28:30 -0700940# endif /* FLOATING_ARITHMETIC */
941# endif /* FIXED_POINT */
942# ifdef PNG_FLOATING_POINT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800943png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700944png_get_sCAL(png_const_structrp png_ptr, png_const_inforp info_ptr,
945 int *unit, double *width, double *height)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800946{
Chris Craikca2bf812013-07-29 15:28:30 -0700947 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500948 (info_ptr->valid & PNG_INFO_sCAL) != 0)
Chris Craikca2bf812013-07-29 15:28:30 -0700949 {
950 *unit = info_ptr->scal_unit;
951 *width = atof(info_ptr->scal_s_width);
952 *height = atof(info_ptr->scal_s_height);
953 return (PNG_INFO_sCAL);
954 }
955
956 return(0);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800957}
Chris Craikca2bf812013-07-29 15:28:30 -0700958# endif /* FLOATING POINT */
959png_uint_32 PNGAPI
960png_get_sCAL_s(png_const_structrp png_ptr, png_const_inforp info_ptr,
961 int *unit, png_charpp width, png_charpp height)
962{
963 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500964 (info_ptr->valid & PNG_INFO_sCAL) != 0)
Chris Craikca2bf812013-07-29 15:28:30 -0700965 {
966 *unit = info_ptr->scal_unit;
967 *width = info_ptr->scal_s_width;
968 *height = info_ptr->scal_s_height;
969 return (PNG_INFO_sCAL);
970 }
971
972 return(0);
973}
974#endif /* sCAL */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800975
Patrick Scott5f6bd842010-06-28 16:55:16 -0400976#ifdef PNG_pHYs_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800977png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -0700978png_get_pHYs(png_const_structrp png_ptr, png_const_inforp info_ptr,
979 png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800980{
981 png_uint_32 retval = 0;
982
Patrick Scott5f6bd842010-06-28 16:55:16 -0400983 png_debug1(1, "in %s retrieval function", "pHYs");
984
The Android Open Source Project893912b2009-03-03 19:30:05 -0800985 if (png_ptr != NULL && info_ptr != NULL &&
Matt Sarett9b1fe632015-11-25 10:21:17 -0500986 (info_ptr->valid & PNG_INFO_pHYs) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800987 {
The Android Open Source Project893912b2009-03-03 19:30:05 -0800988 if (res_x != NULL)
989 {
990 *res_x = info_ptr->x_pixels_per_unit;
991 retval |= PNG_INFO_pHYs;
992 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400993
The Android Open Source Project893912b2009-03-03 19:30:05 -0800994 if (res_y != NULL)
995 {
996 *res_y = info_ptr->y_pixels_per_unit;
997 retval |= PNG_INFO_pHYs;
998 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400999
The Android Open Source Project893912b2009-03-03 19:30:05 -08001000 if (unit_type != NULL)
1001 {
1002 *unit_type = (int)info_ptr->phys_unit_type;
1003 retval |= PNG_INFO_pHYs;
1004 }
1005 }
Chris Craikca2bf812013-07-29 15:28:30 -07001006
The Android Open Source Project893912b2009-03-03 19:30:05 -08001007 return (retval);
1008}
Chris Craikca2bf812013-07-29 15:28:30 -07001009#endif /* pHYs */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001010
1011png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001012png_get_PLTE(png_const_structrp png_ptr, png_inforp info_ptr,
1013 png_colorp *palette, int *num_palette)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001014{
Patrick Scott5f6bd842010-06-28 16:55:16 -04001015 png_debug1(1, "in %s retrieval function", "PLTE");
1016
Matt Sarett9b1fe632015-11-25 10:21:17 -05001017 if (png_ptr != NULL && info_ptr != NULL &&
1018 (info_ptr->valid & PNG_INFO_PLTE) != 0 && palette != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001019 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001020 *palette = info_ptr->palette;
1021 *num_palette = info_ptr->num_palette;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001022 png_debug1(3, "num_palette = %d", *num_palette);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001023 return (PNG_INFO_PLTE);
1024 }
Chris Craikca2bf812013-07-29 15:28:30 -07001025
The Android Open Source Project893912b2009-03-03 19:30:05 -08001026 return (0);
1027}
1028
Patrick Scott5f6bd842010-06-28 16:55:16 -04001029#ifdef PNG_sBIT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001030png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001031png_get_sBIT(png_const_structrp png_ptr, png_inforp info_ptr,
1032 png_color_8p *sig_bit)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001033{
Patrick Scott5f6bd842010-06-28 16:55:16 -04001034 png_debug1(1, "in %s retrieval function", "sBIT");
1035
Matt Sarett9b1fe632015-11-25 10:21:17 -05001036 if (png_ptr != NULL && info_ptr != NULL &&
1037 (info_ptr->valid & PNG_INFO_sBIT) != 0 && sig_bit != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001038 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001039 *sig_bit = &(info_ptr->sig_bit);
1040 return (PNG_INFO_sBIT);
1041 }
Chris Craikca2bf812013-07-29 15:28:30 -07001042
The Android Open Source Project893912b2009-03-03 19:30:05 -08001043 return (0);
1044}
1045#endif
1046
Patrick Scott5f6bd842010-06-28 16:55:16 -04001047#ifdef PNG_TEXT_SUPPORTED
Chris Craikca2bf812013-07-29 15:28:30 -07001048int PNGAPI
1049png_get_text(png_const_structrp png_ptr, png_inforp info_ptr,
1050 png_textp *text_ptr, int *num_text)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001051{
1052 if (png_ptr != NULL && info_ptr != NULL && info_ptr->num_text > 0)
1053 {
Chris Craikca2bf812013-07-29 15:28:30 -07001054 png_debug1(1, "in 0x%lx retrieval function",
1055 (unsigned long)png_ptr->chunk_name);
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001056
The Android Open Source Project893912b2009-03-03 19:30:05 -08001057 if (text_ptr != NULL)
1058 *text_ptr = info_ptr->text;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001059
The Android Open Source Project893912b2009-03-03 19:30:05 -08001060 if (num_text != NULL)
1061 *num_text = info_ptr->num_text;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001062
Chris Craikca2bf812013-07-29 15:28:30 -07001063 return info_ptr->num_text;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001064 }
Chris Craikca2bf812013-07-29 15:28:30 -07001065
The Android Open Source Project893912b2009-03-03 19:30:05 -08001066 if (num_text != NULL)
Chris Craikca2bf812013-07-29 15:28:30 -07001067 *num_text = 0;
1068
The Android Open Source Project893912b2009-03-03 19:30:05 -08001069 return(0);
1070}
1071#endif
1072
Patrick Scott5f6bd842010-06-28 16:55:16 -04001073#ifdef PNG_tIME_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001074png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001075png_get_tIME(png_const_structrp png_ptr, png_inforp info_ptr,
1076 png_timep *mod_time)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001077{
Patrick Scott5f6bd842010-06-28 16:55:16 -04001078 png_debug1(1, "in %s retrieval function", "tIME");
1079
Matt Sarett9b1fe632015-11-25 10:21:17 -05001080 if (png_ptr != NULL && info_ptr != NULL &&
1081 (info_ptr->valid & PNG_INFO_tIME) != 0 && mod_time != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001082 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001083 *mod_time = &(info_ptr->mod_time);
1084 return (PNG_INFO_tIME);
1085 }
Chris Craikca2bf812013-07-29 15:28:30 -07001086
The Android Open Source Project893912b2009-03-03 19:30:05 -08001087 return (0);
1088}
1089#endif
1090
Patrick Scott5f6bd842010-06-28 16:55:16 -04001091#ifdef PNG_tRNS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001092png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001093png_get_tRNS(png_const_structrp png_ptr, png_inforp info_ptr,
1094 png_bytep *trans_alpha, int *num_trans, png_color_16p *trans_color)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001095{
1096 png_uint_32 retval = 0;
Matt Sarett9b1fe632015-11-25 10:21:17 -05001097 if (png_ptr != NULL && info_ptr != NULL &&
1098 (info_ptr->valid & PNG_INFO_tRNS) != 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001099 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001100 png_debug1(1, "in %s retrieval function", "tRNS");
Patrick Scott5f6bd842010-06-28 16:55:16 -04001101
The Android Open Source Project893912b2009-03-03 19:30:05 -08001102 if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
1103 {
Chris Craikca2bf812013-07-29 15:28:30 -07001104 if (trans_alpha != NULL)
1105 {
1106 *trans_alpha = info_ptr->trans_alpha;
1107 retval |= PNG_INFO_tRNS;
1108 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001109
Chris Craikca2bf812013-07-29 15:28:30 -07001110 if (trans_color != NULL)
1111 *trans_color = &(info_ptr->trans_color);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001112 }
Chris Craikca2bf812013-07-29 15:28:30 -07001113
The Android Open Source Project893912b2009-03-03 19:30:05 -08001114 else /* if (info_ptr->color_type != PNG_COLOR_TYPE_PALETTE) */
1115 {
Chris Craikca2bf812013-07-29 15:28:30 -07001116 if (trans_color != NULL)
1117 {
1118 *trans_color = &(info_ptr->trans_color);
1119 retval |= PNG_INFO_tRNS;
1120 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001121
Chris Craikca2bf812013-07-29 15:28:30 -07001122 if (trans_alpha != NULL)
1123 *trans_alpha = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001124 }
Chris Craikca2bf812013-07-29 15:28:30 -07001125
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001126 if (num_trans != NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001127 {
1128 *num_trans = info_ptr->num_trans;
1129 retval |= PNG_INFO_tRNS;
1130 }
1131 }
Chris Craikca2bf812013-07-29 15:28:30 -07001132
The Android Open Source Project893912b2009-03-03 19:30:05 -08001133 return (retval);
1134}
1135#endif
1136
Chris Craikca2bf812013-07-29 15:28:30 -07001137#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
1138int PNGAPI
1139png_get_unknown_chunks(png_const_structrp png_ptr, png_inforp info_ptr,
1140 png_unknown_chunkpp unknowns)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001141{
1142 if (png_ptr != NULL && info_ptr != NULL && unknowns != NULL)
1143 {
Chris Craikca2bf812013-07-29 15:28:30 -07001144 *unknowns = info_ptr->unknown_chunks;
1145 return info_ptr->unknown_chunks_num;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001146 }
Chris Craikca2bf812013-07-29 15:28:30 -07001147
The Android Open Source Project893912b2009-03-03 19:30:05 -08001148 return (0);
1149}
1150#endif
1151
Patrick Scott5f6bd842010-06-28 16:55:16 -04001152#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001153png_byte PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001154png_get_rgb_to_gray_status (png_const_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001155{
Chris Craikca2bf812013-07-29 15:28:30 -07001156 return (png_byte)(png_ptr ? png_ptr->rgb_to_gray_status : 0);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001157}
1158#endif
1159
Patrick Scott5f6bd842010-06-28 16:55:16 -04001160#ifdef PNG_USER_CHUNKS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001161png_voidp PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001162png_get_user_chunk_ptr(png_const_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001163{
Chris Craikca2bf812013-07-29 15:28:30 -07001164 return (png_ptr ? png_ptr->user_chunk_ptr : NULL);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001165}
1166#endif
1167
xNombred07bb0d2020-03-10 20:17:12 +01001168size_t PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001169png_get_compression_buffer_size(png_const_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001170{
Chris Craikca2bf812013-07-29 15:28:30 -07001171 if (png_ptr == NULL)
1172 return 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001173
Matt Sarett9b1fe632015-11-25 10:21:17 -05001174#ifdef PNG_WRITE_SUPPORTED
Alex Naidis7a055fd2016-10-01 12:23:07 +02001175 if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0)
Matt Sarett9b1fe632015-11-25 10:21:17 -05001176#endif
Chris Craikca2bf812013-07-29 15:28:30 -07001177 {
Matt Sarett9b1fe632015-11-25 10:21:17 -05001178#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
Alex Naidis7a055fd2016-10-01 12:23:07 +02001179 return png_ptr->IDAT_read_size;
Matt Sarett9b1fe632015-11-25 10:21:17 -05001180#else
Alex Naidis7a055fd2016-10-01 12:23:07 +02001181 return PNG_IDAT_READ_SIZE;
Matt Sarett9b1fe632015-11-25 10:21:17 -05001182#endif
Chris Craikca2bf812013-07-29 15:28:30 -07001183 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001184
Matt Sarett9b1fe632015-11-25 10:21:17 -05001185#ifdef PNG_WRITE_SUPPORTED
Alex Naidis7a055fd2016-10-01 12:23:07 +02001186 else
1187 return png_ptr->zbuffer_size;
Matt Sarett9b1fe632015-11-25 10:21:17 -05001188#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001189}
1190
The Android Open Source Project893912b2009-03-03 19:30:05 -08001191#ifdef PNG_SET_USER_LIMITS_SUPPORTED
Chris Craikca2bf812013-07-29 15:28:30 -07001192/* These functions were added to libpng 1.2.6 and were enabled
1193 * by default in libpng-1.4.0 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001194png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001195png_get_user_width_max (png_const_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001196{
Chris Craikca2bf812013-07-29 15:28:30 -07001197 return (png_ptr ? png_ptr->user_width_max : 0);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001198}
Chris Craikca2bf812013-07-29 15:28:30 -07001199
The Android Open Source Project893912b2009-03-03 19:30:05 -08001200png_uint_32 PNGAPI
Chris Craikca2bf812013-07-29 15:28:30 -07001201png_get_user_height_max (png_const_structrp png_ptr)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001202{
Chris Craikca2bf812013-07-29 15:28:30 -07001203 return (png_ptr ? png_ptr->user_height_max : 0);
1204}
1205
1206/* This function was added to libpng 1.4.0 */
1207png_uint_32 PNGAPI
1208png_get_chunk_cache_max (png_const_structrp png_ptr)
1209{
1210 return (png_ptr ? png_ptr->user_chunk_cache_max : 0);
1211}
1212
1213/* This function was added to libpng 1.4.1 */
1214png_alloc_size_t PNGAPI
1215png_get_chunk_malloc_max (png_const_structrp png_ptr)
1216{
1217 return (png_ptr ? png_ptr->user_chunk_malloc_max : 0);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001218}
Matt Sarett9b1fe632015-11-25 10:21:17 -05001219#endif /* SET_USER_LIMITS */
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001220
Chris Craikca2bf812013-07-29 15:28:30 -07001221/* These functions were added to libpng 1.4.0 */
1222#ifdef PNG_IO_STATE_SUPPORTED
1223png_uint_32 PNGAPI
1224png_get_io_state (png_const_structrp png_ptr)
1225{
1226 return png_ptr->io_state;
1227}
1228
1229png_uint_32 PNGAPI
1230png_get_io_chunk_type (png_const_structrp png_ptr)
1231{
1232 return png_ptr->chunk_name;
1233}
Matt Sarett9b1fe632015-11-25 10:21:17 -05001234#endif /* IO_STATE */
Chris Craikca2bf812013-07-29 15:28:30 -07001235
1236#ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED
1237# ifdef PNG_GET_PALETTE_MAX_SUPPORTED
1238int PNGAPI
1239png_get_palette_max(png_const_structp png_ptr, png_const_infop info_ptr)
1240{
1241 if (png_ptr != NULL && info_ptr != NULL)
1242 return png_ptr->num_palette_max;
1243
1244 return (-1);
1245}
1246# endif
1247#endif
1248
Matt Sarett9b1fe632015-11-25 10:21:17 -05001249#endif /* READ || WRITE */