This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/pngget.c

948 lines
24 KiB
C
Raw Normal View History

1997-05-16 07:46:07 +00:00
/* pngget.c - retrieval of values from info struct
1998-01-01 13:13:13 +00:00
*
* Last changed in libpng 1.2.53 [February 26, 2015]
* Copyright (c) 1998-2002,2004,2006-2015 Glenn Randers-Pehrson
2000-06-04 19:29:29 +00:00
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
*
* This code is released under the libpng license.
* For conditions of distribution and use, see the disclaimer
* and license in png.h
*
1998-01-01 13:13:13 +00:00
*/
1997-05-16 07:46:07 +00:00
#define PNG_INTERNAL
2009-11-25 22:04:13 +00:00
#define PNG_NO_PEDANTIC_WARNINGS
1997-05-16 07:46:07 +00:00
#include "png.h"
2006-02-21 04:09:05 +00:00
#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_valid(png_structp png_ptr, png_infop info_ptr, png_uint_32 flag)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1997-05-16 07:46:07 +00:00
return(info_ptr->valid & flag);
2009-05-20 17:43:52 +00:00
1997-05-16 07:46:07 +00:00
else
return(0);
}
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_rowbytes(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1997-05-16 07:46:07 +00:00
return(info_ptr->rowbytes);
2009-05-20 17:43:52 +00:00
1997-05-16 07:46:07 +00:00
else
return(0);
}
#ifdef PNG_INFO_IMAGE_SUPPORTED
2000-05-06 19:09:57 +00:00
png_bytepp PNGAPI
2000-02-18 19:48:52 +00:00
png_get_rows(png_structp png_ptr, png_infop info_ptr)
{
if (png_ptr != NULL && info_ptr != NULL)
return(info_ptr->row_pointers);
2009-05-20 17:43:52 +00:00
2000-02-18 19:48:52 +00:00
else
return(0);
}
#endif
1998-01-31 03:45:12 +00:00
#ifdef PNG_EASY_ACCESS_SUPPORTED
2009-05-20 17:43:52 +00:00
/* Easy access to info, added in libpng-0.99 */
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-01-31 03:45:12 +00:00
png_get_image_width(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1998-01-31 03:45:12 +00:00
return info_ptr->width;
2009-05-20 17:43:52 +00:00
1998-01-31 03:45:12 +00:00
return (0);
}
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-01-31 03:45:12 +00:00
png_get_image_height(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1998-01-31 03:45:12 +00:00
return info_ptr->height;
2009-05-20 17:43:52 +00:00
1998-01-31 03:45:12 +00:00
return (0);
}
2000-05-06 19:09:57 +00:00
png_byte PNGAPI
1998-01-31 03:45:12 +00:00
png_get_bit_depth(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1998-01-31 03:45:12 +00:00
return info_ptr->bit_depth;
2009-05-20 17:43:52 +00:00
1998-01-31 03:45:12 +00:00
return (0);
}
2000-05-06 19:09:57 +00:00
png_byte PNGAPI
1998-01-31 03:45:12 +00:00
png_get_color_type(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1998-01-31 03:45:12 +00:00
return info_ptr->color_type;
2009-05-20 17:43:52 +00:00
1998-01-31 03:45:12 +00:00
return (0);
}
2000-05-06 19:09:57 +00:00
png_byte PNGAPI
1998-01-31 03:45:12 +00:00
png_get_filter_type(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1998-01-31 03:45:12 +00:00
return info_ptr->filter_type;
2009-05-20 17:43:52 +00:00
1998-01-31 03:45:12 +00:00
return (0);
}
2000-05-06 19:09:57 +00:00
png_byte PNGAPI
1998-01-31 03:45:12 +00:00
png_get_interlace_type(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1998-01-31 03:45:12 +00:00
return info_ptr->interlace_type;
2009-05-20 17:43:52 +00:00
1998-01-31 03:45:12 +00:00
return (0);
}
2000-05-06 19:09:57 +00:00
png_byte PNGAPI
1998-01-31 03:45:12 +00:00
png_get_compression_type(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1998-01-31 03:45:12 +00:00
return info_ptr->compression_type;
2009-05-20 17:43:52 +00:00
1998-01-31 03:45:12 +00:00
return (0);
}
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-02-28 13:00:24 +00:00
png_get_x_pixels_per_meter(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
#ifdef PNG_pHYs_SUPPORTED
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_pHYs)
1998-02-28 13:00:24 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_x_pixels_per_meter");
2009-05-20 17:43:52 +00:00
2008-07-10 14:10:58 +00:00
if (info_ptr->phys_unit_type != PNG_RESOLUTION_METER)
1998-02-28 13:00:24 +00:00
return (0);
2009-05-20 17:43:52 +00:00
else
return (info_ptr->x_pixels_per_unit);
1998-02-28 13:00:24 +00:00
}
2000-05-29 13:58:03 +00:00
#else
return (0);
1998-02-28 13:00:24 +00:00
#endif
return (0);
}
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-02-28 13:00:24 +00:00
png_get_y_pixels_per_meter(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
#ifdef PNG_pHYs_SUPPORTED
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_pHYs)
1998-02-28 13:00:24 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_y_pixels_per_meter");
2009-05-20 17:43:52 +00:00
2008-07-10 14:10:58 +00:00
if (info_ptr->phys_unit_type != PNG_RESOLUTION_METER)
1998-02-28 13:00:24 +00:00
return (0);
2009-05-20 17:43:52 +00:00
else
return (info_ptr->y_pixels_per_unit);
1998-02-28 13:00:24 +00:00
}
2000-05-29 13:58:03 +00:00
#else
return (0);
1998-02-28 13:00:24 +00:00
#endif
return (0);
}
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-01-31 03:45:12 +00:00
png_get_pixels_per_meter(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
#ifdef PNG_pHYs_SUPPORTED
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_pHYs)
1998-01-31 03:45:12 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_pixels_per_meter");
2009-05-20 17:43:52 +00:00
2008-07-10 14:10:58 +00:00
if (info_ptr->phys_unit_type != PNG_RESOLUTION_METER ||
1998-02-28 13:00:24 +00:00
info_ptr->x_pixels_per_unit != info_ptr->y_pixels_per_unit)
1998-01-31 03:45:12 +00:00
return (0);
2009-05-20 17:43:52 +00:00
else
return (info_ptr->x_pixels_per_unit);
1998-01-31 03:45:12 +00:00
}
2000-05-29 13:58:03 +00:00
#else
return (0);
1998-01-31 03:45:12 +00:00
#endif
return (0);
}
1999-12-10 15:43:02 +00:00
#ifdef PNG_FLOATING_POINT_SUPPORTED
2000-05-06 19:09:57 +00:00
float PNGAPI
1998-01-31 03:45:12 +00:00
png_get_pixel_aspect_ratio(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
#ifdef PNG_pHYs_SUPPORTED
2009-05-20 17:43:52 +00:00
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_pHYs)
1998-01-31 03:45:12 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_aspect_ratio");
1998-01-31 03:45:12 +00:00
if (info_ptr->x_pixels_per_unit == 0)
1998-02-07 16:20:57 +00:00
return ((float)0.0);
1998-01-31 03:45:12 +00:00
else
2000-05-29 13:58:03 +00:00
return ((float)((float)info_ptr->y_pixels_per_unit
/(float)info_ptr->x_pixels_per_unit));
1998-01-31 03:45:12 +00:00
}
2000-05-29 13:58:03 +00:00
#else
2009-05-20 17:43:52 +00:00
return (0.0);
1998-01-31 03:45:12 +00:00
#endif
2000-05-29 13:58:03 +00:00
return ((float)0.0);
1998-01-31 03:45:12 +00:00
}
1999-12-10 15:43:02 +00:00
#endif
1998-01-31 03:45:12 +00:00
2000-05-29 13:58:03 +00:00
png_int_32 PNGAPI
1998-01-31 03:45:12 +00:00
png_get_x_offset_microns(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
#ifdef PNG_oFFs_SUPPORTED
2009-05-20 17:43:52 +00:00
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_oFFs)
1998-01-31 03:45:12 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_x_offset_microns");
2009-05-20 17:43:52 +00:00
2008-07-10 14:10:58 +00:00
if (info_ptr->offset_unit_type != PNG_OFFSET_MICROMETER)
1998-01-31 03:45:12 +00:00
return (0);
2009-05-20 17:43:52 +00:00
else
return (info_ptr->x_offset);
1998-01-31 03:45:12 +00:00
}
2000-05-29 13:58:03 +00:00
#else
2009-05-20 17:43:52 +00:00
return (0);
1998-01-31 03:45:12 +00:00
#endif
return (0);
}
2000-05-29 13:58:03 +00:00
png_int_32 PNGAPI
1998-01-31 03:45:12 +00:00
png_get_y_offset_microns(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
2009-05-20 17:43:52 +00:00
#ifdef PNG_oFFs_SUPPORTED
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_oFFs)
1998-01-31 03:45:12 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_y_offset_microns");
2009-05-20 17:43:52 +00:00
2008-07-10 14:10:58 +00:00
if (info_ptr->offset_unit_type != PNG_OFFSET_MICROMETER)
1998-01-31 03:45:12 +00:00
return (0);
2009-05-20 17:43:52 +00:00
else
return (info_ptr->y_offset);
1998-01-31 03:45:12 +00:00
}
2000-05-29 13:58:03 +00:00
#else
return (0);
1998-01-31 03:45:12 +00:00
#endif
return (0);
}
2000-05-29 13:58:03 +00:00
png_int_32 PNGAPI
1998-01-31 03:45:12 +00:00
png_get_x_offset_pixels(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
2009-05-20 17:43:52 +00:00
#ifdef PNG_oFFs_SUPPORTED
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_oFFs)
1998-01-31 03:45:12 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_x_offset_microns");
2009-05-20 17:43:52 +00:00
2008-07-10 14:10:58 +00:00
if (info_ptr->offset_unit_type != PNG_OFFSET_PIXEL)
1998-01-31 03:45:12 +00:00
return (0);
2009-05-20 17:43:52 +00:00
else
return (info_ptr->x_offset);
1998-01-31 03:45:12 +00:00
}
2000-05-29 13:58:03 +00:00
#else
return (0);
1998-01-31 03:45:12 +00:00
#endif
return (0);
}
2000-05-29 13:58:03 +00:00
png_int_32 PNGAPI
1998-01-31 03:45:12 +00:00
png_get_y_offset_pixels(png_structp png_ptr, png_infop info_ptr)
{
2000-05-29 13:58:03 +00:00
if (png_ptr != NULL && info_ptr != NULL)
2009-05-20 17:43:52 +00:00
#ifdef PNG_oFFs_SUPPORTED
2000-05-29 13:58:03 +00:00
if (info_ptr->valid & PNG_INFO_oFFs)
1998-01-31 03:45:12 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "png_get_y_offset_microns");
2009-05-20 17:43:52 +00:00
2008-07-10 14:10:58 +00:00
if (info_ptr->offset_unit_type != PNG_OFFSET_PIXEL)
1998-01-31 03:45:12 +00:00
return (0);
2009-05-20 17:43:52 +00:00
else
return (info_ptr->y_offset);
1998-01-31 03:45:12 +00:00
}
2000-05-29 13:58:03 +00:00
#else
return (0);
1998-01-31 03:45:12 +00:00
#endif
return (0);
}
1999-12-10 15:43:02 +00:00
#if defined(PNG_INCH_CONVERSIONS) && defined(PNG_FLOATING_POINT_SUPPORTED)
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-02-28 13:00:24 +00:00
png_get_pixels_per_inch(png_structp png_ptr, png_infop info_ptr)
{
return ((png_uint_32)((float)png_get_pixels_per_meter(png_ptr, info_ptr)
2000-05-29 13:58:03 +00:00
*.0254 +.5));
1998-02-28 13:00:24 +00:00
}
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-02-28 13:00:24 +00:00
png_get_x_pixels_per_inch(png_structp png_ptr, png_infop info_ptr)
{
return ((png_uint_32)((float)png_get_x_pixels_per_meter(png_ptr, info_ptr)
2000-05-29 13:58:03 +00:00
*.0254 +.5));
1998-02-28 13:00:24 +00:00
}
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-02-28 13:00:24 +00:00
png_get_y_pixels_per_inch(png_structp png_ptr, png_infop info_ptr)
{
return ((png_uint_32)((float)png_get_y_pixels_per_meter(png_ptr, info_ptr)
2000-05-29 13:58:03 +00:00
*.0254 +.5));
1998-02-28 13:00:24 +00:00
}
2000-05-06 19:09:57 +00:00
float PNGAPI
1998-02-28 13:00:24 +00:00
png_get_x_offset_inches(png_structp png_ptr, png_infop info_ptr)
{
return ((float)png_get_x_offset_microns(png_ptr, info_ptr)
2000-02-18 19:48:52 +00:00
*.00003937);
1998-02-28 13:00:24 +00:00
}
2000-05-06 19:09:57 +00:00
float PNGAPI
1998-02-28 13:00:24 +00:00
png_get_y_offset_inches(png_structp png_ptr, png_infop info_ptr)
{
return ((float)png_get_y_offset_microns(png_ptr, info_ptr)
2000-05-29 13:58:03 +00:00
*.00003937);
1998-02-28 13:00:24 +00:00
}
#ifdef PNG_pHYs_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-02-28 13:00:24 +00:00
png_get_pHYs_dpi(png_structp png_ptr, png_infop info_ptr,
png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type)
{
png_uint_32 retval = 0;
2000-02-05 05:40:16 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
1998-02-28 13:00:24 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "pHYs");
1998-02-28 13:00:24 +00:00
if (res_x != NULL)
{
*res_x = info_ptr->x_pixels_per_unit;
retval |= PNG_INFO_pHYs;
}
if (res_y != NULL)
{
*res_y = info_ptr->y_pixels_per_unit;
retval |= PNG_INFO_pHYs;
}
if (unit_type != NULL)
{
*unit_type = (int)info_ptr->phys_unit_type;
retval |= PNG_INFO_pHYs;
2008-07-10 14:10:58 +00:00
if (*unit_type == 1)
1998-02-28 13:00:24 +00:00
{
2000-02-18 19:48:52 +00:00
if (res_x != NULL) *res_x = (png_uint_32)(*res_x * .0254 + .50);
if (res_y != NULL) *res_y = (png_uint_32)(*res_y * .0254 + .50);
1998-02-28 13:00:24 +00:00
}
}
}
return (retval);
}
2001-05-07 19:52:45 +00:00
#endif /* PNG_pHYs_SUPPORTED */
2000-02-05 05:40:16 +00:00
#endif /* PNG_INCH_CONVERSIONS && PNG_FLOATING_POINT_SUPPORTED */
1998-02-28 13:00:24 +00:00
/* png_get_channels really belongs in here, too, but it's been around longer */
1998-06-06 20:31:35 +00:00
1998-02-28 13:00:24 +00:00
#endif /* PNG_EASY_ACCESS_SUPPORTED */
2000-05-06 19:09:57 +00:00
png_byte PNGAPI
1997-05-16 07:46:07 +00:00
png_get_channels(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1997-05-16 07:46:07 +00:00
return(info_ptr->channels);
else
1998-02-07 16:20:57 +00:00
return (0);
1997-05-16 07:46:07 +00:00
}
2000-05-06 19:09:57 +00:00
png_bytep PNGAPI
1997-05-16 07:46:07 +00:00
png_get_signature(png_structp png_ptr, png_infop info_ptr)
{
1998-02-09 02:56:40 +00:00
if (png_ptr != NULL && info_ptr != NULL)
1997-05-16 07:46:07 +00:00
return(info_ptr->signature);
else
1998-02-07 16:20:57 +00:00
return (NULL);
1997-05-16 07:46:07 +00:00
}
#ifdef PNG_bKGD_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_bKGD(png_structp png_ptr, png_infop info_ptr,
png_color_16p *background)
{
1998-02-28 13:00:24 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_bKGD)
&& background != NULL)
1997-05-16 07:46:07 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "bKGD");
1997-05-16 07:46:07 +00:00
*background = &(info_ptr->background);
return (PNG_INFO_bKGD);
}
return (0);
}
#endif
#ifdef PNG_cHRM_SUPPORTED
1999-12-10 15:43:02 +00:00
#ifdef PNG_FLOATING_POINT_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_cHRM(png_structp png_ptr, png_infop info_ptr,
double *white_x, double *white_y, double *red_x, double *red_y,
double *green_x, double *green_y, double *blue_x, double *blue_y)
{
1998-02-28 13:00:24 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_cHRM))
1997-05-16 07:46:07 +00:00
{
2008-12-01 14:58:57 +00:00
png_debug1(1, "in %s retrieval function", "cHRM");
1997-05-16 07:46:07 +00:00
if (white_x != NULL)
*white_x = (double)info_ptr->x_white;
if (white_y != NULL)
*white_y = (double)info_ptr->y_white;
if (red_x != NULL)
*red_x = (double)info_ptr->x_red;
if (red_y != NULL)
*red_y = (double)info_ptr->y_red;
if (green_x != NULL)
*green_x = (double)info_ptr->x_green;
if (green_y != NULL)
*green_y = (double)info_ptr->y_green;
if (blue_x != NULL)
*blue_x = (double)info_ptr->x_blue;
if (blue_y != NULL)
*blue_y = (double)info_ptr->y_blue;
return (PNG_INFO_cHRM);
}
return (0);
}
#endif
1999-12-10 15:43:02 +00:00
#ifdef PNG_FIXED_POINT_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1999-12-10 15:43:02 +00:00
png_get_cHRM_fixed(png_structp png_ptr, png_infop info_ptr,
2000-02-05 05:40:16 +00:00
png_fixed_point *white_x, png_fixed_point *white_y, png_fixed_point *red_x,
png_fixed_point *red_y, png_fixed_point *green_x, png_fixed_point *green_y,
png_fixed_point *blue_x, png_fixed_point *blue_y)
1999-12-10 15:43:02 +00:00
{
png_debug1(1, "in %s retrieval function", "cHRM");
1999-12-10 15:43:02 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_cHRM))
{
if (white_x != NULL)
*white_x = info_ptr->int_x_white;
if (white_y != NULL)
*white_y = info_ptr->int_y_white;
if (red_x != NULL)
*red_x = info_ptr->int_x_red;
if (red_y != NULL)
*red_y = info_ptr->int_y_red;
if (green_x != NULL)
*green_x = info_ptr->int_x_green;
if (green_y != NULL)
*green_y = info_ptr->int_y_green;
if (blue_x != NULL)
*blue_x = info_ptr->int_x_blue;
if (blue_y != NULL)
*blue_y = info_ptr->int_y_blue;
return (PNG_INFO_cHRM);
}
return (0);
}
#endif
#endif
1997-05-16 07:46:07 +00:00
#ifdef PNG_gAMA_SUPPORTED
1999-12-10 15:43:02 +00:00
#ifdef PNG_FLOATING_POINT_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_gAMA(png_structp png_ptr, png_infop info_ptr, double *file_gamma)
{
png_debug1(1, "in %s retrieval function", "gAMA");
1998-02-28 13:00:24 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_gAMA)
&& file_gamma != NULL)
1997-05-16 07:46:07 +00:00
{
*file_gamma = (double)info_ptr->gamma;
return (PNG_INFO_gAMA);
}
return (0);
}
#endif
2000-05-01 14:31:54 +00:00
#ifdef PNG_FIXED_POINT_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1999-12-10 15:43:02 +00:00
png_get_gAMA_fixed(png_structp png_ptr, png_infop info_ptr,
2000-02-05 05:40:16 +00:00
png_fixed_point *int_file_gamma)
1999-12-10 15:43:02 +00:00
{
png_debug1(1, "in %s retrieval function", "gAMA");
1999-12-10 15:43:02 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_gAMA)
&& int_file_gamma != NULL)
{
*int_file_gamma = info_ptr->int_gamma;
return (PNG_INFO_gAMA);
}
return (0);
}
#endif
2000-05-01 14:31:54 +00:00
#endif
1997-05-16 07:46:07 +00:00
#ifdef PNG_sRGB_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1998-01-17 04:06:18 +00:00
png_get_sRGB(png_structp png_ptr, png_infop info_ptr, int *file_srgb_intent)
1998-01-01 13:13:13 +00:00
{
png_debug1(1, "in %s retrieval function", "sRGB");
1998-02-28 13:00:24 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_sRGB)
&& file_srgb_intent != NULL)
1998-01-01 13:13:13 +00:00
{
1998-01-17 04:06:18 +00:00
*file_srgb_intent = (int)info_ptr->srgb_intent;
1998-01-01 13:13:13 +00:00
return (PNG_INFO_sRGB);
}
return (0);
}
#endif
#ifdef PNG_iCCP_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1999-12-10 15:43:02 +00:00
png_get_iCCP(png_structp png_ptr, png_infop info_ptr,
png_charpp name, int *compression_type,
2000-02-05 05:40:16 +00:00
png_charpp profile, png_uint_32 *proflen)
1999-12-10 15:43:02 +00:00
{
png_debug1(1, "in %s retrieval function", "iCCP");
1999-12-10 15:43:02 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_iCCP)
&& name != NULL && profile != NULL && proflen != NULL)
{
*name = info_ptr->iccp_name;
*profile = info_ptr->iccp_profile;
2009-05-20 17:43:52 +00:00
/* Compression_type is a dummy so the API won't have to change
* if we introduce multiple compression types later.
*/
1999-12-10 15:43:02 +00:00
*proflen = (int)info_ptr->iccp_proflen;
*compression_type = (int)info_ptr->iccp_compression;
return (PNG_INFO_iCCP);
}
return (0);
}
#endif
#ifdef PNG_sPLT_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
2000-02-18 19:48:52 +00:00
png_get_sPLT(png_structp png_ptr, png_infop info_ptr,
2000-03-21 11:13:06 +00:00
png_sPLT_tpp spalettes)
1999-12-10 15:43:02 +00:00
{
if (png_ptr != NULL && info_ptr != NULL && spalettes != NULL)
2007-05-28 13:45:13 +00:00
{
1999-12-10 15:43:02 +00:00
*spalettes = info_ptr->splt_palettes;
2007-05-28 13:45:13 +00:00
return ((png_uint_32)info_ptr->splt_palettes_num);
}
return (0);
1999-12-10 15:43:02 +00:00
}
#endif
#ifdef PNG_hIST_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p *hist)
{
png_debug1(1, "in %s retrieval function", "hIST");
1998-02-28 13:00:24 +00:00
if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_hIST)
&& hist != NULL)
1997-05-16 07:46:07 +00:00
{
*hist = info_ptr->hist;
return (PNG_INFO_hIST);
}
return (0);
}
#endif
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_IHDR(png_structp png_ptr, png_infop info_ptr,
png_uint_32 *width, png_uint_32 *height, int *bit_depth,
int *color_type, int *interlace_type, int *compression_type,
int *filter_type)
1997-05-16 07:46:07 +00:00
{
png_debug1(1, "in %s retrieval function", "IHDR");
2009-05-20 17:43:52 +00:00
if (png_ptr == NULL || info_ptr == NULL || width == NULL ||
height == NULL || bit_depth == NULL || color_type == NULL)
return (0);
2009-05-20 17:43:52 +00:00
*width = info_ptr->width;
*height = info_ptr->height;
*bit_depth = info_ptr->bit_depth;
*color_type = info_ptr->color_type;
2009-05-20 17:43:52 +00:00
if (compression_type != NULL)
*compression_type = info_ptr->compression_type;
1998-02-07 16:20:57 +00:00
if (filter_type != NULL)
*filter_type = info_ptr->filter_type;
2009-05-20 17:43:52 +00:00
if (interlace_type != NULL)
*interlace_type = info_ptr->interlace_type;
2009-05-20 17:43:52 +00:00
/* This is redundant if we can be sure that the info_ptr values were all
* assigned in png_set_IHDR(). We do the check anyhow in case an
* application has ignored our advice not to mess with the members
* of info_ptr directly.
*/
png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
info_ptr->compression_type, info_ptr->filter_type);
2009-05-20 17:43:52 +00:00
return (1);
1997-05-16 07:46:07 +00:00
}
#ifdef PNG_oFFs_SUPPORTED
2000-05-06 19:09:57 +00:00
png_uint_32 PNGAPI
1997-05-16 07:46:07 +00:00
png_get_oFFs(png_structp png_ptr, png_infop info_ptr,
1999-12-10 15:43:02 +00:00