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/pngconf.h

1001 lines
29 KiB
C
Raw Normal View History

1995-09-26 05:22:39 -05:00
1998-02-07 10:20:57 -06:00
/* pngconf.h - machine configurable file for libpng
1998-01-01 07:13:13 -06:00
*
2000-05-01 09:31:54 -05:00
* libpng 1.0.6i - May 1, 2000
1998-01-01 07:13:13 -06:00
* For conditions of distribution and use, see copyright notice in png.h
* Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
* Copyright (c) 1996, 1997 Andreas Dilger
2000-02-04 23:40:16 -06:00
* Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
1998-01-01 07:13:13 -06:00
*/
1995-09-26 05:22:39 -05:00
/* Any machine specific code is near the front of this file, so if you
1998-01-01 07:13:13 -06:00
* are configuring libpng for a machine, you may want to read the section
* starting here down to where it starts to typedef png_color, png_text,
* and png_info.
*/
1995-09-26 05:22:39 -05:00
#ifndef PNGCONF_H
#define PNGCONF_H
2000-05-01 09:31:54 -05:00
/* The following support, added at version 1.0.6, will be turned on by
* default in version 2.0.0.
* They have been turned off here in case you need binary compatibility
* with old applications that require the length of png_struct and
* png_info to remain at the old length.
*/
#ifdef PNG_LEGACY_SUPPORTED
#define PNG_NO_FREE_ME
#define PNG_NO_READ_UNKNOWN_CHUNKS
#define PNG_NO_WRITE_UNKNOWN_CHUNKS
#define PNG_NO_READ_USER_CHUNKS
#define PNG_NO_READ_iCCP
#define PNG_NO_WRITE_iCCP
#define PNG_NO_READ_sCAL
#define PNG_NO_WRITE_sCAL
#define PNG_NO_READ_sPLT
#define PNG_NO_WRITE_sPLT
#define PNG_NO_INFO_IMAGE
#define PNG_NO_READ_RGB_TO_GRAY
#define PNG_NO_READ_USER_TRANSFORM
#define PNG_NO_WRITE_USER_TRANSFORM
#define PNG_NO_USER_MEM
#define PNG_NO_READ_EMPTY_PLTE
#endif
#ifndef PNG_NO_FREE_ME
#define PNG_FREE_ME_SUPPORTED
#endif
1997-01-17 01:34:35 -06:00
/* This is the size of the compression buffer, and thus the size of
1998-01-01 07:13:13 -06:00
* an IDAT chunk. Make this whatever size you feel is best for your
* machine. One of these will be allocated per png_struct. When this
* is full, it writes the data to the disk, and does some other
1998-01-03 22:40:55 -06:00
* calculations. Making this an extremely small size will slow
1998-01-01 07:13:13 -06:00
* the library down, but you may want to experiment to determine
* where it becomes significant, if you are concerned with memory
* usage. Note that zlib allocates at least 32Kb also. For readers,
* this describes the size of the buffer available to read the data in.
1998-01-30 21:45:12 -06:00
* Unless this gets smaller than the size of a row (compressed),
1998-01-01 07:13:13 -06:00
* it should not make much difference how big this is.
*/
1995-09-26 05:22:39 -05:00
1998-01-03 22:40:55 -06:00
#ifndef PNG_ZBUF_SIZE
1996-01-26 01:38:47 -06:00
#define PNG_ZBUF_SIZE 8192
1998-01-03 22:40:55 -06:00
#endif
1995-09-26 05:22:39 -05:00
1997-05-16 02:46:07 -05:00
/* If you are running on a machine where you cannot allocate more
1998-01-01 07:13:13 -06:00
* than 64K of memory at once, uncomment this. While libpng will not
* normally need that much memory in a chunk (unless you load up a very
* large file), zlib needs to know how big of a chunk it can use, and
* libpng thus makes sure to check any memory allocation to verify it
* will fit into memory.
1997-05-16 02:46:07 -05:00
#define PNG_MAX_MALLOC_64K
1998-01-01 07:13:13 -06:00
*/
1997-05-16 02:46:07 -05:00
#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
#define PNG_MAX_MALLOC_64K
1995-09-26 05:22:39 -05:00
#endif
1998-05-21 09:27:50 -05:00
/* This protects us against compilers that run on a windowing system
1998-01-01 07:13:13 -06:00
* and thus don't have or would rather us not use the stdio types:
* stdin, stdout, and stderr. The only one currently used is stderr
1998-12-29 11:47:59 -06:00
* in png_error() and png_warning(). #defining PNG_NO_CONSOLE_IO will
* prevent these from being compiled and used. #defining PNG_NO_STDIO
* will also prevent these, plus will prevent the entire set of stdio
* macros and functions (FILE *, printf, etc.) from being compiled and used,
1999-09-17 12:27:26 -05:00
* unless (PNG_DEBUG > 0) has been #defined.
1998-12-29 11:47:59 -06:00
*
* #define PNG_NO_CONSOLE_IO
1998-01-01 07:13:13 -06:00
* #define PNG_NO_STDIO
*/
1995-12-19 03:22:19 -06:00
1998-12-29 11:47:59 -06:00
# ifdef PNG_NO_STDIO
# ifndef PNG_NO_CONSOLE_IO
# define PNG_NO_CONSOLE_IO
# endif
1999-09-17 12:27:26 -05:00
# ifdef PNG_DEBUG
# if (PNG_DEBUG > 0)
# include <stdio.h>
# endif
# endif
1998-12-29 11:47:59 -06:00
# else
# include <stdio.h>
# endif
1997-01-17 01:34:35 -06:00
/* This macro protects us against machines that don't have function
1998-01-01 07:13:13 -06:00
* prototypes (ie K&R style headers). If your compiler does not handle
* function prototypes, define this macro and use the included ansi2knr.
* I've always been able to use _NO_PROTO as the indicator, but you may
* need to drag the empty declaration out in front of here, or change the
* ifdef to suit your own needs.
*/
1995-09-26 05:22:39 -05:00
#ifndef PNGARG
1997-05-16 02:46:07 -05:00
#ifdef OF /* zlib prototype munger */
1995-09-26 05:22:39 -05:00
#define PNGARG(arglist) OF(arglist)
#else
#ifdef _NO_PROTO
1995-12-19 03:22:19 -06:00
#define PNGARG(arglist) ()
1995-09-26 05:22:39 -05:00
#else
#define PNGARG(arglist) arglist
#endif /* _NO_PROTO */
#endif /* OF */
#endif /* PNGARG */
1998-01-01 07:13:13 -06:00
/* Try to determine if we are compiling on a Mac. Note that testing for
* just __MWERKS__ is not good enough, because the Codewarrior is now used
* on non-Mac platforms.
*/
1998-01-30 21:45:12 -06:00
#ifndef MACOS
1998-01-01 07:13:13 -06:00
#if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \
1998-01-30 21:45:12 -06:00
defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
1997-01-17 01:34:35 -06:00
#define MACOS
#endif
1998-01-30 21:45:12 -06:00
#endif
1997-01-17 01:34:35 -06:00
1995-09-26 05:22:39 -05:00
/* enough people need this for various reasons to include it here */
1996-06-05 15:50:50 -05:00
#if !defined(MACOS) && !defined(RISCOS)
1995-09-26 05:22:39 -05:00
#include <sys/types.h>
#endif
1997-01-17 01:34:35 -06:00
2000-02-04 23:40:16 -06:00
#ifndef PNG_SETJMP_NOT_SUPPORTED
# define PNG_SETJMP_SUPPORTED
#endif
#ifdef PNG_SETJMP_SUPPORTED
1997-05-16 02:46:07 -05:00
/* This is an attempt to force a single setjmp behaviour on Linux. If
1998-01-01 07:13:13 -06:00
* the X config stuff didn't define _BSD_SOURCE we wouldn't need this.
*/
2000-02-04 23:40:16 -06:00
# ifdef __linux__
# ifdef _BSD_SOURCE
# define _PNG_SAVE_BSD_SOURCE
# undef _BSD_SOURCE
# endif
# ifdef _SETJMP_H
__png.h__ already includes setjmp.h
__dont__ include it again
# endif
1998-01-01 07:13:13 -06:00
#endif /* __linux__ */
1995-09-26 05:22:39 -05:00
/* include setjmp.h for error handling */
#include <setjmp.h>
2000-02-04 23:40:16 -06:00
# ifdef __linux__
# ifdef _PNG_SAVE_BSD_SOURCE
# define _BSD_SOURCE
# undef _PNG_SAVE_BSD_SOURCE
# endif
# endif /* __linux__ */
#endif /* PNG_SETJMP_SUPPORTED */
1997-01-17 01:34:35 -06:00
1995-09-26 05:22:39 -05:00
#ifdef BSD
#include <strings.h>
#else
#include <string.h>
#endif
1997-05-16 02:46:07 -05:00
/* Other defines for things like memory and the like can go here. */
1995-09-26 05:22:39 -05:00
#ifdef PNG_INTERNAL
#include <stdlib.h>
1997-05-16 02:46:07 -05:00
/* The functions exported by PNG_EXTERN are PNG_INTERNAL functions, which
* aren't usually used outside the library (as far as I know), so it is
* debatable if they should be exported at all. In the future, when it is
* possible to have run-time registry of chunk-handling functions, some of
* these will be made available again.
#define PNG_EXTERN extern
*/
#define PNG_EXTERN
1995-09-26 05:22:39 -05:00
1997-01-17 01:34:35 -06:00
/* Other defines specific to compilers can go here. Try to keep
1998-01-01 07:13:13 -06:00
* them inside an appropriate ifdef/endif pair for portability.
*/
1995-09-26 05:22:39 -05:00
2000-02-04 23:40:16 -06:00
#if !defined(PNG_NO_FLOATING_POINT_SUPPORTED)
1997-05-16 02:46:07 -05:00
#if defined(MACOS)
/* We need to check that <math.h> hasn't already been included earlier
1998-01-01 07:13:13 -06:00
* as it seems it doesn't agree with <fp.h>, yet we should really use
* <fp.h> if possible.
*/
1997-05-16 02:46:07 -05:00
#if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
1997-01-17 01:34:35 -06:00
#include <fp.h>
1997-05-16 02:46:07 -05:00
#endif
1997-01-17 01:34:35 -06:00
#else
#include <math.h>
#endif
2000-02-04 23:40:16 -06:00
#endif
1997-01-17 01:34:35 -06:00
1998-01-30 21:45:12 -06:00
/* Codewarrior on NT has linking problems without this. */
1999-09-17 12:27:26 -05:00
#if (defined(__MWERKS__) && defined(WIN32)) || defined(__STDC__)
1998-01-30 21:45:12 -06:00
#define PNG_ALWAYS_EXTERN
#endif
1997-01-17 01:34:35 -06:00
/* For some reason, Borland C++ defines memcmp, etc. in mem.h, not
1998-01-01 07:13:13 -06:00
* stdlib.h like it should (I think). Or perhaps this is a C++
* "feature"?
*/
1995-09-26 05:22:39 -05:00
#ifdef __TURBOC__
#include <mem.h>
#include "alloc.h"
#endif
#ifdef _MSC_VER
#include <malloc.h>
#endif
1997-01-17 01:34:35 -06:00
/* This controls how fine the dithering gets. As this allocates
1998-01-01 07:13:13 -06:00
* a largish chunk of memory (32K), those who are not as concerned
* with dithering quality can decrease some or all of these.
*/
1998-01-03 22:40:55 -06:00
#ifndef PNG_DITHER_RED_BITS
1995-09-26 05:22:39 -05:00
#define PNG_DITHER_RED_BITS 5
1998-01-03 22:40:55 -06:00
#endif
#ifndef PNG_DITHER_GREEN_BITS
1995-09-26 05:22:39 -05:00
#define PNG_DITHER_GREEN_BITS 5
1998-01-03 22:40:55 -06:00
#endif
#ifndef PNG_DITHER_BLUE_BITS
1995-09-26 05:22:39 -05:00
#define PNG_DITHER_BLUE_BITS 5
1998-01-03 22:40:55 -06:00
#endif
1995-09-26 05:22:39 -05:00
1997-01-17 01:34:35 -06:00
/* This controls how fine the gamma correction becomes when you
1998-01-01 07:13:13 -06:00
* are only interested in 8 bits anyway. Increasing this value
* results in more memory being used, and more pow() functions
* being called to fill in the gamma tables. Don't set this value
* less then 8, and even that may not work (I haven't tested it).
*/
1995-09-26 05:22:39 -05:00
1998-01-16 22:06:18 -06:00
#ifndef PNG_MAX_GAMMA_8
1995-09-26 05:22:39 -05:00
#define PNG_MAX_GAMMA_8 11
1998-01-16 22:06:18 -06:00
#endif
1995-09-26 05:22:39 -05:00
1997-05-16 02:46:07 -05:00
/* This controls how much a difference in gamma we can tolerate before
1998-01-01 07:13:13 -06:00
* we actually start doing gamma conversion.
*/
1998-01-16 22:06:18 -06:00
#ifndef PNG_GAMMA_THRESHOLD
1997-05-16 02:46:07 -05:00
#define PNG_GAMMA_THRESHOLD 0.05
1998-01-16 22:06:18 -06:00
#endif
1997-05-16 02:46:07 -05:00
1995-09-26 05:22:39 -05:00
#endif /* PNG_INTERNAL */
1997-01-17 01:34:35 -06:00
/* The following uses const char * instead of char * for error
1998-01-01 07:13:13 -06:00
* and warning message functions, so some compilers won't complain.
1998-01-16 22:06:18 -06:00
* If you do not want to use const, define PNG_NO_CONST here.
1998-01-01 07:13:13 -06:00
*/
1997-01-17 01:34:35 -06:00
1998-01-16 22:06:18 -06:00
#ifndef PNG_NO_CONST
1995-12-19 03:22:19 -06:00
# define PNG_CONST const
#else
# define PNG_CONST
#endif
1997-01-17 01:34:35 -06:00
/* The following defines give you the ability to remove code from the
1998-01-01 07:13:13 -06:00
* library that you will not be using. I wish I could figure out how to
* automate this, but I can't do that without making it seriously hard
* on the users. So if you are not using an ability, change the #define
* to and #undef, and that part of the library will not be compiled. If
* your linker can't find a function, you may want to make sure the
* ability is defined here. Some of these depend upon some others being
* defined. I haven't figured out all the interactions here, so you may
* have to experiment awhile to get everything to compile. If you are
* creating or using a shared library, you probably shouldn't touch this,
* as it will affect the size of the structures, and this will cause bad
* things to happen if the library and/or application ever change.
*/
1995-09-26 05:22:39 -05:00
2000-04-09 19:06:13 -05:00
/* Any features you will not be using can be undef'ed here */
1998-01-01 07:13:13 -06:00
1998-03-07 06:06:55 -06:00
/* GR-P, 0.96a: Set "*TRANSFORMS_SUPPORTED as default but allow user
1998-05-09 10:02:29 -05:00
to turn it off with "*TRANSFORMS_NOT_SUPPORTED" or *PNG_NO_*_TRANSFORMS
on the compile line, then pick and choose which ones to define without
having to edit this file. It is safe to use the *TRANSFORMS_NOT_SUPPORTED
if you only want to have a png-compliant reader/writer but don't need
1998-03-07 06:06:55 -06:00
any of the extra transformations. This saves about 80 kbytes in a
1998-05-09 10:02:29 -05:00
typical installation of the library. (PNG_NO_* form added in version
1.0.1c, for consistency)
1998-01-30 21:45:12 -06:00
*/
1998-01-01 07:13:13 -06:00
2000-05-01 09:31:54 -05:00
#ifndef PNG_NO_FLOATING_POINT_SUPPORTED
2000-04-09 19:06:13 -05:00
#define PNG_FLOATING_POINT_SUPPORTED
#endif
1998-03-07 06:06:55 -06:00
2000-05-01 09:31:54 -05:00
/* Ignore attempt to turn off both floating and fixed point support */
#ifndef PNG_FLOATING_POINT_SUPPORTED
2000-04-09 19:06:13 -05:00
#define PNG_FIXED_POINT_SUPPORTED
#endif
1999-12-10 09:43:02 -06:00
1998-05-09 10:02:29 -05:00
#if !defined(PNG_READ_TRANSFORMS_NOT_SUPPORTED) && \
!defined(PNG_NO_READ_TRANSFORMS)
1998-03-07 06:06:55 -06:00
#define PNG_READ_TRANSFORMS_SUPPORTED
1998-01-01 07:13:13 -06:00
#endif
1998-05-09 10:02:29 -05:00
#if !defined(PNG_WRITE_TRANSFORMS_NOT_SUPPORTED) && \
!defined(PNG_NO_WRITE_TRANSFORMS)
1998-03-07 06:06:55 -06:00
#define PNG_WRITE_TRANSFORMS_SUPPORTED
1998-01-01 07:13:13 -06:00
#endif
1998-03-07 06:06:55 -06:00
#ifdef PNG_READ_TRANSFORMS_SUPPORTED
1998-05-09 10:02:29 -05:00
#ifndef PNG_NO_READ_EXPAND
1995-09-26 05:22:39 -05:00
#define PNG_READ_EXPAND_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_SHIFT
1995-09-26 05:22:39 -05:00
#define PNG_READ_SHIFT_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_PACK
1995-09-26 05:22:39 -05:00
#define PNG_READ_PACK_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_BGR
1995-09-26 05:22:39 -05:00
#define PNG_READ_BGR_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_SWAP
1995-09-26 05:22:39 -05:00
#define PNG_READ_SWAP_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_PACKSWAP
1997-05-16 02:46:07 -05:00
#define PNG_READ_PACKSWAP_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_INVERT
1995-09-26 05:22:39 -05:00
#define PNG_READ_INVERT_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_DITHER
1995-09-26 05:22:39 -05:00
#define PNG_READ_DITHER_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_BACKGROUND
1995-09-26 05:22:39 -05:00
#define PNG_READ_BACKGROUND_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_16_TO_8
1995-09-26 05:22:39 -05:00
#define PNG_READ_16_TO_8_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_FILLER
1995-09-26 05:22:39 -05:00
#define PNG_READ_FILLER_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_GAMMA
1995-09-26 05:22:39 -05:00
#define PNG_READ_GAMMA_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_GRAY_TO_RGB
1995-09-26 05:22:39 -05:00
#define PNG_READ_GRAY_TO_RGB_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_SWAP_ALPHA
1997-05-16 02:46:07 -05:00
#define PNG_READ_SWAP_ALPHA_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_INVERT_ALPHA
1998-01-16 22:06:18 -06:00
#define PNG_READ_INVERT_ALPHA_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_STRIP_ALPHA
1997-05-16 02:46:07 -05:00
#define PNG_READ_STRIP_ALPHA_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_USER_TRANSFORM
1998-03-07 06:06:55 -06:00
#define PNG_READ_USER_TRANSFORM_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_RGB_TO_GRAY
1998-03-07 06:06:55 -06:00
#define PNG_READ_RGB_TO_GRAY_SUPPORTED
1998-05-21 09:27:50 -05:00
#endif
1998-03-07 06:06:55 -06:00
#endif /* PNG_READ_TRANSFORMS_SUPPORTED */
1998-01-30 21:45:12 -06:00
1998-05-09 10:02:29 -05:00
#if !defined(PNG_NO_PROGRESSIVE_READ) && \
!defined(PNG_PROGRESSIVE_READ_NOT_SUPPORTED) /* if you don't do progressive */
1998-03-07 06:06:55 -06:00
#define PNG_PROGRESSIVE_READ_SUPPORTED /* reading. This is not talking */
#endif /* about interlacing capability! You'll */
/* still have interlacing unless you change the following line: */
#define PNG_READ_INTERLACING_SUPPORTED /* required for PNG-compliant decoders */
1998-05-09 10:02:29 -05:00
#ifndef PNG_NO_READ_COMPOSITED_NODIV
1998-03-07 06:06:55 -06:00
#define PNG_READ_COMPOSITE_NODIV_SUPPORTED /* well tested on Intel and SGI */
1998-05-09 10:02:29 -05:00
#endif
1995-09-26 05:22:39 -05:00
1999-09-17 12:27:26 -05:00
#ifndef PNG_NO_READ_EMPTY_PLTE
#define PNG_READ_EMPTY_PLTE_SUPPORTED /* useful for MNG applications */
#endif
1998-03-07 06:06:55 -06:00
#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
1998-05-09 10:02:29 -05:00
#ifndef PNG_NO_WRITE_SHIFT
1995-09-26 05:22:39 -05:00
#define PNG_WRITE_SHIFT_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_PACK
1995-09-26 05:22:39 -05:00
#define PNG_WRITE_PACK_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_BGR
1995-09-26 05:22:39 -05:00
#define PNG_WRITE_BGR_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_SWAP
1995-09-26 05:22:39 -05:00
#define PNG_WRITE_SWAP_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_PACKSWAP
1997-05-16 02:46:07 -05:00
#define PNG_WRITE_PACKSWAP_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_INVERT
1995-09-26 05:22:39 -05:00
#define PNG_WRITE_INVERT_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_FILLER
1997-05-16 02:46:07 -05:00
#define PNG_WRITE_FILLER_SUPPORTED /* This is the same as WRITE_STRIP_ALPHA */
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_SWAP_ALPHA
1997-05-16 02:46:07 -05:00
#define PNG_WRITE_SWAP_ALPHA_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_INVERT_ALPHA
1998-01-16 22:06:18 -06:00
#define PNG_WRITE_INVERT_ALPHA_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_WRITE_USER_TRANSFORM
1998-03-07 06:06:55 -06:00
#define PNG_WRITE_USER_TRANSFORM_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-03-07 06:06:55 -06:00
#endif /* PNG_WRITE_TRANSFORMS_SUPPORTED */
1998-01-01 07:13:13 -06:00
2000-05-01 09:31:54 -05:00
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
#ifndef PNG_NO_USER_TRANSFORM_PTR
#define PNG_USER_TRANSFORM_PTR_SUPPORTED
#endif
#endif
1998-03-07 06:06:55 -06:00
#define PNG_WRITE_INTERLACING_SUPPORTED /* not required for PNG-compliant
encoders, but can cause trouble
1998-01-30 21:45:12 -06:00
if left undefined */
2000-04-09 19:06:13 -05:00
#if !defined(PNG_NO_WRITE_WEIGHTED_FILTER) && \
defined(PNG_FLOATING_POINT_SUPPORTED)
1998-05-09 10:02:29 -05:00
#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
#endif
#ifndef PNG_NO_WRITE_FLUSH
#define PNG_WRITE_FLUSH_SUPPORTED
#endif
1999-09-17 12:27:26 -05:00
#ifndef PNG_NO_WRITE_EMPTY_PLTE
#define PNG_WRITE_EMPTY_PLTE_SUPPORTED /* useful for MNG applications */
#endif
1998-05-09 10:02:29 -05:00
#ifndef PNG_NO_STDIO
1998-01-16 22:06:18 -06:00
#define PNG_TIME_RFC1123_SUPPORTED
1998-01-03 22:40:55 -06:00
#endif
1997-05-16 02:46:07 -05:00
1998-01-30 21:45:12 -06:00
/* This adds extra functions in pngget.c for accessing data from the
* info pointer (added in version 0.99)
* png_get_image_width()
* png_get_image_height()
* png_get_bit_depth()
* png_get_color_type()
* png_get_compression_type()
* png_get_filter_type()
* png_get_interlace_type()
* png_get_pixel_aspect_ratio()
* png_get_pixels_per_meter()
* png_get_x_offset_pixels()
* png_get_y_offset_pixels()
* png_get_x_offset_microns()
* png_get_y_offset_microns()
*/
1998-05-09 10:02:29 -05:00
#ifndef PNG_NO_EASY_ACCESS
1998-01-30 21:45:12 -06:00
#define PNG_EASY_ACCESS_SUPPORTED
#endif
2000-02-18 13:48:52 -06:00
#if defined(PNG_USE_PNGVCRD) || defined(PNG_USE_PNGGCCRD) && \
!defined(PNG_NO_ASSEMBLER_CODE)
1999-09-17 12:27:26 -05:00
#define PNG_ASSEMBLER_CODE_SUPPORTED
#endif
1999-11-27 10:22:33 -06:00
/* Do not use global arrays (helps with building DLL's)
* They are no longer used in libpng itself, since version 1.0.5c,
* but might be required for some pre-1.0.5c applications.
*/
1999-11-28 23:32:18 -06:00
#ifdef PNG_NO_GLOBAL_ARRAYS
2000-03-21 05:13:06 -06:00
# define PNG_USE_LOCAL_ARRAYS
1999-11-28 23:32:18 -06:00
#else
2000-03-21 05:13:06 -06:00
# if defined(__GNUC__) && defined(WIN32)
# define PNG_NO_GLOBAL_ARRAYS
# define PNG_USE_LOCAL_ARRAYS
# else
# define PNG_USE_GLOBAL_ARRAYS
# endif
1999-11-27 10:22:33 -06:00
#endif
1998-01-16 22:06:18 -06:00
/* These are currently experimental features, define them if you want */
/* very little testing */
/*
1998-02-28 07:00:24 -06:00
#define PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
2000-05-01 09:31:54 -05:00
#ifndef PNG_NO_USER_MEM
1998-06-06 15:31:35 -05:00
#define PNG_USER_MEM_SUPPORTED
2000-05-01 09:31:54 -05:00
#endif
1998-01-16 22:06:18 -06:00
*/
1997-05-16 02:46:07 -05:00
/* This is only for PowerPC big-endian and 680x0 systems */
1998-01-16 22:06:18 -06:00
/* some testing */
/*
#define PNG_READ_BIG_ENDIAN_SUPPORTED
*/
1995-09-26 05:22:39 -05:00
1997-01-17 01:34:35 -06:00
/* These functions are turned off by default, as they will be phased out. */
1998-01-16 22:06:18 -06:00
/*
#define PNG_USELESS_TESTS_SUPPORTED
#define PNG_CORRECT_PALETTE_SUPPORTED
*/
1997-01-17 01:34:35 -06:00
1997-05-16 02:46:07 -05:00
/* Any chunks you are not interested in, you can undef here. The
* ones that allocate memory may be expecially important (hIST,
* tEXt, zTXt, tRNS, pCAL). Others will just save time and make png_info
1998-01-30 21:45:12 -06:00
* a bit smaller.
1997-05-16 02:46:07 -05:00
*/
1995-09-26 05:22:39 -05:00
1998-05-09 10:02:29 -05:00
#if !defined(PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED) && \
!defined(PNG_NO_READ_ANCILLARY_CHUNKS)
1998-01-30 21:45:12 -06:00
#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
#endif
1998-05-09 10:02:29 -05:00
#if !defined(PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED) && \
!defined(PNG_NO_WRITE_ANCILLARY_CHUNKS)
1998-01-30 21:45:12 -06:00
#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
#endif
#ifdef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
2000-02-04 23:40:16 -06:00
#ifdef PNG_NO_READ_TEXT
# define PNG_NO_READ_iTXt
# define PNG_NO_READ_tEXt
# define PNG_NO_READ_zTXt
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_bKGD
2000-02-04 23:40:16 -06:00
# define PNG_READ_bKGD_SUPPORTED
# define PNG_bKGD_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_cHRM
2000-02-04 23:40:16 -06:00
# define PNG_READ_cHRM_SUPPORTED
# define PNG_cHRM_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_gAMA
2000-02-04 23:40:16 -06:00
# define PNG_READ_gAMA_SUPPORTED
# define PNG_gAMA_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_hIST
2000-02-04 23:40:16 -06:00
# define PNG_READ_hIST_SUPPORTED
# define PNG_hIST_SUPPORTED
1999-12-10 09:43:02 -06:00
#endif
#ifndef PNG_NO_READ_iCCP
2000-02-04 23:40:16 -06:00
# define PNG_READ_iCCP_SUPPORTED
# define PNG_iCCP_SUPPORTED
1999-12-10 09:43:02 -06:00
#endif
#ifndef PNG_NO_READ_iTXt
2000-02-04 23:40:16 -06:00
# define PNG_READ_iTXt_SUPPORTED
# define PNG_iTXt_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_oFFs
2000-02-04 23:40:16 -06:00
# define PNG_READ_oFFs_SUPPORTED
# define PNG_oFFs_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_pCAL
2000-02-04 23:40:16 -06:00
# define PNG_READ_pCAL_SUPPORTED
# define PNG_pCAL_SUPPORTED
1999-12-10 09:43:02 -06:00
#endif
#ifndef PNG_NO_READ_sCAL
2000-02-04 23:40:16 -06:00
# define PNG_READ_sCAL_SUPPORTED
# define PNG_sCAL_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_pHYs
2000-02-04 23:40:16 -06:00
# define PNG_READ_pHYs_SUPPORTED
# define PNG_pHYs_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
#ifndef PNG_NO_READ_sBIT
2000-02-04 23:40:16 -06:00
# define PNG_READ_sBIT_SUPPORTED
# define PNG_sBIT_SUPPORTED
1999-12-10 09:43:02 -06:00
#endif
#ifndef PNG_NO_READ_sPLT
2000-02-04 23:40:16 -06:00
# define PNG_READ_sPLT_SUPPORTED
# define PNG_sPLT_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_sRGB
2000-02-04 23:40:16 -06:00
# define PNG_READ_sRGB_SUPPORTED
# define PNG_sRGB_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_tEXt
2000-02-04 23:40:16 -06:00
# define PNG_READ_tEXt_SUPPORTED
# define PNG_tEXt_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_tIME
2000-02-04 23:40:16 -06:00
# define PNG_READ_tIME_SUPPORTED
# define PNG_tIME_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_tRNS
2000-02-04 23:40:16 -06:00
# define PNG_READ_tRNS_SUPPORTED
# define PNG_tRNS_SUPPORTED
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_zTXt
2000-02-04 23:40:16 -06:00
# define PNG_READ_zTXt_SUPPORTED
# define PNG_zTXt_SUPPORTED
#endif
2000-05-01 09:31:54 -05:00
#ifndef PNG_NO_READ_UNKNOWN_CHUNKS
# define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
# define PNG_UNKNOWN_CHUNKS_SUPPORTED
# ifndef PNG_NO_HANDLE_AS_UNKNOWN
# define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
# endif
#endif
#if !defined (PNG_NO_READ_USER_CHUNKS) && \
defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
2000-02-04 23:40:16 -06:00
# define PNG_READ_USER_CHUNKS_SUPPORTED
# define PNG_USER_CHUNKS_SUPPORTED
# ifdef PNG_NO_READ_UNKNOWN_CHUNKS
# undef PNG_NO_READ_UNKNOWN_CHUNKS
# endif
# ifdef PNG_NO_HANDLE_AS_UNKNOWN
# undef PNG_NO_HANDLE_AS_UNKNOWN
# endif
1999-12-10 09:43:02 -06:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_READ_OPT_PLTE
2000-02-04 23:40:16 -06:00
# define PNG_READ_OPT_PLTE_SUPPORTED /* only affects support of the */
#endif /* optional PLTE chunk in RGB and RGBA images */
1999-12-10 09:43:02 -06:00
#if defined(PNG_READ_iTXt_SUPPORTED) || defined(PNG_READ_tEXt_SUPPORTED) || \
defined(PNG_READ_zTXt_SUPPORTED)
2000-02-04 23:40:16 -06:00
# define PNG_READ_TEXT_SUPPORTED
# define PNG_TEXT_SUPPORTED
1999-12-10 09:43:02 -06:00
#endif
1998-01-30 21:45:12 -06:00
#endif /* PNG_READ_ANCILLARY_CHUNKS_SUPPORTED */
1995-09-26 05:22:39 -05:00
1998-01-30 21:45:12 -06:00
#ifdef PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
2000-02-04 23:40:16 -06:00
#ifdef PNG_NO_WRITE_TEXT
# define PNG_NO_WRITE_iTXt
# define PNG_NO_WRITE_tEXt
# define PNG_NO_WRITE_zTXt
1999-12-10 09:43:02 -06:00
#endif
2000-02-04 23:40:16 -06:00
#ifndef PNG_NO_WRITE_bKGD
# define PNG_WRITE_bKGD_SUPPORTED
# ifndef PNG_bKGD_SUPPORTED
# define PNG_bKGD_SUPPORTED
# endif
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_WRITE_cHRM
2000-02-04 23:40:16 -06:00
# define PNG_WRITE_cHRM_SUPPORTED
# ifndef PNG_cHRM_SUPPORTED
# define PNG_cHRM_SUPPORTED
# endif
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_WRITE_gAMA
2000-02-04 23:40:16 -06:00
# define PNG_WRITE_gAMA_SUPPORTED
# ifndef PNG_gAMA_SUPPORTED
# define PNG_gAMA_SUPPORTED
# endif
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_WRITE_hIST
2000-02-04 23:40:16 -06:00
# define PNG_WRITE_hIST_SUPPORTED
# ifndef PNG_hIST_SUPPORTED
# define PNG_hIST_SUPPORTED
# endif
1999-12-10 09:43:02 -06:00
#endif
#ifndef PNG_NO_WRITE_iCCP
2000-02-04 23:40:16 -06:00
# define PNG_WRITE_iCCP_SUPPORTED
# ifndef PNG_iCCP_SUPPORTED
# define PNG_iCCP_SUPPORTED
# endif
1999-12-10 09:43:02 -06:00
#endif
#ifndef PNG_NO_WRITE_iTXt
2000-02-04 23:40:16 -06:00
# define PNG_WRITE_iTXt_SUPPORTED
# ifndef PNG_iTXt_SUPPORTED
# define PNG_iTXt_SUPPORTED
# endif
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_WRITE_oFFs
2000-02-04 23:40:16 -06:00
# define PNG_WRITE_oFFs_SUPPORTED
# ifndef PNG_oFFs_SUPPORTED
# define PNG_oFFs_SUPPORTED
# endif
1998-05-09 10:02:29 -05:00
#endif
1998-05-21 09:27:50 -05:00
#ifndef PNG_NO_WRITE_pCAL
2000-02-04 23:40:16 -06:00
# define PNG_WRITE_pCAL_SUPPORTED
# ifndef PNG_pCAL_SUPPORTED
# define PNG_pCAL_SUPPORTED