Line | Count | Source (jump to first uncovered line) |
1 | | |
2 | | /* pngget.c - retrieval of values from info struct |
3 | | * |
4 | | * 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. |
8 | | * |
9 | | * This code is released under the libpng license. |
10 | | * For conditions of distribution and use, see the disclaimer |
11 | | * and license in png.h |
12 | | * |
13 | | */ |
14 | | |
15 | | #include "pngpriv.h" |
16 | | |
17 | | #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) |
18 | | |
19 | | png_uint_32 PNGAPI |
20 | | png_get_valid(png_const_structrp png_ptr, png_const_inforp info_ptr, |
21 | | png_uint_32 flag) |
22 | 0 | { |
23 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
24 | 0 | return(info_ptr->valid & flag); |
25 | | |
26 | 0 | return(0); |
27 | 0 | } |
28 | | |
29 | | size_t PNGAPI |
30 | | png_get_rowbytes(png_const_structrp png_ptr, png_const_inforp info_ptr) |
31 | 19.5k | { |
32 | 19.5k | if (png_ptr != NULL && info_ptr != NULL) |
33 | 19.5k | return(info_ptr->rowbytes); |
34 | | |
35 | 0 | return(0); |
36 | 19.5k | } |
37 | | |
38 | | #ifdef PNG_INFO_IMAGE_SUPPORTED |
39 | | png_bytepp PNGAPI |
40 | | png_get_rows(png_const_structrp png_ptr, png_const_inforp info_ptr) |
41 | 0 | { |
42 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
43 | 0 | return(info_ptr->row_pointers); |
44 | | |
45 | 0 | return(0); |
46 | 0 | } |
47 | | #endif |
48 | | |
49 | | #ifdef PNG_EASY_ACCESS_SUPPORTED |
50 | | /* Easy access to info, added in libpng-0.99 */ |
51 | | png_uint_32 PNGAPI |
52 | | png_get_image_width(png_const_structrp png_ptr, png_const_inforp info_ptr) |
53 | 0 | { |
54 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
55 | 0 | return info_ptr->width; |
56 | | |
57 | 0 | return (0); |
58 | 0 | } |
59 | | |
60 | | png_uint_32 PNGAPI |
61 | | png_get_image_height(png_const_structrp png_ptr, png_const_inforp info_ptr) |
62 | 0 | { |
63 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
64 | 0 | return info_ptr->height; |
65 | | |
66 | 0 | return (0); |
67 | 0 | } |
68 | | |
69 | | png_byte PNGAPI |
70 | | png_get_bit_depth(png_const_structrp png_ptr, png_const_inforp info_ptr) |
71 | 0 | { |
72 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
73 | 0 | return info_ptr->bit_depth; |
74 | | |
75 | 0 | return (0); |
76 | 0 | } |
77 | | |
78 | | png_byte PNGAPI |
79 | | png_get_color_type(png_const_structrp png_ptr, png_const_inforp info_ptr) |
80 | 0 | { |
81 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
82 | 0 | return info_ptr->color_type; |
83 | | |
84 | 0 | return (0); |
85 | 0 | } |
86 | | |
87 | | png_byte PNGAPI |
88 | | png_get_filter_type(png_const_structrp png_ptr, png_const_inforp info_ptr) |
89 | 0 | { |
90 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
91 | 0 | return info_ptr->filter_type; |
92 | | |
93 | 0 | return (0); |
94 | 0 | } |
95 | | |
96 | | png_byte PNGAPI |
97 | | png_get_interlace_type(png_const_structrp png_ptr, png_const_inforp info_ptr) |
98 | 0 | { |
99 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
100 | 0 | return info_ptr->interlace_type; |
101 | | |
102 | 0 | return (0); |
103 | 0 | } |
104 | | |
105 | | png_byte PNGAPI |
106 | | png_get_compression_type(png_const_structrp png_ptr, png_const_inforp info_ptr) |
107 | 0 | { |
108 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
109 | 0 | return info_ptr->compression_type; |
110 | | |
111 | 0 | return (0); |
112 | 0 | } |
113 | | |
114 | | png_uint_32 PNGAPI |
115 | | png_get_x_pixels_per_meter(png_const_structrp png_ptr, png_const_inforp |
116 | | info_ptr) |
117 | 0 | { |
118 | 0 | #ifdef PNG_pHYs_SUPPORTED |
119 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
120 | 0 | (info_ptr->valid & PNG_INFO_pHYs) != 0) |
121 | 0 | { |
122 | 0 | png_debug1(1, "in %s retrieval function", |
123 | 0 | "png_get_x_pixels_per_meter"); |
124 | |
|
125 | 0 | if (info_ptr->phys_unit_type == PNG_RESOLUTION_METER) |
126 | 0 | return (info_ptr->x_pixels_per_unit); |
127 | 0 | } |
128 | | #else |
129 | | PNG_UNUSED(png_ptr) |
130 | | PNG_UNUSED(info_ptr) |
131 | | #endif |
132 | | |
133 | 0 | return (0); |
134 | 0 | } |
135 | | |
136 | | png_uint_32 PNGAPI |
137 | | png_get_y_pixels_per_meter(png_const_structrp png_ptr, png_const_inforp |
138 | | info_ptr) |
139 | 0 | { |
140 | 0 | #ifdef PNG_pHYs_SUPPORTED |
141 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
142 | 0 | (info_ptr->valid & PNG_INFO_pHYs) != 0) |
143 | 0 | { |
144 | 0 | png_debug1(1, "in %s retrieval function", |
145 | 0 | "png_get_y_pixels_per_meter"); |
146 | |
|
147 | 0 | if (info_ptr->phys_unit_type == PNG_RESOLUTION_METER) |
148 | 0 | return (info_ptr->y_pixels_per_unit); |
149 | 0 | } |
150 | | #else |
151 | | PNG_UNUSED(png_ptr) |
152 | | PNG_UNUSED(info_ptr) |
153 | | #endif |
154 | | |
155 | 0 | return (0); |
156 | 0 | } |
157 | | |
158 | | png_uint_32 PNGAPI |
159 | | png_get_pixels_per_meter(png_const_structrp png_ptr, png_const_inforp info_ptr) |
160 | 0 | { |
161 | 0 | #ifdef PNG_pHYs_SUPPORTED |
162 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
163 | 0 | (info_ptr->valid & PNG_INFO_pHYs) != 0) |
164 | 0 | { |
165 | 0 | png_debug1(1, "in %s retrieval function", "png_get_pixels_per_meter"); |
166 | |
|
167 | 0 | if (info_ptr->phys_unit_type == PNG_RESOLUTION_METER && |
168 | 0 | info_ptr->x_pixels_per_unit == info_ptr->y_pixels_per_unit) |
169 | 0 | return (info_ptr->x_pixels_per_unit); |
170 | 0 | } |
171 | | #else |
172 | | PNG_UNUSED(png_ptr) |
173 | | PNG_UNUSED(info_ptr) |
174 | | #endif |
175 | | |
176 | 0 | return (0); |
177 | 0 | } |
178 | | |
179 | | #ifdef PNG_FLOATING_POINT_SUPPORTED |
180 | | float PNGAPI |
181 | | png_get_pixel_aspect_ratio(png_const_structrp png_ptr, png_const_inforp |
182 | | info_ptr) |
183 | 0 | { |
184 | 0 | #ifdef PNG_READ_pHYs_SUPPORTED |
185 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
186 | 0 | (info_ptr->valid & PNG_INFO_pHYs) != 0) |
187 | 0 | { |
188 | 0 | png_debug1(1, "in %s retrieval function", "png_get_aspect_ratio"); |
189 | |
|
190 | 0 | if (info_ptr->x_pixels_per_unit != 0) |
191 | 0 | return ((float)((float)info_ptr->y_pixels_per_unit |
192 | 0 | /(float)info_ptr->x_pixels_per_unit)); |
193 | 0 | } |
194 | | #else |
195 | | PNG_UNUSED(png_ptr) |
196 | | PNG_UNUSED(info_ptr) |
197 | | #endif |
198 | | |
199 | 0 | return ((float)0.0); |
200 | 0 | } |
201 | | #endif |
202 | | |
203 | | #ifdef PNG_FIXED_POINT_SUPPORTED |
204 | | png_fixed_point PNGAPI |
205 | | png_get_pixel_aspect_ratio_fixed(png_const_structrp png_ptr, |
206 | | png_const_inforp info_ptr) |
207 | 0 | { |
208 | 0 | #ifdef PNG_READ_pHYs_SUPPORTED |
209 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
210 | 0 | (info_ptr->valid & PNG_INFO_pHYs) != 0 && |
211 | 0 | info_ptr->x_pixels_per_unit > 0 && info_ptr->y_pixels_per_unit > 0 && |
212 | 0 | info_ptr->x_pixels_per_unit <= PNG_UINT_31_MAX && |
213 | 0 | info_ptr->y_pixels_per_unit <= PNG_UINT_31_MAX) |
214 | 0 | { |
215 | 0 | png_fixed_point res; |
216 | |
|
217 | 0 | 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 | 0 | if (png_muldiv(&res, (png_int_32)info_ptr->y_pixels_per_unit, PNG_FP_1, |
223 | 0 | (png_int_32)info_ptr->x_pixels_per_unit) != 0) |
224 | 0 | return res; |
225 | 0 | } |
226 | | #else |
227 | | PNG_UNUSED(png_ptr) |
228 | | PNG_UNUSED(info_ptr) |
229 | | #endif |
230 | | |
231 | 0 | return 0; |
232 | 0 | } |
233 | | #endif |
234 | | |
235 | | png_int_32 PNGAPI |
236 | | png_get_x_offset_microns(png_const_structrp png_ptr, png_const_inforp info_ptr) |
237 | 0 | { |
238 | 0 | #ifdef PNG_oFFs_SUPPORTED |
239 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
240 | 0 | (info_ptr->valid & PNG_INFO_oFFs) != 0) |
241 | 0 | { |
242 | 0 | png_debug1(1, "in %s retrieval function", "png_get_x_offset_microns"); |
243 | |
|
244 | 0 | if (info_ptr->offset_unit_type == PNG_OFFSET_MICROMETER) |
245 | 0 | return (info_ptr->x_offset); |
246 | 0 | } |
247 | | #else |
248 | | PNG_UNUSED(png_ptr) |
249 | | PNG_UNUSED(info_ptr) |
250 | | #endif |
251 | | |
252 | 0 | return (0); |
253 | 0 | } |
254 | | |
255 | | png_int_32 PNGAPI |
256 | | png_get_y_offset_microns(png_const_structrp png_ptr, png_const_inforp info_ptr) |
257 | 0 | { |
258 | 0 | #ifdef PNG_oFFs_SUPPORTED |
259 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
260 | 0 | (info_ptr->valid & PNG_INFO_oFFs) != 0) |
261 | 0 | { |
262 | 0 | png_debug1(1, "in %s retrieval function", "png_get_y_offset_microns"); |
263 | |
|
264 | 0 | if (info_ptr->offset_unit_type == PNG_OFFSET_MICROMETER) |
265 | 0 | return (info_ptr->y_offset); |
266 | 0 | } |
267 | | #else |
268 | | PNG_UNUSED(png_ptr) |
269 | | PNG_UNUSED(info_ptr) |
270 | | #endif |
271 | | |
272 | 0 | return (0); |
273 | 0 | } |
274 | | |
275 | | png_int_32 PNGAPI |
276 | | png_get_x_offset_pixels(png_const_structrp png_ptr, png_const_inforp info_ptr) |
277 | 0 | { |
278 | 0 | #ifdef PNG_oFFs_SUPPORTED |
279 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
280 | 0 | (info_ptr->valid & PNG_INFO_oFFs) != 0) |
281 | 0 | { |
282 | 0 | png_debug1(1, "in %s retrieval function", "png_get_x_offset_pixels"); |
283 | |
|
284 | 0 | if (info_ptr->offset_unit_type == PNG_OFFSET_PIXEL) |
285 | 0 | return (info_ptr->x_offset); |
286 | 0 | } |
287 | | #else |
288 | | PNG_UNUSED(png_ptr) |
289 | | PNG_UNUSED(info_ptr) |
290 | | #endif |
291 | | |
292 | 0 | return (0); |
293 | 0 | } |
294 | | |
295 | | png_int_32 PNGAPI |
296 | | png_get_y_offset_pixels(png_const_structrp png_ptr, png_const_inforp info_ptr) |
297 | 0 | { |
298 | 0 | #ifdef PNG_oFFs_SUPPORTED |
299 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
300 | 0 | (info_ptr->valid & PNG_INFO_oFFs) != 0) |
301 | 0 | { |
302 | 0 | png_debug1(1, "in %s retrieval function", "png_get_y_offset_pixels"); |
303 | |
|
304 | 0 | if (info_ptr->offset_unit_type == PNG_OFFSET_PIXEL) |
305 | 0 | return (info_ptr->y_offset); |
306 | 0 | } |
307 | | #else |
308 | | PNG_UNUSED(png_ptr) |
309 | | PNG_UNUSED(info_ptr) |
310 | | #endif |
311 | | |
312 | 0 | return (0); |
313 | 0 | } |
314 | | |
315 | | #ifdef PNG_INCH_CONVERSIONS_SUPPORTED |
316 | | static png_uint_32 |
317 | | ppi_from_ppm(png_uint_32 ppm) |
318 | 0 | { |
319 | | #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 | 0 | png_fixed_point result; |
339 | 0 | if (ppm <= PNG_UINT_31_MAX && png_muldiv(&result, (png_int_32)ppm, 127, |
340 | 0 | 5000) != 0) |
341 | 0 | return (png_uint_32)result; |
342 | | |
343 | | /* Overflow. */ |
344 | 0 | return 0; |
345 | 0 | #endif |
346 | 0 | } |
347 | | |
348 | | png_uint_32 PNGAPI |
349 | | png_get_pixels_per_inch(png_const_structrp png_ptr, png_const_inforp info_ptr) |
350 | 0 | { |
351 | 0 | return ppi_from_ppm(png_get_pixels_per_meter(png_ptr, info_ptr)); |
352 | 0 | } |
353 | | |
354 | | png_uint_32 PNGAPI |
355 | | png_get_x_pixels_per_inch(png_const_structrp png_ptr, png_const_inforp info_ptr) |
356 | 0 | { |
357 | 0 | return ppi_from_ppm(png_get_x_pixels_per_meter(png_ptr, info_ptr)); |
358 | 0 | } |
359 | | |
360 | | png_uint_32 PNGAPI |
361 | | png_get_y_pixels_per_inch(png_const_structrp png_ptr, png_const_inforp info_ptr) |
362 | 0 | { |
363 | 0 | return ppi_from_ppm(png_get_y_pixels_per_meter(png_ptr, info_ptr)); |
364 | 0 | } |
365 | | |
366 | | #ifdef PNG_FIXED_POINT_SUPPORTED |
367 | | static png_fixed_point |
368 | | png_fixed_inches_from_microns(png_const_structrp png_ptr, png_int_32 microns) |
369 | 0 | { |
370 | | /* Convert from meters * 1,000,000 to inches * 100,000, meters to |
371 | | * 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 | 0 | return png_muldiv_warn(png_ptr, microns, 500, 127); |
376 | 0 | } |
377 | | |
378 | | png_fixed_point PNGAPI |
379 | | png_get_x_offset_inches_fixed(png_const_structrp png_ptr, |
380 | | png_const_inforp info_ptr) |
381 | 0 | { |
382 | 0 | return png_fixed_inches_from_microns(png_ptr, |
383 | 0 | png_get_x_offset_microns(png_ptr, info_ptr)); |
384 | 0 | } |
385 | | #endif |
386 | | |
387 | | #ifdef PNG_FIXED_POINT_SUPPORTED |
388 | | png_fixed_point PNGAPI |
389 | | png_get_y_offset_inches_fixed(png_const_structrp png_ptr, |
390 | | png_const_inforp info_ptr) |
391 | 0 | { |
392 | 0 | return png_fixed_inches_from_microns(png_ptr, |
393 | 0 | png_get_y_offset_microns(png_ptr, info_ptr)); |
394 | 0 | } |
395 | | #endif |
396 | | |
397 | | #ifdef PNG_FLOATING_POINT_SUPPORTED |
398 | | float PNGAPI |
399 | | png_get_x_offset_inches(png_const_structrp png_ptr, png_const_inforp info_ptr) |
400 | 0 | { |
401 | | /* To avoid the overflow do the conversion directly in floating |
402 | | * point. |
403 | | */ |
404 | 0 | return (float)(png_get_x_offset_microns(png_ptr, info_ptr) * .00003937); |
405 | 0 | } |
406 | | #endif |
407 | | |
408 | | #ifdef PNG_FLOATING_POINT_SUPPORTED |
409 | | float PNGAPI |
410 | | png_get_y_offset_inches(png_const_structrp png_ptr, png_const_inforp info_ptr) |
411 | 0 | { |
412 | | /* To avoid the overflow do the conversion directly in floating |
413 | | * point. |
414 | | */ |
415 | 0 | return (float)(png_get_y_offset_microns(png_ptr, info_ptr) * .00003937); |
416 | 0 | } |
417 | | #endif |
418 | | |
419 | | #ifdef PNG_pHYs_SUPPORTED |
420 | | png_uint_32 PNGAPI |
421 | | png_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) |
423 | 0 | { |
424 | 0 | png_uint_32 retval = 0; |
425 | |
|
426 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
427 | 0 | (info_ptr->valid & PNG_INFO_pHYs) != 0) |
428 | 0 | { |
429 | 0 | png_debug1(1, "in %s retrieval function", "pHYs"); |
430 | |
|
431 | 0 | if (res_x != NULL) |
432 | 0 | { |
433 | 0 | *res_x = info_ptr->x_pixels_per_unit; |
434 | 0 | retval |= PNG_INFO_pHYs; |
435 | 0 | } |
436 | |
|
437 | 0 | if (res_y != NULL) |
438 | 0 | { |
439 | 0 | *res_y = info_ptr->y_pixels_per_unit; |
440 | 0 | retval |= PNG_INFO_pHYs; |
441 | 0 | } |
442 | |
|
443 | 0 | if (unit_type != NULL) |
444 | 0 | { |
445 | 0 | *unit_type = (int)info_ptr->phys_unit_type; |
446 | 0 | retval |= PNG_INFO_pHYs; |
447 | |
|
448 | 0 | if (*unit_type == 1) |
449 | 0 | { |
450 | 0 | if (res_x != NULL) *res_x = (png_uint_32)(*res_x * .0254 + .50); |
451 | 0 | if (res_y != NULL) *res_y = (png_uint_32)(*res_y * .0254 + .50); |
452 | 0 | } |
453 | 0 | } |
454 | 0 | } |
455 | |
|
456 | 0 | return (retval); |
457 | 0 | } |
458 | | #endif /* pHYs */ |
459 | | #endif /* INCH_CONVERSIONS */ |
460 | | |
461 | | /* png_get_channels really belongs in here, too, but it's been around longer */ |
462 | | |
463 | | #endif /* EASY_ACCESS */ |
464 | | |
465 | | |
466 | | png_byte PNGAPI |
467 | | png_get_channels(png_const_structrp png_ptr, png_const_inforp info_ptr) |
468 | 0 | { |
469 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
470 | 0 | return(info_ptr->channels); |
471 | | |
472 | 0 | return (0); |
473 | 0 | } |
474 | | |
475 | | #ifdef PNG_READ_SUPPORTED |
476 | | png_const_bytep PNGAPI |
477 | | png_get_signature(png_const_structrp png_ptr, png_const_inforp info_ptr) |
478 | 0 | { |
479 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
480 | 0 | return(info_ptr->signature); |
481 | | |
482 | 0 | return (NULL); |
483 | 0 | } |
484 | | #endif |
485 | | |
486 | | #ifdef PNG_bKGD_SUPPORTED |
487 | | png_uint_32 PNGAPI |
488 | | png_get_bKGD(png_const_structrp png_ptr, png_inforp info_ptr, |
489 | | png_color_16p *background) |
490 | 0 | { |
491 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
492 | 0 | (info_ptr->valid & PNG_INFO_bKGD) != 0 && |
493 | 0 | background != NULL) |
494 | 0 | { |
495 | 0 | png_debug1(1, "in %s retrieval function", "bKGD"); |
496 | |
|
497 | 0 | *background = &(info_ptr->background); |
498 | 0 | return (PNG_INFO_bKGD); |
499 | 0 | } |
500 | | |
501 | 0 | return (0); |
502 | 0 | } |
503 | | #endif |
504 | | |
505 | | #ifdef PNG_cHRM_SUPPORTED |
506 | | /* 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 |
511 | | png_uint_32 PNGAPI |
512 | | png_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) |
515 | 0 | { |
516 | | /* 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 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
523 | 0 | (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0) |
524 | 0 | { |
525 | 0 | png_debug1(1, "in %s retrieval function", "cHRM"); |
526 | |
|
527 | 0 | if (white_x != NULL) |
528 | 0 | *white_x = png_float(png_ptr, |
529 | 0 | info_ptr->colorspace.end_points_xy.whitex, "cHRM white X"); |
530 | 0 | if (white_y != NULL) |
531 | 0 | *white_y = png_float(png_ptr, |
532 | 0 | info_ptr->colorspace.end_points_xy.whitey, "cHRM white Y"); |
533 | 0 | if (red_x != NULL) |
534 | 0 | *red_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redx, |
535 | 0 | "cHRM red X"); |
536 | 0 | if (red_y != NULL) |
537 | 0 | *red_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redy, |
538 | 0 | "cHRM red Y"); |
539 | 0 | if (green_x != NULL) |
540 | 0 | *green_x = png_float(png_ptr, |
541 | 0 | info_ptr->colorspace.end_points_xy.greenx, "cHRM green X"); |
542 | 0 | if (green_y != NULL) |
543 | 0 | *green_y = png_float(png_ptr, |
544 | 0 | info_ptr->colorspace.end_points_xy.greeny, "cHRM green Y"); |
545 | 0 | if (blue_x != NULL) |
546 | 0 | *blue_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluex, |
547 | 0 | "cHRM blue X"); |
548 | 0 | if (blue_y != NULL) |
549 | 0 | *blue_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluey, |
550 | 0 | "cHRM blue Y"); |
551 | 0 | return (PNG_INFO_cHRM); |
552 | 0 | } |
553 | | |
554 | 0 | return (0); |
555 | 0 | } |
556 | | |
557 | | png_uint_32 PNGAPI |
558 | | png_get_cHRM_XYZ(png_const_structrp png_ptr, png_const_inforp info_ptr, |
559 | | 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) |
562 | 0 | { |
563 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
564 | 0 | (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0) |
565 | 0 | { |
566 | 0 | png_debug1(1, "in %s retrieval function", "cHRM_XYZ(float)"); |
567 | |
|
568 | 0 | if (red_X != NULL) |
569 | 0 | *red_X = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_X, |
570 | 0 | "cHRM red X"); |
571 | 0 | if (red_Y != NULL) |
572 | 0 | *red_Y = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_Y, |
573 | 0 | "cHRM red Y"); |
574 | 0 | if (red_Z != NULL) |
575 | 0 | *red_Z = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_Z, |
576 | 0 | "cHRM red Z"); |
577 | 0 | if (green_X != NULL) |
578 | 0 | *green_X = png_float(png_ptr, |
579 | 0 | info_ptr->colorspace.end_points_XYZ.green_X, "cHRM green X"); |
580 | 0 | if (green_Y != NULL) |
581 | 0 | *green_Y = png_float(png_ptr, |
582 | 0 | info_ptr->colorspace.end_points_XYZ.green_Y, "cHRM green Y"); |
583 | 0 | if (green_Z != NULL) |
584 | 0 | *green_Z = png_float(png_ptr, |
585 | 0 | info_ptr->colorspace.end_points_XYZ.green_Z, "cHRM green Z"); |
586 | 0 | if (blue_X != NULL) |
587 | 0 | *blue_X = png_float(png_ptr, |
588 | 0 | info_ptr->colorspace.end_points_XYZ.blue_X, "cHRM blue X"); |
589 | 0 | if (blue_Y != NULL) |
590 | 0 | *blue_Y = png_float(png_ptr, |
591 | 0 | info_ptr->colorspace.end_points_XYZ.blue_Y, "cHRM blue Y"); |
592 | 0 | if (blue_Z != NULL) |
593 | 0 | *blue_Z = png_float(png_ptr, |
594 | 0 | info_ptr->colorspace.end_points_XYZ.blue_Z, "cHRM blue Z"); |
595 | 0 | return (PNG_INFO_cHRM); |
596 | 0 | } |
597 | | |
598 | 0 | return (0); |
599 | 0 | } |
600 | | # endif |
601 | | |
602 | | # ifdef PNG_FIXED_POINT_SUPPORTED |
603 | | png_uint_32 PNGAPI |
604 | | png_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 | 0 | { |
611 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
612 | 0 | (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0) |
613 | 0 | { |
614 | 0 | png_debug1(1, "in %s retrieval function", "cHRM_XYZ"); |
615 | |
|
616 | 0 | if (int_red_X != NULL) |
617 | 0 | *int_red_X = info_ptr->colorspace.end_points_XYZ.red_X; |
618 | 0 | if (int_red_Y != NULL) |
619 | 0 | *int_red_Y = info_ptr->colorspace.end_points_XYZ.red_Y; |
620 | 0 | if (int_red_Z != NULL) |
621 | 0 | *int_red_Z = info_ptr->colorspace.end_points_XYZ.red_Z; |
622 | 0 | if (int_green_X != NULL) |
623 | 0 | *int_green_X = info_ptr->colorspace.end_points_XYZ.green_X; |
624 | 0 | if (int_green_Y != NULL) |
625 | 0 | *int_green_Y = info_ptr->colorspace.end_points_XYZ.green_Y; |
626 | 0 | if (int_green_Z != NULL) |
627 | 0 | *int_green_Z = info_ptr->colorspace.end_points_XYZ.green_Z; |
628 | 0 | if (int_blue_X != NULL) |
629 | 0 | *int_blue_X = info_ptr->colorspace.end_points_XYZ.blue_X; |
630 | 0 | if (int_blue_Y != NULL) |
631 | 0 | *int_blue_Y = info_ptr->colorspace.end_points_XYZ.blue_Y; |
632 | 0 | if (int_blue_Z != NULL) |
633 | 0 | *int_blue_Z = info_ptr->colorspace.end_points_XYZ.blue_Z; |
634 | 0 | return (PNG_INFO_cHRM); |
635 | 0 | } |
636 | | |
637 | 0 | return (0); |
638 | 0 | } |
639 | | |
640 | | png_uint_32 PNGAPI |
641 | | png_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) |
645 | 0 | { |
646 | 0 | png_debug1(1, "in %s retrieval function", "cHRM"); |
647 | |
|
648 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
649 | 0 | (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0) |
650 | 0 | { |
651 | 0 | if (white_x != NULL) |
652 | 0 | *white_x = info_ptr->colorspace.end_points_xy.whitex; |
653 | 0 | if (white_y != NULL) |
654 | 0 | *white_y = info_ptr->colorspace.end_points_xy.whitey; |
655 | 0 | if (red_x != NULL) |
656 | 0 | *red_x = info_ptr->colorspace.end_points_xy.redx; |
657 | 0 | if (red_y != NULL) |
658 | 0 | *red_y = info_ptr->colorspace.end_points_xy.redy; |
659 | 0 | if (green_x != NULL) |
660 | 0 | *green_x = info_ptr->colorspace.end_points_xy.greenx; |
661 | 0 | if (green_y != NULL) |
662 | 0 | *green_y = info_ptr->colorspace.end_points_xy.greeny; |
663 | 0 | if (blue_x != NULL) |
664 | 0 | *blue_x = info_ptr->colorspace.end_points_xy.bluex; |
665 | 0 | if (blue_y != NULL) |
666 | 0 | *blue_y = info_ptr->colorspace.end_points_xy.bluey; |
667 | 0 | return (PNG_INFO_cHRM); |
668 | 0 | } |
669 | | |
670 | 0 | return (0); |
671 | 0 | } |
672 | | # endif |
673 | | #endif |
674 | | |
675 | | #ifdef PNG_gAMA_SUPPORTED |
676 | | # ifdef PNG_FIXED_POINT_SUPPORTED |
677 | | png_uint_32 PNGAPI |
678 | | png_get_gAMA_fixed(png_const_structrp png_ptr, png_const_inforp info_ptr, |
679 | | png_fixed_point *file_gamma) |
680 | 0 | { |
681 | 0 | png_debug1(1, "in %s retrieval function", "gAMA"); |
682 | |
|
683 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
684 | 0 | (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 && |
685 | 0 | file_gamma != NULL) |
686 | 0 | { |
687 | 0 | *file_gamma = info_ptr->colorspace.gamma; |
688 | 0 | return (PNG_INFO_gAMA); |
689 | 0 | } |
690 | | |
691 | 0 | return (0); |
692 | 0 | } |
693 | | # endif |
694 | | |
695 | | # ifdef PNG_FLOATING_POINT_SUPPORTED |
696 | | png_uint_32 PNGAPI |
697 | | png_get_gAMA(png_const_structrp png_ptr, png_const_inforp info_ptr, |
698 | | double *file_gamma) |
699 | 0 | { |
700 | 0 | png_debug1(1, "in %s retrieval function", "gAMA(float)"); |
701 | |
|
702 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
703 | 0 | (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 && |
704 | 0 | file_gamma != NULL) |
705 | 0 | { |
706 | 0 | *file_gamma = png_float(png_ptr, info_ptr->colorspace.gamma, |
707 | 0 | "png_get_gAMA"); |
708 | 0 | return (PNG_INFO_gAMA); |
709 | 0 | } |
710 | | |
711 | 0 | return (0); |
712 | 0 | } |
713 | | # endif |
714 | | #endif |
715 | | |
716 | | #ifdef PNG_sRGB_SUPPORTED |
717 | | png_uint_32 PNGAPI |
718 | | png_get_sRGB(png_const_structrp png_ptr, png_const_inforp info_ptr, |
719 | | int *file_srgb_intent) |
720 | 0 | { |
721 | 0 | png_debug1(1, "in %s retrieval function", "sRGB"); |
722 | |
|
723 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
724 | 0 | (info_ptr->valid & PNG_INFO_sRGB) != 0 && file_srgb_intent != NULL) |
725 | 0 | { |
726 | 0 | *file_srgb_intent = info_ptr->colorspace.rendering_intent; |
727 | 0 | return (PNG_INFO_sRGB); |
728 | 0 | } |
729 | | |
730 | 0 | return (0); |
731 | 0 | } |
732 | | #endif |
733 | | |
734 | | #ifdef PNG_iCCP_SUPPORTED |
735 | | png_uint_32 PNGAPI |
736 | | png_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) |
739 | 0 | { |
740 | 0 | png_debug1(1, "in %s retrieval function", "iCCP"); |
741 | |
|
742 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
743 | 0 | (info_ptr->valid & PNG_INFO_iCCP) != 0 && |
744 | 0 | name != NULL && profile != NULL && proflen != NULL) |
745 | 0 | { |
746 | 0 | *name = info_ptr->iccp_name; |
747 | 0 | *profile = info_ptr->iccp_profile; |
748 | 0 | *proflen = png_get_uint_32(info_ptr->iccp_profile); |
749 | | /* This is somewhat irrelevant since the profile data returned has |
750 | | * actually been uncompressed. |
751 | | */ |
752 | 0 | if (compression_type != NULL) |
753 | 0 | *compression_type = PNG_COMPRESSION_TYPE_BASE; |
754 | 0 | return (PNG_INFO_iCCP); |
755 | 0 | } |
756 | | |
757 | 0 | return (0); |
758 | |
|
759 | 0 | } |
760 | | #endif |
761 | | |
762 | | #ifdef PNG_sPLT_SUPPORTED |
763 | | int PNGAPI |
764 | | png_get_sPLT(png_const_structrp png_ptr, png_inforp info_ptr, |
765 | | png_sPLT_tpp spalettes) |
766 | 0 | { |
767 | 0 | if (png_ptr != NULL && info_ptr != NULL && spalettes != NULL) |
768 | 0 | { |
769 | 0 | *spalettes = info_ptr->splt_palettes; |
770 | 0 | return info_ptr->splt_palettes_num; |
771 | 0 | } |
772 | | |
773 | 0 | return (0); |
774 | 0 | } |
775 | | #endif |
776 | | |
777 | | #ifdef PNG_eXIf_SUPPORTED |
778 | | png_uint_32 PNGAPI |
779 | | png_get_eXIf(png_const_structrp png_ptr, png_inforp info_ptr, |
780 | | png_bytep *exif) |
781 | 0 | { |
782 | 0 | png_warning(png_ptr, "png_get_eXIf does not work; use png_get_eXIf_1"); |
783 | 0 | PNG_UNUSED(info_ptr) |
784 | 0 | PNG_UNUSED(exif) |
785 | 0 | return 0; |
786 | 0 | } |
787 | | |
788 | | png_uint_32 PNGAPI |
789 | | png_get_eXIf_1(png_const_structrp png_ptr, png_const_inforp info_ptr, |
790 | | png_uint_32 *num_exif, png_bytep *exif) |
791 | 0 | { |
792 | 0 | png_debug1(1, "in %s retrieval function", "eXIf"); |
793 | |
|
794 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
795 | 0 | (info_ptr->valid & PNG_INFO_eXIf) != 0 && exif != NULL) |
796 | 0 | { |
797 | 0 | *num_exif = info_ptr->num_exif; |
798 | 0 | *exif = info_ptr->exif; |
799 | 0 | return (PNG_INFO_eXIf); |
800 | 0 | } |
801 | | |
802 | 0 | return (0); |
803 | 0 | } |
804 | | #endif |
805 | | |
806 | | #ifdef PNG_hIST_SUPPORTED |
807 | | png_uint_32 PNGAPI |
808 | | png_get_hIST(png_const_structrp png_ptr, png_inforp info_ptr, |
809 | | png_uint_16p *hist) |
810 | 0 | { |
811 | 0 | png_debug1(1, "in %s retrieval function", "hIST"); |
812 | |
|
813 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
814 | 0 | (info_ptr->valid & PNG_INFO_hIST) != 0 && hist != NULL) |
815 | 0 | { |
816 | 0 | *hist = info_ptr->hist; |
817 | 0 | return (PNG_INFO_hIST); |
818 | 0 | } |
819 | | |
820 | 0 | return (0); |
821 | 0 | } |
822 | | #endif |
823 | | |
824 | | png_uint_32 PNGAPI |
825 | | png_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) |
829 | 19.6k | { |
830 | 19.6k | png_debug1(1, "in %s retrieval function", "IHDR"); |
831 | | |
832 | 19.6k | if (png_ptr == NULL || info_ptr == NULL) |
833 | 0 | return (0); |
834 | | |
835 | 19.6k | if (width != NULL) |
836 | 19.6k | *width = info_ptr->width; |
837 | | |
838 | 19.6k | if (height != NULL) |
839 | 19.6k | *height = info_ptr->height; |
840 | | |
841 | 19.6k | if (bit_depth != NULL) |
842 | 19.6k | *bit_depth = info_ptr->bit_depth; |
843 | | |
844 | 19.6k | if (color_type != NULL) |
845 | 19.6k | *color_type = info_ptr->color_type; |
846 | | |
847 | 19.6k | if (compression_type != NULL) |
848 | 19.6k | *compression_type = info_ptr->compression_type; |
849 | | |
850 | 19.6k | if (filter_type != NULL) |
851 | 19.6k | *filter_type = info_ptr->filter_type; |
852 | | |
853 | 19.6k | if (interlace_type != NULL) |
854 | 19.6k | *interlace_type = info_ptr->interlace_type; |
855 | | |
856 | | /* 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 | | */ |
861 | 19.6k | png_check_IHDR(png_ptr, info_ptr->width, info_ptr->height, |
862 | 19.6k | info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type, |
863 | 19.6k | info_ptr->compression_type, info_ptr->filter_type); |
864 | | |
865 | 19.6k | return (1); |
866 | 19.6k | } |
867 | | |
868 | | #ifdef PNG_oFFs_SUPPORTED |
869 | | png_uint_32 PNGAPI |
870 | | png_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) |
872 | 0 | { |
873 | 0 | png_debug1(1, "in %s retrieval function", "oFFs"); |
874 | |
|
875 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
876 | 0 | (info_ptr->valid & PNG_INFO_oFFs) != 0 && |
877 | 0 | offset_x != NULL && offset_y != NULL && unit_type != NULL) |
878 | 0 | { |
879 | 0 | *offset_x = info_ptr->x_offset; |
880 | 0 | *offset_y = info_ptr->y_offset; |
881 | 0 | *unit_type = (int)info_ptr->offset_unit_type; |
882 | 0 | return (PNG_INFO_oFFs); |
883 | 0 | } |
884 | | |
885 | 0 | return (0); |
886 | 0 | } |
887 | | #endif |
888 | | |
889 | | #ifdef PNG_pCAL_SUPPORTED |
890 | | png_uint_32 PNGAPI |
891 | | png_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) |
894 | 0 | { |
895 | 0 | png_debug1(1, "in %s retrieval function", "pCAL"); |
896 | |
|
897 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
898 | 0 | (info_ptr->valid & PNG_INFO_pCAL) != 0 && |
899 | 0 | purpose != NULL && X0 != NULL && X1 != NULL && type != NULL && |
900 | 0 | nparams != NULL && units != NULL && params != NULL) |
901 | 0 | { |
902 | 0 | *purpose = info_ptr->pcal_purpose; |
903 | 0 | *X0 = info_ptr->pcal_X0; |
904 | 0 | *X1 = info_ptr->pcal_X1; |
905 | 0 | *type = (int)info_ptr->pcal_type; |
906 | 0 | *nparams = (int)info_ptr->pcal_nparams; |
907 | 0 | *units = info_ptr->pcal_units; |
908 | 0 | *params = info_ptr->pcal_params; |
909 | 0 | return (PNG_INFO_pCAL); |
910 | 0 | } |
911 | | |
912 | 0 | return (0); |
913 | 0 | } |
914 | | #endif |
915 | | |
916 | | #ifdef PNG_sCAL_SUPPORTED |
917 | | # ifdef PNG_FIXED_POINT_SUPPORTED |
918 | | # if defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) || \ |
919 | | defined(PNG_FLOATING_POINT_SUPPORTED) |
920 | | png_uint_32 PNGAPI |
921 | | png_get_sCAL_fixed(png_const_structrp png_ptr, png_const_inforp info_ptr, |
922 | | int *unit, png_fixed_point *width, png_fixed_point *height) |
923 | 0 | { |
924 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
925 | 0 | (info_ptr->valid & PNG_INFO_sCAL) != 0) |
926 | 0 | { |
927 | 0 | *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 | 0 | *width = png_fixed(png_ptr, atof(info_ptr->scal_s_width), "sCAL width"); |
933 | 0 | *height = png_fixed(png_ptr, atof(info_ptr->scal_s_height), |
934 | 0 | "sCAL height"); |
935 | 0 | return (PNG_INFO_sCAL); |
936 | 0 | } |
937 | | |
938 | 0 | return(0); |
939 | 0 | } |
940 | | # endif /* FLOATING_ARITHMETIC */ |
941 | | # endif /* FIXED_POINT */ |
942 | | # ifdef PNG_FLOATING_POINT_SUPPORTED |
943 | | png_uint_32 PNGAPI |
944 | | png_get_sCAL(png_const_structrp png_ptr, png_const_inforp info_ptr, |
945 | | int *unit, double *width, double *height) |
946 | 0 | { |
947 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
948 | 0 | (info_ptr->valid & PNG_INFO_sCAL) != 0) |
949 | 0 | { |
950 | 0 | *unit = info_ptr->scal_unit; |
951 | 0 | *width = atof(info_ptr->scal_s_width); |
952 | 0 | *height = atof(info_ptr->scal_s_height); |
953 | 0 | return (PNG_INFO_sCAL); |
954 | 0 | } |
955 | | |
956 | 0 | return(0); |
957 | 0 | } |
958 | | # endif /* FLOATING POINT */ |
959 | | png_uint_32 PNGAPI |
960 | | png_get_sCAL_s(png_const_structrp png_ptr, png_const_inforp info_ptr, |
961 | | int *unit, png_charpp width, png_charpp height) |
962 | 0 | { |
963 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
964 | 0 | (info_ptr->valid & PNG_INFO_sCAL) != 0) |
965 | 0 | { |
966 | 0 | *unit = info_ptr->scal_unit; |
967 | 0 | *width = info_ptr->scal_s_width; |
968 | 0 | *height = info_ptr->scal_s_height; |
969 | 0 | return (PNG_INFO_sCAL); |
970 | 0 | } |
971 | | |
972 | 0 | return(0); |
973 | 0 | } |
974 | | #endif /* sCAL */ |
975 | | |
976 | | #ifdef PNG_pHYs_SUPPORTED |
977 | | png_uint_32 PNGAPI |
978 | | png_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) |
980 | 0 | { |
981 | 0 | png_uint_32 retval = 0; |
982 | |
|
983 | 0 | png_debug1(1, "in %s retrieval function", "pHYs"); |
984 | |
|
985 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
986 | 0 | (info_ptr->valid & PNG_INFO_pHYs) != 0) |
987 | 0 | { |
988 | 0 | if (res_x != NULL) |
989 | 0 | { |
990 | 0 | *res_x = info_ptr->x_pixels_per_unit; |
991 | 0 | retval |= PNG_INFO_pHYs; |
992 | 0 | } |
993 | |
|
994 | 0 | if (res_y != NULL) |
995 | 0 | { |
996 | 0 | *res_y = info_ptr->y_pixels_per_unit; |
997 | 0 | retval |= PNG_INFO_pHYs; |
998 | 0 | } |
999 | |
|
1000 | 0 | if (unit_type != NULL) |
1001 | 0 | { |
1002 | 0 | *unit_type = (int)info_ptr->phys_unit_type; |
1003 | 0 | retval |= PNG_INFO_pHYs; |
1004 | 0 | } |
1005 | 0 | } |
1006 | |
|
1007 | 0 | return (retval); |
1008 | 0 | } |
1009 | | #endif /* pHYs */ |
1010 | | |
1011 | | png_uint_32 PNGAPI |
1012 | | png_get_PLTE(png_const_structrp png_ptr, png_inforp info_ptr, |
1013 | | png_colorp *palette, int *num_palette) |
1014 | 0 | { |
1015 | 0 | png_debug1(1, "in %s retrieval function", "PLTE"); |
1016 | |
|
1017 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
1018 | 0 | (info_ptr->valid & PNG_INFO_PLTE) != 0 && palette != NULL) |
1019 | 0 | { |
1020 | 0 | *palette = info_ptr->palette; |
1021 | 0 | *num_palette = info_ptr->num_palette; |
1022 | 0 | png_debug1(3, "num_palette = %d", *num_palette); |
1023 | 0 | return (PNG_INFO_PLTE); |
1024 | 0 | } |
1025 | | |
1026 | 0 | return (0); |
1027 | 0 | } |
1028 | | |
1029 | | #ifdef PNG_sBIT_SUPPORTED |
1030 | | png_uint_32 PNGAPI |
1031 | | png_get_sBIT(png_const_structrp png_ptr, png_inforp info_ptr, |
1032 | | png_color_8p *sig_bit) |
1033 | 0 | { |
1034 | 0 | png_debug1(1, "in %s retrieval function", "sBIT"); |
1035 | |
|
1036 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
1037 | 0 | (info_ptr->valid & PNG_INFO_sBIT) != 0 && sig_bit != NULL) |
1038 | 0 | { |
1039 | 0 | *sig_bit = &(info_ptr->sig_bit); |
1040 | 0 | return (PNG_INFO_sBIT); |
1041 | 0 | } |
1042 | | |
1043 | 0 | return (0); |
1044 | 0 | } |
1045 | | #endif |
1046 | | |
1047 | | #ifdef PNG_TEXT_SUPPORTED |
1048 | | int PNGAPI |
1049 | | png_get_text(png_const_structrp png_ptr, png_inforp info_ptr, |
1050 | | png_textp *text_ptr, int *num_text) |
1051 | 0 | { |
1052 | 0 | if (png_ptr != NULL && info_ptr != NULL && info_ptr->num_text > 0) |
1053 | 0 | { |
1054 | 0 | png_debug1(1, "in 0x%lx retrieval function", |
1055 | 0 | (unsigned long)png_ptr->chunk_name); |
1056 | |
|
1057 | 0 | if (text_ptr != NULL) |
1058 | 0 | *text_ptr = info_ptr->text; |
1059 | |
|
1060 | 0 | if (num_text != NULL) |
1061 | 0 | *num_text = info_ptr->num_text; |
1062 | |
|
1063 | 0 | return info_ptr->num_text; |
1064 | 0 | } |
1065 | | |
1066 | 0 | if (num_text != NULL) |
1067 | 0 | *num_text = 0; |
1068 | |
|
1069 | 0 | return(0); |
1070 | 0 | } |
1071 | | #endif |
1072 | | |
1073 | | #ifdef PNG_tIME_SUPPORTED |
1074 | | png_uint_32 PNGAPI |
1075 | | png_get_tIME(png_const_structrp png_ptr, png_inforp info_ptr, |
1076 | | png_timep *mod_time) |
1077 | 0 | { |
1078 | 0 | png_debug1(1, "in %s retrieval function", "tIME"); |
1079 | |
|
1080 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
1081 | 0 | (info_ptr->valid & PNG_INFO_tIME) != 0 && mod_time != NULL) |
1082 | 0 | { |
1083 | 0 | *mod_time = &(info_ptr->mod_time); |
1084 | 0 | return (PNG_INFO_tIME); |
1085 | 0 | } |
1086 | | |
1087 | 0 | return (0); |
1088 | 0 | } |
1089 | | #endif |
1090 | | |
1091 | | #ifdef PNG_tRNS_SUPPORTED |
1092 | | png_uint_32 PNGAPI |
1093 | | png_get_tRNS(png_const_structrp png_ptr, png_inforp info_ptr, |
1094 | | png_bytep *trans_alpha, int *num_trans, png_color_16p *trans_color) |
1095 | 0 | { |
1096 | 0 | png_uint_32 retval = 0; |
1097 | 0 | if (png_ptr != NULL && info_ptr != NULL && |
1098 | 0 | (info_ptr->valid & PNG_INFO_tRNS) != 0) |
1099 | 0 | { |
1100 | 0 | png_debug1(1, "in %s retrieval function", "tRNS"); |
1101 | |
|
1102 | 0 | if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE) |
1103 | 0 | { |
1104 | 0 | if (trans_alpha != NULL) |
1105 | 0 | { |
1106 | 0 | *trans_alpha = info_ptr->trans_alpha; |
1107 | 0 | retval |= PNG_INFO_tRNS; |
1108 | 0 | } |
1109 | |
|
1110 | 0 | if (trans_color != NULL) |
1111 | 0 | *trans_color = &(info_ptr->trans_color); |
1112 | 0 | } |
1113 | | |
1114 | 0 | else /* if (info_ptr->color_type != PNG_COLOR_TYPE_PALETTE) */ |
1115 | 0 | { |
1116 | 0 | if (trans_color != NULL) |
1117 | 0 | { |
1118 | 0 | *trans_color = &(info_ptr->trans_color); |
1119 | 0 | retval |= PNG_INFO_tRNS; |
1120 | 0 | } |
1121 | |
|
1122 | 0 | if (trans_alpha != NULL) |
1123 | 0 | *trans_alpha = NULL; |
1124 | 0 | } |
1125 | |
|
1126 | 0 | if (num_trans != NULL) |
1127 | 0 | { |
1128 | 0 | *num_trans = info_ptr->num_trans; |
1129 | 0 | retval |= PNG_INFO_tRNS; |
1130 | 0 | } |
1131 | 0 | } |
1132 | |
|
1133 | 0 | return (retval); |
1134 | 0 | } |
1135 | | #endif |
1136 | | |
1137 | | #ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED |
1138 | | int PNGAPI |
1139 | | png_get_unknown_chunks(png_const_structrp png_ptr, png_inforp info_ptr, |
1140 | | png_unknown_chunkpp unknowns) |
1141 | 0 | { |
1142 | 0 | if (png_ptr != NULL && info_ptr != NULL && unknowns != NULL) |
1143 | 0 | { |
1144 | 0 | *unknowns = info_ptr->unknown_chunks; |
1145 | 0 | return info_ptr->unknown_chunks_num; |
1146 | 0 | } |
1147 | | |
1148 | 0 | return (0); |
1149 | 0 | } |
1150 | | #endif |
1151 | | |
1152 | | #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED |
1153 | | png_byte PNGAPI |
1154 | | png_get_rgb_to_gray_status(png_const_structrp png_ptr) |
1155 | 0 | { |
1156 | 0 | return (png_byte)(png_ptr ? png_ptr->rgb_to_gray_status : 0); |
1157 | 0 | } |
1158 | | #endif |
1159 | | |
1160 | | #ifdef PNG_USER_CHUNKS_SUPPORTED |
1161 | | png_voidp PNGAPI |
1162 | | png_get_user_chunk_ptr(png_const_structrp png_ptr) |
1163 | 0 | { |
1164 | 0 | return (png_ptr ? png_ptr->user_chunk_ptr : NULL); |
1165 | 0 | } |
1166 | | #endif |
1167 | | |
1168 | | size_t PNGAPI |
1169 | | png_get_compression_buffer_size(png_const_structrp png_ptr) |
1170 | 0 | { |
1171 | 0 | if (png_ptr == NULL) |
1172 | 0 | return 0; |
1173 | | |
1174 | | #ifdef PNG_WRITE_SUPPORTED |
1175 | | if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0) |
1176 | | #endif |
1177 | 0 | { |
1178 | 0 | #ifdef PNG_SEQUENTIAL_READ_SUPPORTED |
1179 | 0 | return png_ptr->IDAT_read_size; |
1180 | | #else |
1181 | | return PNG_IDAT_READ_SIZE; |
1182 | | #endif |
1183 | 0 | } |
1184 | |
|
1185 | | #ifdef PNG_WRITE_SUPPORTED |
1186 | | else |
1187 | | return png_ptr->zbuffer_size; |
1188 | | #endif |
1189 | 0 | } |
1190 | | |
1191 | | #ifdef PNG_SET_USER_LIMITS_SUPPORTED |
1192 | | /* These functions were added to libpng 1.2.6 and were enabled |
1193 | | * by default in libpng-1.4.0 */ |
1194 | | png_uint_32 PNGAPI |
1195 | | png_get_user_width_max(png_const_structrp png_ptr) |
1196 | 0 | { |
1197 | 0 | return (png_ptr ? png_ptr->user_width_max : 0); |
1198 | 0 | } |
1199 | | |
1200 | | png_uint_32 PNGAPI |
1201 | | png_get_user_height_max(png_const_structrp png_ptr) |
1202 | 0 | { |
1203 | 0 | return (png_ptr ? png_ptr->user_height_max : 0); |
1204 | 0 | } |
1205 | | |
1206 | | /* This function was added to libpng 1.4.0 */ |
1207 | | png_uint_32 PNGAPI |
1208 | | png_get_chunk_cache_max(png_const_structrp png_ptr) |
1209 | 0 | { |
1210 | 0 | return (png_ptr ? png_ptr->user_chunk_cache_max : 0); |
1211 | 0 | } |
1212 | | |
1213 | | /* This function was added to libpng 1.4.1 */ |
1214 | | png_alloc_size_t PNGAPI |
1215 | | png_get_chunk_malloc_max(png_const_structrp png_ptr) |
1216 | 0 | { |
1217 | 0 | return (png_ptr ? png_ptr->user_chunk_malloc_max : 0); |
1218 | 0 | } |
1219 | | #endif /* SET_USER_LIMITS */ |
1220 | | |
1221 | | /* These functions were added to libpng 1.4.0 */ |
1222 | | #ifdef PNG_IO_STATE_SUPPORTED |
1223 | | png_uint_32 PNGAPI |
1224 | | png_get_io_state(png_const_structrp png_ptr) |
1225 | 0 | { |
1226 | 0 | return png_ptr->io_state; |
1227 | 0 | } |
1228 | | |
1229 | | png_uint_32 PNGAPI |
1230 | | png_get_io_chunk_type(png_const_structrp png_ptr) |
1231 | 0 | { |
1232 | 0 | return png_ptr->chunk_name; |
1233 | 0 | } |
1234 | | #endif /* IO_STATE */ |
1235 | | |
1236 | | #ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED |
1237 | | # ifdef PNG_GET_PALETTE_MAX_SUPPORTED |
1238 | | int PNGAPI |
1239 | | png_get_palette_max(png_const_structp png_ptr, png_const_infop info_ptr) |
1240 | 0 | { |
1241 | 0 | if (png_ptr != NULL && info_ptr != NULL) |
1242 | 0 | return png_ptr->num_palette_max; |
1243 | | |
1244 | 0 | return (-1); |
1245 | 0 | } |
1246 | | # endif |
1247 | | #endif |
1248 | | |
1249 | | #endif /* READ || WRITE */ |