pngconf.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:44k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /* pngconf.h - machine configurable file for libpng
  2.  *
  3.  * libpng version 1.2.35 - February 14, 2009
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2009 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  */
  9. /* Any machine specific code is near the front of this file, so if you
  10.  * are configuring libpng for a machine, you may want to read the section
  11.  * starting here down to where it starts to typedef png_color, png_text,
  12.  * and png_info.
  13.  */
  14. #ifndef PNGCONF_H
  15. #define PNGCONF_H
  16. #define PNG_1_2_X
  17. /* 
  18.  * PNG_USER_CONFIG has to be defined on the compiler command line. This
  19.  * includes the resource compiler for Windows DLL configurations.
  20.  */
  21. #ifdef PNG_USER_CONFIG
  22. #  ifndef PNG_USER_PRIVATEBUILD
  23. #    define PNG_USER_PRIVATEBUILD
  24. #  endif
  25. #include "pngusr.h"
  26. #endif
  27. /* PNG_CONFIGURE_LIBPNG is set by the "configure" script. */
  28. #ifdef PNG_CONFIGURE_LIBPNG
  29. #ifdef HAVE_CONFIG_H
  30. #include "config.h"
  31. #endif
  32. #endif
  33. /*
  34.  * Added at libpng-1.2.8
  35.  *  
  36.  * If you create a private DLL you need to define in "pngusr.h" the followings:
  37.  * #define PNG_USER_PRIVATEBUILD <Describes by whom and why this version of
  38.  *        the DLL was built>
  39.  *  e.g. #define PNG_USER_PRIVATEBUILD "Build by MyCompany for xyz reasons."
  40.  * #define PNG_USER_DLLFNAME_POSTFIX <two-letter postfix that serve to
  41.  *        distinguish your DLL from those of the official release. These
  42.  *        correspond to the trailing letters that come after the version
  43.  *        number and must match your private DLL name>
  44.  *  e.g. // private DLL "libpng13gx.dll"
  45.  *       #define PNG_USER_DLLFNAME_POSTFIX "gx"
  46.  * 
  47.  * The following macros are also at your disposal if you want to complete the 
  48.  * DLL VERSIONINFO structure.
  49.  * - PNG_USER_VERSIONINFO_COMMENTS
  50.  * - PNG_USER_VERSIONINFO_COMPANYNAME
  51.  * - PNG_USER_VERSIONINFO_LEGALTRADEMARKS
  52.  */
  53. #ifdef __STDC__
  54. #ifdef SPECIALBUILD
  55. #  pragma message("PNG_LIBPNG_SPECIALBUILD (and deprecated SPECIALBUILD)
  56.  are now LIBPNG reserved macros. Use PNG_USER_PRIVATEBUILD instead.")
  57. #endif
  58. #ifdef PRIVATEBUILD
  59. # pragma message("PRIVATEBUILD is deprecated.
  60.  Use PNG_USER_PRIVATEBUILD instead.")
  61. # define PNG_USER_PRIVATEBUILD PRIVATEBUILD
  62. #endif
  63. #endif /* __STDC__ */
  64. #ifndef PNG_VERSION_INFO_ONLY
  65. /* End of material added to libpng-1.2.8 */
  66. /* Added at libpng-1.2.19, removed at libpng-1.2.20 because it caused trouble
  67.    Restored at libpng-1.2.21 */
  68. #if !defined(PNG_NO_WARN_UNINITIALIZED_ROW) && 
  69.     !defined(PNG_WARN_UNINITIALIZED_ROW)
  70. #  define PNG_WARN_UNINITIALIZED_ROW 1
  71. #endif
  72. /* End of material added at libpng-1.2.19/1.2.21 */
  73. /* This is the size of the compression buffer, and thus the size of
  74.  * an IDAT chunk.  Make this whatever size you feel is best for your
  75.  * machine.  One of these will be allocated per png_struct.  When this
  76.  * is full, it writes the data to the disk, and does some other
  77.  * calculations.  Making this an extremely small size will slow
  78.  * the library down, but you may want to experiment to determine
  79.  * where it becomes significant, if you are concerned with memory
  80.  * usage.  Note that zlib allocates at least 32Kb also.  For readers,
  81.  * this describes the size of the buffer available to read the data in.
  82.  * Unless this gets smaller than the size of a row (compressed),
  83.  * it should not make much difference how big this is.
  84.  */
  85. #ifndef PNG_ZBUF_SIZE
  86. #  define PNG_ZBUF_SIZE 8192
  87. #endif
  88. /* Enable if you want a write-only libpng */
  89. #ifndef PNG_NO_READ_SUPPORTED
  90. #  define PNG_READ_SUPPORTED
  91. #endif
  92. /* Enable if you want a read-only libpng */
  93. #ifndef PNG_NO_WRITE_SUPPORTED
  94. #  define PNG_WRITE_SUPPORTED
  95. #endif
  96. /* Enabled by default in 1.2.0.  You can disable this if you don't need to
  97.    support PNGs that are embedded in MNG datastreams */
  98. #if !defined(PNG_1_0_X) && !defined(PNG_NO_MNG_FEATURES)
  99. #  ifndef PNG_MNG_FEATURES_SUPPORTED
  100. #    define PNG_MNG_FEATURES_SUPPORTED
  101. #  endif
  102. #endif
  103. #ifndef PNG_NO_FLOATING_POINT_SUPPORTED
  104. #  ifndef PNG_FLOATING_POINT_SUPPORTED
  105. #    define PNG_FLOATING_POINT_SUPPORTED
  106. #  endif
  107. #endif
  108. /* If you are running on a machine where you cannot allocate more
  109.  * than 64K of memory at once, uncomment this.  While libpng will not
  110.  * normally need that much memory in a chunk (unless you load up a very
  111.  * large file), zlib needs to know how big of a chunk it can use, and
  112.  * libpng thus makes sure to check any memory allocation to verify it
  113.  * will fit into memory.
  114. #define PNG_MAX_MALLOC_64K
  115.  */
  116. #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
  117. #  define PNG_MAX_MALLOC_64K
  118. #endif
  119. /* Special munging to support doing things the 'cygwin' way:
  120.  * 'Normal' png-on-win32 defines/defaults:
  121.  *   PNG_BUILD_DLL -- building dll
  122.  *   PNG_USE_DLL   -- building an application, linking to dll
  123.  *   (no define)   -- building static library, or building an
  124.  *                    application and linking to the static lib
  125.  * 'Cygwin' defines/defaults:
  126.  *   PNG_BUILD_DLL -- (ignored) building the dll
  127.  *   (no define)   -- (ignored) building an application, linking to the dll
  128.  *   PNG_STATIC    -- (ignored) building the static lib, or building an 
  129.  *                    application that links to the static lib.
  130.  *   ALL_STATIC    -- (ignored) building various static libs, or building an 
  131.  *                    application that links to the static libs.
  132.  * Thus,
  133.  * a cygwin user should define either PNG_BUILD_DLL or PNG_STATIC, and
  134.  * this bit of #ifdefs will define the 'correct' config variables based on
  135.  * that. If a cygwin user *wants* to define 'PNG_USE_DLL' that's okay, but
  136.  * unnecessary.
  137.  *
  138.  * Also, the precedence order is:
  139.  *   ALL_STATIC (since we can't #undef something outside our namespace)
  140.  *   PNG_BUILD_DLL
  141.  *   PNG_STATIC
  142.  *   (nothing) == PNG_USE_DLL
  143.  * 
  144.  * CYGWIN (2002-01-20): The preceding is now obsolete. With the advent
  145.  *   of auto-import in binutils, we no longer need to worry about 
  146.  *   __declspec(dllexport) / __declspec(dllimport) and friends.  Therefore,
  147.  *   we don't need to worry about PNG_STATIC or ALL_STATIC when it comes
  148.  *   to __declspec() stuff.  However, we DO need to worry about 
  149.  *   PNG_BUILD_DLL and PNG_STATIC because those change some defaults
  150.  *   such as CONSOLE_IO and whether GLOBAL_ARRAYS are allowed.
  151.  */
  152. #if defined(__CYGWIN__)
  153. #  if defined(ALL_STATIC)
  154. #    if defined(PNG_BUILD_DLL)
  155. #      undef PNG_BUILD_DLL
  156. #    endif
  157. #    if defined(PNG_USE_DLL)
  158. #      undef PNG_USE_DLL
  159. #    endif
  160. #    if defined(PNG_DLL)
  161. #      undef PNG_DLL
  162. #    endif
  163. #    if !defined(PNG_STATIC)
  164. #      define PNG_STATIC
  165. #    endif
  166. #  else
  167. #    if defined (PNG_BUILD_DLL)
  168. #      if defined(PNG_STATIC)
  169. #        undef PNG_STATIC
  170. #      endif
  171. #      if defined(PNG_USE_DLL)
  172. #        undef PNG_USE_DLL
  173. #      endif
  174. #      if !defined(PNG_DLL)
  175. #        define PNG_DLL
  176. #      endif
  177. #    else
  178. #      if defined(PNG_STATIC)
  179. #        if defined(PNG_USE_DLL)
  180. #          undef PNG_USE_DLL
  181. #        endif
  182. #        if defined(PNG_DLL)
  183. #          undef PNG_DLL
  184. #        endif
  185. #      else
  186. #        if !defined(PNG_USE_DLL)
  187. #          define PNG_USE_DLL
  188. #        endif
  189. #        if !defined(PNG_DLL)
  190. #          define PNG_DLL
  191. #        endif
  192. #      endif  
  193. #    endif  
  194. #  endif
  195. #endif
  196. /* This protects us against compilers that run on a windowing system
  197.  * and thus don't have or would rather us not use the stdio types:
  198.  * stdin, stdout, and stderr.  The only one currently used is stderr
  199.  * in png_error() and png_warning().  #defining PNG_NO_CONSOLE_IO will
  200.  * prevent these from being compiled and used. #defining PNG_NO_STDIO
  201.  * will also prevent these, plus will prevent the entire set of stdio
  202.  * macros and functions (FILE *, printf, etc.) from being compiled and used,
  203.  * unless (PNG_DEBUG > 0) has been #defined.
  204.  *
  205.  * #define PNG_NO_CONSOLE_IO
  206.  * #define PNG_NO_STDIO
  207.  */
  208. #if defined(_WIN32_WCE)
  209. #  include <windows.h>
  210.    /* Console I/O functions are not supported on WindowsCE */
  211. #  define PNG_NO_CONSOLE_IO
  212.    /* abort() may not be supported on some/all Windows CE platforms */
  213. #  define PNG_ABORT() exit(-1)
  214. #  ifdef PNG_DEBUG
  215. #    undef PNG_DEBUG
  216. #  endif
  217. #endif
  218. #ifdef PNG_BUILD_DLL
  219. #  ifndef PNG_CONSOLE_IO_SUPPORTED
  220. #    ifndef PNG_NO_CONSOLE_IO
  221. #      define PNG_NO_CONSOLE_IO
  222. #    endif
  223. #  endif
  224. #endif
  225. #  ifdef PNG_NO_STDIO
  226. #    ifndef PNG_NO_CONSOLE_IO
  227. #      define PNG_NO_CONSOLE_IO
  228. #    endif
  229. #    ifdef PNG_DEBUG
  230. #      if (PNG_DEBUG > 0)
  231. #        include <stdio.h>
  232. #      endif
  233. #    endif
  234. #  else
  235. #    if !defined(_WIN32_WCE)
  236. /* "stdio.h" functions are not supported on WindowsCE */
  237. #      include <stdio.h>
  238. #    endif
  239. #  endif
  240. /* This macro protects us against machines that don't have function
  241.  * prototypes (ie K&R style headers).  If your compiler does not handle
  242.  * function prototypes, define this macro and use the included ansi2knr.
  243.  * I've always been able to use _NO_PROTO as the indicator, but you may
  244.  * need to drag the empty declaration out in front of here, or change the
  245.  * ifdef to suit your own needs.
  246.  */
  247. #ifndef PNGARG
  248. #ifdef OF /* zlib prototype munger */
  249. #  define PNGARG(arglist) OF(arglist)
  250. #else
  251. #ifdef _NO_PROTO
  252. #  define PNGARG(arglist) ()
  253. #  ifndef PNG_TYPECAST_NULL
  254. #     define PNG_TYPECAST_NULL
  255. #  endif
  256. #else
  257. #  define PNGARG(arglist) arglist
  258. #endif /* _NO_PROTO */
  259. #endif /* OF */
  260. #endif /* PNGARG */
  261. /* Try to determine if we are compiling on a Mac.  Note that testing for
  262.  * just __MWERKS__ is not good enough, because the Codewarrior is now used
  263.  * on non-Mac platforms.
  264.  */
  265. #ifndef MACOS
  266. #  if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || 
  267.       defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
  268. #    define MACOS
  269. #  endif
  270. #endif
  271. /* enough people need this for various reasons to include it here */
  272. #if !defined(MACOS) && !defined(RISCOS) && !defined(_WIN32_WCE)
  273. #  include <sys/types.h>
  274. #endif
  275. #if !defined(PNG_SETJMP_NOT_SUPPORTED) && !defined(PNG_NO_SETJMP_SUPPORTED)
  276. #  define PNG_SETJMP_SUPPORTED
  277. #endif
  278. #ifdef PNG_SETJMP_SUPPORTED
  279. /* This is an attempt to force a single setjmp behaviour on Linux.  If
  280.  * the X config stuff didn't define _BSD_SOURCE we wouldn't need this.
  281.  */
  282. #  ifdef __linux__
  283. #    ifdef _BSD_SOURCE
  284. #      define PNG_SAVE_BSD_SOURCE
  285. #      undef _BSD_SOURCE
  286. #    endif
  287. #    ifdef _SETJMP_H
  288.      /* If you encounter a compiler error here, see the explanation
  289.       * near the end of INSTALL.
  290.       */
  291.          __pngconf.h__ already includes setjmp.h;
  292.          __dont__ include it again.;
  293. #    endif
  294. #  endif /* __linux__ */
  295.    /* include setjmp.h for error handling */
  296. #  include <setjmp.h>
  297. #  ifdef __linux__
  298. #    ifdef PNG_SAVE_BSD_SOURCE
  299. #      ifndef _BSD_SOURCE
  300. #        define _BSD_SOURCE
  301. #      endif
  302. #      undef PNG_SAVE_BSD_SOURCE
  303. #    endif
  304. #  endif /* __linux__ */
  305. #endif /* PNG_SETJMP_SUPPORTED */
  306. #ifdef BSD
  307. #  include <strings.h>
  308. #else
  309. #  include <string.h>
  310. #endif
  311. /* Other defines for things like memory and the like can go here.  */
  312. #ifdef PNG_INTERNAL
  313. #include <stdlib.h>
  314. /* The functions exported by PNG_EXTERN are PNG_INTERNAL functions, which
  315.  * aren't usually used outside the library (as far as I know), so it is
  316.  * debatable if they should be exported at all.  In the future, when it is
  317.  * possible to have run-time registry of chunk-handling functions, some of
  318.  * these will be made available again.
  319. #define PNG_EXTERN extern
  320.  */
  321. #define PNG_EXTERN
  322. /* Other defines specific to compilers can go here.  Try to keep
  323.  * them inside an appropriate ifdef/endif pair for portability.
  324.  */
  325. #if defined(PNG_FLOATING_POINT_SUPPORTED)
  326. #  if defined(MACOS)
  327.      /* We need to check that <math.h> hasn't already been included earlier
  328.       * as it seems it doesn't agree with <fp.h>, yet we should really use
  329.       * <fp.h> if possible.
  330.       */
  331. #    if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
  332. #      include <fp.h>
  333. #    endif
  334. #  else
  335. #    include <math.h>
  336. #  endif
  337. #  if defined(_AMIGA) && defined(__SASC) && defined(_M68881)
  338.      /* Amiga SAS/C: We must include builtin FPU functions when compiling using
  339.       * MATH=68881
  340.       */
  341. #    include <m68881.h>
  342. #  endif
  343. #endif
  344. /* Codewarrior on NT has linking problems without this. */
  345. #if (defined(__MWERKS__) && defined(WIN32)) || defined(__STDC__)
  346. #  define PNG_ALWAYS_EXTERN
  347. #endif
  348. /* This provides the non-ANSI (far) memory allocation routines. */
  349. #if defined(__TURBOC__) && defined(__MSDOS__)
  350. #  include <mem.h>
  351. #  include <alloc.h>
  352. #endif
  353. /* I have no idea why is this necessary... */
  354. #if defined(_MSC_VER) && (defined(WIN32) || defined(_Windows) || 
  355.     defined(_WINDOWS) || defined(_WIN32) || defined(__WIN32__))
  356. #  include <malloc.h>
  357. #endif
  358. /* This controls how fine the dithering gets.  As this allocates
  359.  * a largish chunk of memory (32K), those who are not as concerned
  360.  * with dithering quality can decrease some or all of these.
  361.  */
  362. #ifndef PNG_DITHER_RED_BITS
  363. #  define PNG_DITHER_RED_BITS 5
  364. #endif
  365. #ifndef PNG_DITHER_GREEN_BITS
  366. #  define PNG_DITHER_GREEN_BITS 5
  367. #endif
  368. #ifndef PNG_DITHER_BLUE_BITS
  369. #  define PNG_DITHER_BLUE_BITS 5
  370. #endif
  371. /* This controls how fine the gamma correction becomes when you
  372.  * are only interested in 8 bits anyway.  Increasing this value
  373.  * results in more memory being used, and more pow() functions
  374.  * being called to fill in the gamma tables.  Don't set this value
  375.  * less then 8, and even that may not work (I haven't tested it).
  376.  */
  377. #ifndef PNG_MAX_GAMMA_8
  378. #  define PNG_MAX_GAMMA_8 11
  379. #endif
  380. /* This controls how much a difference in gamma we can tolerate before
  381.  * we actually start doing gamma conversion.
  382.  */
  383. #ifndef PNG_GAMMA_THRESHOLD
  384. #  define PNG_GAMMA_THRESHOLD 0.05
  385. #endif
  386. #endif /* PNG_INTERNAL */
  387. /* The following uses const char * instead of char * for error
  388.  * and warning message functions, so some compilers won't complain.
  389.  * If you do not want to use const, define PNG_NO_CONST here.
  390.  */
  391. #ifndef PNG_NO_CONST
  392. #  define PNG_CONST const
  393. #else
  394. #  define PNG_CONST
  395. #endif
  396. /* The following defines give you the ability to remove code from the
  397.  * library that you will not be using.  I wish I could figure out how to
  398.  * automate this, but I can't do that without making it seriously hard
  399.  * on the users.  So if you are not using an ability, change the #define
  400.  * to and #undef, and that part of the library will not be compiled.  If
  401.  * your linker can't find a function, you may want to make sure the
  402.  * ability is defined here.  Some of these depend upon some others being
  403.  * defined.  I haven't figured out all the interactions here, so you may
  404.  * have to experiment awhile to get everything to compile.  If you are
  405.  * creating or using a shared library, you probably shouldn't touch this,
  406.  * as it will affect the size of the structures, and this will cause bad
  407.  * things to happen if the library and/or application ever change.
  408.  */
  409. /* Any features you will not be using can be undef'ed here */
  410. /* GR-P, 0.96a: Set "*TRANSFORMS_SUPPORTED as default but allow user
  411.  * to turn it off with "*TRANSFORMS_NOT_SUPPORTED" or *PNG_NO_*_TRANSFORMS
  412.  * on the compile line, then pick and choose which ones to define without
  413.  * having to edit this file. It is safe to use the *TRANSFORMS_NOT_SUPPORTED
  414.  * if you only want to have a png-compliant reader/writer but don't need
  415.  * any of the extra transformations.  This saves about 80 kbytes in a
  416.  * typical installation of the library. (PNG_NO_* form added in version
  417.  * 1.0.1c, for consistency)
  418.  */
  419. /* The size of the png_text structure changed in libpng-1.0.6 when
  420.  * iTXt support was added.  iTXt support was turned off by default through
  421.  * libpng-1.2.x, to support old apps that malloc the png_text structure
  422.  * instead of calling png_set_text() and letting libpng malloc it.  It
  423.  * was turned on by default in libpng-1.3.0.
  424.  */
  425. #if defined(PNG_1_0_X) || defined (PNG_1_2_X)
  426. #  ifndef PNG_NO_iTXt_SUPPORTED
  427. #    define PNG_NO_iTXt_SUPPORTED
  428. #  endif
  429. #  ifndef PNG_NO_READ_iTXt
  430. #    define PNG_NO_READ_iTXt
  431. #  endif
  432. #  ifndef PNG_NO_WRITE_iTXt
  433. #    define PNG_NO_WRITE_iTXt
  434. #  endif
  435. #endif
  436. #if !defined(PNG_NO_iTXt_SUPPORTED)
  437. #  if !defined(PNG_READ_iTXt_SUPPORTED) && !defined(PNG_NO_READ_iTXt)
  438. #    define PNG_READ_iTXt
  439. #  endif
  440. #  if !defined(PNG_WRITE_iTXt_SUPPORTED) && !defined(PNG_NO_WRITE_iTXt)
  441. #    define PNG_WRITE_iTXt
  442. #  endif
  443. #endif
  444. /* The following support, added after version 1.0.0, can be turned off here en
  445.  * masse by defining PNG_LEGACY_SUPPORTED in case you need binary compatibility
  446.  * with old applications that require the length of png_struct and png_info
  447.  * to remain unchanged.
  448.  */
  449. #ifdef PNG_LEGACY_SUPPORTED
  450. #  define PNG_NO_FREE_ME
  451. #  define PNG_NO_READ_UNKNOWN_CHUNKS
  452. #  define PNG_NO_WRITE_UNKNOWN_CHUNKS
  453. #  define PNG_NO_READ_USER_CHUNKS
  454. #  define PNG_NO_READ_iCCP
  455. #  define PNG_NO_WRITE_iCCP
  456. #  define PNG_NO_READ_iTXt
  457. #  define PNG_NO_WRITE_iTXt
  458. #  define PNG_NO_READ_sCAL
  459. #  define PNG_NO_WRITE_sCAL
  460. #  define PNG_NO_READ_sPLT
  461. #  define PNG_NO_WRITE_sPLT
  462. #  define PNG_NO_INFO_IMAGE
  463. #  define PNG_NO_READ_RGB_TO_GRAY
  464. #  define PNG_NO_READ_USER_TRANSFORM
  465. #  define PNG_NO_WRITE_USER_TRANSFORM
  466. #  define PNG_NO_USER_MEM
  467. #  define PNG_NO_READ_EMPTY_PLTE
  468. #  define PNG_NO_MNG_FEATURES
  469. #  define PNG_NO_FIXED_POINT_SUPPORTED
  470. #endif
  471. /* Ignore attempt to turn off both floating and fixed point support */
  472. #if !defined(PNG_FLOATING_POINT_SUPPORTED) || 
  473.     !defined(PNG_NO_FIXED_POINT_SUPPORTED)
  474. #  define PNG_FIXED_POINT_SUPPORTED
  475. #endif
  476. #ifndef PNG_NO_FREE_ME
  477. #  define PNG_FREE_ME_SUPPORTED
  478. #endif
  479. #if defined(PNG_READ_SUPPORTED)
  480. #if !defined(PNG_READ_TRANSFORMS_NOT_SUPPORTED) && 
  481.       !defined(PNG_NO_READ_TRANSFORMS)
  482. #  define PNG_READ_TRANSFORMS_SUPPORTED
  483. #endif
  484. #ifdef PNG_READ_TRANSFORMS_SUPPORTED
  485. #  ifndef PNG_NO_READ_EXPAND
  486. #    define PNG_READ_EXPAND_SUPPORTED
  487. #  endif
  488. #  ifndef PNG_NO_READ_SHIFT
  489. #    define PNG_READ_SHIFT_SUPPORTED
  490. #  endif
  491. #  ifndef PNG_NO_READ_PACK
  492. #    define PNG_READ_PACK_SUPPORTED
  493. #  endif
  494. #  ifndef PNG_NO_READ_BGR
  495. #    define PNG_READ_BGR_SUPPORTED
  496. #  endif
  497. #  ifndef PNG_NO_READ_SWAP
  498. #    define PNG_READ_SWAP_SUPPORTED
  499. #  endif
  500. #  ifndef PNG_NO_READ_PACKSWAP
  501. #    define PNG_READ_PACKSWAP_SUPPORTED
  502. #  endif
  503. #  ifndef PNG_NO_READ_INVERT
  504. #    define PNG_READ_INVERT_SUPPORTED
  505. #  endif
  506. #  ifndef PNG_NO_READ_DITHER
  507. #    define PNG_READ_DITHER_SUPPORTED
  508. #  endif
  509. #  ifndef PNG_NO_READ_BACKGROUND
  510. #    define PNG_READ_BACKGROUND_SUPPORTED
  511. #  endif
  512. #  ifndef PNG_NO_READ_16_TO_8
  513. #    define PNG_READ_16_TO_8_SUPPORTED
  514. #  endif
  515. #  ifndef PNG_NO_READ_FILLER
  516. #    define PNG_READ_FILLER_SUPPORTED
  517. #  endif
  518. #  ifndef PNG_NO_READ_GAMMA
  519. #    define PNG_READ_GAMMA_SUPPORTED
  520. #  endif
  521. #  ifndef PNG_NO_READ_GRAY_TO_RGB
  522. #    define PNG_READ_GRAY_TO_RGB_SUPPORTED
  523. #  endif
  524. #  ifndef PNG_NO_READ_SWAP_ALPHA
  525. #    define PNG_READ_SWAP_ALPHA_SUPPORTED
  526. #  endif
  527. #  ifndef PNG_NO_READ_INVERT_ALPHA
  528. #    define PNG_READ_INVERT_ALPHA_SUPPORTED
  529. #  endif
  530. #  ifndef PNG_NO_READ_STRIP_ALPHA
  531. #    define PNG_READ_STRIP_ALPHA_SUPPORTED
  532. #  endif
  533. #  ifndef PNG_NO_READ_USER_TRANSFORM
  534. #    define PNG_READ_USER_TRANSFORM_SUPPORTED
  535. #  endif
  536. #  ifndef PNG_NO_READ_RGB_TO_GRAY
  537. #    define PNG_READ_RGB_TO_GRAY_SUPPORTED
  538. #  endif
  539. #endif /* PNG_READ_TRANSFORMS_SUPPORTED */
  540. #if !defined(PNG_NO_PROGRESSIVE_READ) && 
  541.  !defined(PNG_PROGRESSIVE_READ_SUPPORTED) /* if you don't do progressive   */
  542. #  define PNG_PROGRESSIVE_READ_SUPPORTED  /* reading.  This is not talking */
  543. #endif                            /* about interlacing capability!  You'll */
  544.            /* still have interlacing unless you change the following line: */
  545. #define PNG_READ_INTERLACING_SUPPORTED /* required in PNG-compliant decoders */
  546. #ifndef PNG_NO_READ_COMPOSITE_NODIV
  547. #  ifndef PNG_NO_READ_COMPOSITED_NODIV  /* libpng-1.0.x misspelling */
  548. #    define PNG_READ_COMPOSITE_NODIV_SUPPORTED  /* well tested on Intel, SGI */
  549. #  endif
  550. #endif
  551. #if defined(PNG_1_0_X) || defined (PNG_1_2_X)
  552. /* Deprecated, will be removed from version 2.0.0.
  553.    Use PNG_MNG_FEATURES_SUPPORTED instead. */
  554. #ifndef PNG_NO_READ_EMPTY_PLTE
  555. #  define PNG_READ_EMPTY_PLTE_SUPPORTED
  556. #endif
  557. #endif
  558. #endif /* PNG_READ_SUPPORTED */
  559. #if defined(PNG_WRITE_SUPPORTED)
  560. # if !defined(PNG_WRITE_TRANSFORMS_NOT_SUPPORTED) && 
  561.     !defined(PNG_NO_WRITE_TRANSFORMS)
  562. #  define PNG_WRITE_TRANSFORMS_SUPPORTED
  563. #endif
  564. #ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
  565. #  ifndef PNG_NO_WRITE_SHIFT
  566. #    define PNG_WRITE_SHIFT_SUPPORTED
  567. #  endif
  568. #  ifndef PNG_NO_WRITE_PACK
  569. #    define PNG_WRITE_PACK_SUPPORTED
  570. #  endif
  571. #  ifndef PNG_NO_WRITE_BGR
  572. #    define PNG_WRITE_BGR_SUPPORTED
  573. #  endif
  574. #  ifndef PNG_NO_WRITE_SWAP
  575. #    define PNG_WRITE_SWAP_SUPPORTED
  576. #  endif
  577. #  ifndef PNG_NO_WRITE_PACKSWAP
  578. #    define PNG_WRITE_PACKSWAP_SUPPORTED
  579. #  endif
  580. #  ifndef PNG_NO_WRITE_INVERT
  581. #    define PNG_WRITE_INVERT_SUPPORTED
  582. #  endif
  583. #  ifndef PNG_NO_WRITE_FILLER
  584. #    define PNG_WRITE_FILLER_SUPPORTED   /* same as WRITE_STRIP_ALPHA */
  585. #  endif
  586. #  ifndef PNG_NO_WRITE_SWAP_ALPHA
  587. #    define PNG_WRITE_SWAP_ALPHA_SUPPORTED
  588. #  endif
  589. #  ifndef PNG_NO_WRITE_INVERT_ALPHA
  590. #    define PNG_WRITE_INVERT_ALPHA_SUPPORTED
  591. #  endif
  592. #  ifndef PNG_NO_WRITE_USER_TRANSFORM
  593. #    define PNG_WRITE_USER_TRANSFORM_SUPPORTED
  594. #  endif
  595. #endif /* PNG_WRITE_TRANSFORMS_SUPPORTED */
  596. #if !defined(PNG_NO_WRITE_INTERLACING_SUPPORTED) && 
  597.     !defined(PNG_WRITE_INTERLACING_SUPPORTED)
  598. #define PNG_WRITE_INTERLACING_SUPPORTED  /* not required for PNG-compliant
  599.                                             encoders, but can cause trouble
  600.                                             if left undefined */
  601. #endif
  602. #if !defined(PNG_NO_WRITE_WEIGHTED_FILTER) && 
  603.     !defined(PNG_WRITE_WEIGHTED_FILTER) && 
  604.      defined(PNG_FLOATING_POINT_SUPPORTED)
  605. #  define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
  606. #endif
  607. #ifndef PNG_NO_WRITE_FLUSH
  608. #  define PNG_WRITE_FLUSH_SUPPORTED
  609. #endif
  610. #if defined(PNG_1_0_X) || defined (PNG_1_2_X)
  611. /* Deprecated, see PNG_MNG_FEATURES_SUPPORTED, above */
  612. #ifndef PNG_NO_WRITE_EMPTY_PLTE
  613. #  define PNG_WRITE_EMPTY_PLTE_SUPPORTED
  614. #endif
  615. #endif
  616. #endif /* PNG_WRITE_SUPPORTED */
  617. #ifndef PNG_1_0_X
  618. #  ifndef PNG_NO_ERROR_NUMBERS
  619. #    define PNG_ERROR_NUMBERS_SUPPORTED
  620. #  endif
  621. #endif /* PNG_1_0_X */
  622. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || 
  623.     defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
  624. #  ifndef PNG_NO_USER_TRANSFORM_PTR
  625. #    define PNG_USER_TRANSFORM_PTR_SUPPORTED
  626. #  endif
  627. #endif
  628. #ifndef PNG_NO_STDIO
  629. #  define PNG_TIME_RFC1123_SUPPORTED
  630. #endif
  631. /* This adds extra functions in pngget.c for accessing data from the
  632.  * info pointer (added in version 0.99)
  633.  * png_get_image_width()
  634.  * png_get_image_height()
  635.  * png_get_bit_depth()
  636.  * png_get_color_type()
  637.  * png_get_compression_type()
  638.  * png_get_filter_type()
  639.  * png_get_interlace_type()
  640.  * png_get_pixel_aspect_ratio()
  641.  * png_get_pixels_per_meter()
  642.  * png_get_x_offset_pixels()
  643.  * png_get_y_offset_pixels()
  644.  * png_get_x_offset_microns()
  645.  * png_get_y_offset_microns()
  646.  */
  647. #if !defined(PNG_NO_EASY_ACCESS) && !defined(PNG_EASY_ACCESS_SUPPORTED)
  648. #  define PNG_EASY_ACCESS_SUPPORTED
  649. #endif
  650. /* PNG_ASSEMBLER_CODE was enabled by default in version 1.2.0 
  651.  * and removed from version 1.2.20.  The following will be removed
  652.  * from libpng-1.4.0
  653. */
  654. #if defined(PNG_READ_SUPPORTED) && !defined(PNG_NO_OPTIMIZED_CODE)
  655. #  ifndef PNG_OPTIMIZED_CODE_SUPPORTED
  656. #    define PNG_OPTIMIZED_CODE_SUPPORTED
  657. #  endif
  658. #endif
  659. #if defined(PNG_READ_SUPPORTED) && !defined(PNG_NO_ASSEMBLER_CODE)
  660. #  ifndef PNG_ASSEMBLER_CODE_SUPPORTED
  661. #    define PNG_ASSEMBLER_CODE_SUPPORTED
  662. #  endif
  663. #  if defined(__GNUC__) && defined(__x86_64__) && (__GNUC__ < 4)
  664.      /* work around 64-bit gcc compiler bugs in gcc-3.x */
  665. #    if !defined(PNG_MMX_CODE_SUPPORTED) && !defined(PNG_NO_MMX_CODE)
  666. #      define PNG_NO_MMX_CODE
  667. #    endif
  668. #  endif
  669. #  if defined(__APPLE__)
  670. #    if !defined(PNG_MMX_CODE_SUPPORTED) && !defined(PNG_NO_MMX_CODE)
  671. #      define PNG_NO_MMX_CODE
  672. #    endif
  673. #  endif
  674. #  if (defined(__MWERKS__) && ((__MWERKS__ < 0x0900) || macintosh))
  675. #    if !defined(PNG_MMX_CODE_SUPPORTED) && !defined(PNG_NO_MMX_CODE)
  676. #      define PNG_NO_MMX_CODE
  677. #    endif
  678. #  endif
  679. #  if !defined(PNG_MMX_CODE_SUPPORTED) && !defined(PNG_NO_MMX_CODE)
  680. #    define PNG_MMX_CODE_SUPPORTED
  681. #  endif
  682. #endif
  683. /* end of obsolete code to be removed from libpng-1.4.0 */
  684. #if !defined(PNG_1_0_X)
  685. #if !defined(PNG_NO_USER_MEM) && !defined(PNG_USER_MEM_SUPPORTED)
  686. #  define PNG_USER_MEM_SUPPORTED
  687. #endif
  688. #endif /* PNG_1_0_X */
  689. /* Added at libpng-1.2.6 */
  690. #if !defined(PNG_1_0_X)
  691. #ifndef PNG_SET_USER_LIMITS_SUPPORTED
  692. #if !defined(PNG_NO_SET_USER_LIMITS) && !defined(PNG_SET_USER_LIMITS_SUPPORTED)
  693. #  define PNG_SET_USER_LIMITS_SUPPORTED
  694. #endif
  695. #endif
  696. #endif /* PNG_1_0_X */
  697. /* Added at libpng-1.0.16 and 1.2.6.  To accept all valid PNGS no matter
  698.  * how large, set these limits to 0x7fffffffL
  699.  */
  700. #ifndef PNG_USER_WIDTH_MAX
  701. #  define PNG_USER_WIDTH_MAX 1000000L
  702. #endif
  703. #ifndef PNG_USER_HEIGHT_MAX
  704. #  define PNG_USER_HEIGHT_MAX 1000000L
  705. #endif
  706. /* Added at libpng-1.2.34 and 1.4.0 */
  707. #ifndef PNG_STRING_NEWLINE
  708. #define PNG_STRING_NEWLINE "n"
  709. #endif
  710. /* These are currently experimental features, define them if you want */
  711. /* very little testing */
  712. /*
  713. #ifdef PNG_READ_SUPPORTED
  714. #  ifndef PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
  715. #    define PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
  716. #  endif
  717. #endif
  718. */
  719. /* This is only for PowerPC big-endian and 680x0 systems */
  720. /* some testing */
  721. /*
  722. #ifndef PNG_READ_BIG_ENDIAN_SUPPORTED
  723. #  define PNG_READ_BIG_ENDIAN_SUPPORTED
  724. #endif
  725. */
  726. /* Buggy compilers (e.g., gcc 2.7.2.2) need this */
  727. /*
  728. #define PNG_NO_POINTER_INDEXING
  729. */
  730. /* These functions are turned off by default, as they will be phased out. */
  731. /*
  732. #define  PNG_USELESS_TESTS_SUPPORTED
  733. #define  PNG_CORRECT_PALETTE_SUPPORTED
  734. */
  735. /* Any chunks you are not interested in, you can undef here.  The
  736.  * ones that allocate memory may be expecially important (hIST,
  737.  * tEXt, zTXt, tRNS, pCAL).  Others will just save time and make png_info
  738.  * a bit smaller.
  739.  */
  740. #if defined(PNG_READ_SUPPORTED) && 
  741.     !defined(PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED) && 
  742.     !defined(PNG_NO_READ_ANCILLARY_CHUNKS)
  743. #  define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
  744. #endif
  745. #if defined(PNG_WRITE_SUPPORTED) && 
  746.     !defined(PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED) && 
  747.     !defined(PNG_NO_WRITE_ANCILLARY_CHUNKS)
  748. #  define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
  749. #endif
  750. #ifdef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
  751. #ifdef PNG_NO_READ_TEXT
  752. #  define PNG_NO_READ_iTXt
  753. #  define PNG_NO_READ_tEXt
  754. #  define PNG_NO_READ_zTXt
  755. #endif
  756. #ifndef PNG_NO_READ_bKGD
  757. #  define PNG_READ_bKGD_SUPPORTED
  758. #  define PNG_bKGD_SUPPORTED
  759. #endif
  760. #ifndef PNG_NO_READ_cHRM
  761. #  define PNG_READ_cHRM_SUPPORTED
  762. #  define PNG_cHRM_SUPPORTED
  763. #endif
  764. #ifndef PNG_NO_READ_gAMA
  765. #  define PNG_READ_gAMA_SUPPORTED
  766. #  define PNG_gAMA_SUPPORTED
  767. #endif
  768. #ifndef PNG_NO_READ_hIST
  769. #  define PNG_READ_hIST_SUPPORTED
  770. #  define PNG_hIST_SUPPORTED
  771. #endif
  772. #ifndef PNG_NO_READ_iCCP
  773. #  define PNG_READ_iCCP_SUPPORTED
  774. #  define PNG_iCCP_SUPPORTED
  775. #endif
  776. #ifndef PNG_NO_READ_iTXt
  777. #  ifndef PNG_READ_iTXt_SUPPORTED
  778. #    define PNG_READ_iTXt_SUPPORTED
  779. #  endif
  780. #  ifndef PNG_iTXt_SUPPORTED
  781. #    define PNG_iTXt_SUPPORTED
  782. #  endif
  783. #endif
  784. #ifndef PNG_NO_READ_oFFs
  785. #  define PNG_READ_oFFs_SUPPORTED
  786. #  define PNG_oFFs_SUPPORTED
  787. #endif
  788. #ifndef PNG_NO_READ_pCAL
  789. #  define PNG_READ_pCAL_SUPPORTED
  790. #  define PNG_pCAL_SUPPORTED
  791. #endif
  792. #ifndef PNG_NO_READ_sCAL
  793. #  define PNG_READ_sCAL_SUPPORTED
  794. #  define PNG_sCAL_SUPPORTED
  795. #endif
  796. #ifndef PNG_NO_READ_pHYs
  797. #  define PNG_READ_pHYs_SUPPORTED
  798. #  define PNG_pHYs_SUPPORTED
  799. #endif
  800. #ifndef PNG_NO_READ_sBIT
  801. #  define PNG_READ_sBIT_SUPPORTED
  802. #  define PNG_sBIT_SUPPORTED
  803. #endif
  804. #ifndef PNG_NO_READ_sPLT
  805. #  define PNG_READ_sPLT_SUPPORTED
  806. #  define PNG_sPLT_SUPPORTED
  807. #endif
  808. #ifndef PNG_NO_READ_sRGB
  809. #  define PNG_READ_sRGB_SUPPORTED
  810. #  define PNG_sRGB_SUPPORTED
  811. #endif
  812. #ifndef PNG_NO_READ_tEXt
  813. #  define PNG_READ_tEXt_SUPPORTED
  814. #  define PNG_tEXt_SUPPORTED
  815. #endif
  816. #ifndef PNG_NO_READ_tIME
  817. #  define PNG_READ_tIME_SUPPORTED
  818. #  define PNG_tIME_SUPPORTED
  819. #endif
  820. #ifndef PNG_NO_READ_tRNS
  821. #  define PNG_READ_tRNS_SUPPORTED
  822. #  define PNG_tRNS_SUPPORTED
  823. #endif
  824. #ifndef PNG_NO_READ_zTXt
  825. #  define PNG_READ_zTXt_SUPPORTED
  826. #  define PNG_zTXt_SUPPORTED
  827. #endif
  828. #ifndef PNG_NO_READ_UNKNOWN_CHUNKS
  829. #  define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
  830. #  ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED
  831. #    define PNG_UNKNOWN_CHUNKS_SUPPORTED
  832. #  endif
  833. #  ifndef PNG_NO_HANDLE_AS_UNKNOWN
  834. #    define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  835. #  endif
  836. #endif
  837. #if !defined(PNG_NO_READ_USER_CHUNKS) && 
  838.      defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
  839. #  define PNG_READ_USER_CHUNKS_SUPPORTED
  840. #  define PNG_USER_CHUNKS_SUPPORTED
  841. #  ifdef PNG_NO_READ_UNKNOWN_CHUNKS
  842. #    undef PNG_NO_READ_UNKNOWN_CHUNKS
  843. #  endif
  844. #  ifdef PNG_NO_HANDLE_AS_UNKNOWN
  845. #    undef PNG_NO_HANDLE_AS_UNKNOWN
  846. #  endif
  847. #endif
  848. #ifndef PNG_NO_READ_OPT_PLTE
  849. #  define PNG_READ_OPT_PLTE_SUPPORTED /* only affects support of the */
  850. #endif                      /* optional PLTE chunk in RGB and RGBA images */
  851. #if defined(PNG_READ_iTXt_SUPPORTED) || defined(PNG_READ_tEXt_SUPPORTED) || 
  852.     defined(PNG_READ_zTXt_SUPPORTED)
  853. #  define PNG_READ_TEXT_SUPPORTED
  854. #  define PNG_TEXT_SUPPORTED
  855. #endif
  856. #endif /* PNG_READ_ANCILLARY_CHUNKS_SUPPORTED */
  857. #ifdef PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
  858. #ifdef PNG_NO_WRITE_TEXT
  859. #  define PNG_NO_WRITE_iTXt
  860. #  define PNG_NO_WRITE_tEXt
  861. #  define PNG_NO_WRITE_zTXt
  862. #endif
  863. #ifndef PNG_NO_WRITE_bKGD
  864. #  define PNG_WRITE_bKGD_SUPPORTED
  865. #  ifndef PNG_bKGD_SUPPORTED
  866. #    define PNG_bKGD_SUPPORTED
  867. #  endif
  868. #endif
  869. #ifndef PNG_NO_WRITE_cHRM
  870. #  define PNG_WRITE_cHRM_SUPPORTED
  871. #  ifndef PNG_cHRM_SUPPORTED
  872. #    define PNG_cHRM_SUPPORTED
  873. #  endif
  874. #endif
  875. #ifndef PNG_NO_WRITE_gAMA
  876. #  define PNG_WRITE_gAMA_SUPPORTED
  877. #  ifndef PNG_gAMA_SUPPORTED
  878. #    define PNG_gAMA_SUPPORTED
  879. #  endif
  880. #endif
  881. #ifndef PNG_NO_WRITE_hIST
  882. #  define PNG_WRITE_hIST_SUPPORTED
  883. #  ifndef PNG_hIST_SUPPORTED
  884. #    define PNG_hIST_SUPPORTED
  885. #  endif
  886. #endif
  887. #ifndef PNG_NO_WRITE_iCCP
  888. #  define PNG_WRITE_iCCP_SUPPORTED
  889. #  ifndef PNG_iCCP_SUPPORTED
  890. #    define PNG_iCCP_SUPPORTED
  891. #  endif
  892. #endif
  893. #ifndef PNG_NO_WRITE_iTXt
  894. #  ifndef PNG_WRITE_iTXt_SUPPORTED
  895. #    define PNG_WRITE_iTXt_SUPPORTED
  896. #  endif
  897. #  ifndef PNG_iTXt_SUPPORTED
  898. #    define PNG_iTXt_SUPPORTED
  899. #  endif
  900. #endif
  901. #ifndef PNG_NO_WRITE_oFFs
  902. #  define PNG_WRITE_oFFs_SUPPORTED
  903. #  ifndef PNG_oFFs_SUPPORTED
  904. #    define PNG_oFFs_SUPPORTED
  905. #  endif
  906. #endif
  907. #ifndef PNG_NO_WRITE_pCAL
  908. #  define PNG_WRITE_pCAL_SUPPORTED
  909. #  ifndef PNG_pCAL_SUPPORTED
  910. #    define PNG_pCAL_SUPPORTED
  911. #  endif
  912. #endif
  913. #ifndef PNG_NO_WRITE_sCAL
  914. #  define PNG_WRITE_sCAL_SUPPORTED
  915. #  ifndef PNG_sCAL_SUPPORTED
  916. #    define PNG_sCAL_SUPPORTED
  917. #  endif
  918. #endif
  919. #ifndef PNG_NO_WRITE_pHYs
  920. #  define PNG_WRITE_pHYs_SUPPORTED
  921. #  ifndef PNG_pHYs_SUPPORTED
  922. #    define PNG_pHYs_SUPPORTED
  923. #  endif
  924. #endif
  925. #ifndef PNG_NO_WRITE_sBIT
  926. #  define PNG_WRITE_sBIT_SUPPORTED
  927. #  ifndef PNG_sBIT_SUPPORTED
  928. #    define PNG_sBIT_SUPPORTED
  929. #  endif
  930. #endif
  931. #ifndef PNG_NO_WRITE_sPLT
  932. #  define PNG_WRITE_sPLT_SUPPORTED
  933. #  ifndef PNG_sPLT_SUPPORTED
  934. #    define PNG_sPLT_SUPPORTED
  935. #  endif
  936. #endif
  937. #ifndef PNG_NO_WRITE_sRGB
  938. #  define PNG_WRITE_sRGB_SUPPORTED
  939. #  ifndef PNG_sRGB_SUPPORTED
  940. #    define PNG_sRGB_SUPPORTED
  941. #  endif
  942. #endif
  943. #ifndef PNG_NO_WRITE_tEXt
  944. #  define PNG_WRITE_tEXt_SUPPORTED
  945. #  ifndef PNG_tEXt_SUPPORTED
  946. #    define PNG_tEXt_SUPPORTED
  947. #  endif
  948. #endif
  949. #ifndef PNG_NO_WRITE_tIME
  950. #  define PNG_WRITE_tIME_SUPPORTED
  951. #  ifndef PNG_tIME_SUPPORTED
  952. #    define PNG_tIME_SUPPORTED
  953. #  endif
  954. #endif
  955. #ifndef PNG_NO_WRITE_tRNS
  956. #  define PNG_WRITE_tRNS_SUPPORTED
  957. #  ifndef PNG_tRNS_SUPPORTED
  958. #    define PNG_tRNS_SUPPORTED
  959. #  endif
  960. #endif
  961. #ifndef PNG_NO_WRITE_zTXt
  962. #  define PNG_WRITE_zTXt_SUPPORTED
  963. #  ifndef PNG_zTXt_SUPPORTED
  964. #    define PNG_zTXt_SUPPORTED
  965. #  endif
  966. #endif
  967. #ifndef PNG_NO_WRITE_UNKNOWN_CHUNKS
  968. #  define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
  969. #  ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED
  970. #    define PNG_UNKNOWN_CHUNKS_SUPPORTED
  971. #  endif
  972. #  ifndef PNG_NO_HANDLE_AS_UNKNOWN
  973. #     ifndef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  974. #       define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  975. #     endif
  976. #  endif
  977. #endif
  978. #if defined(PNG_WRITE_iTXt_SUPPORTED) || defined(PNG_WRITE_tEXt_SUPPORTED) || 
  979.     defined(PNG_WRITE_zTXt_SUPPORTED)
  980. #  define PNG_WRITE_TEXT_SUPPORTED
  981. #  ifndef PNG_TEXT_SUPPORTED
  982. #    define PNG_TEXT_SUPPORTED
  983. #  endif
  984. #endif
  985. #endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */
  986. /* Turn this off to disable png_read_png() and
  987.  * png_write_png() and leave the row_pointers member
  988.  * out of the info structure.
  989.  */
  990. #ifndef PNG_NO_INFO_IMAGE
  991. #  define PNG_INFO_IMAGE_SUPPORTED
  992. #endif
  993. /* need the time information for reading tIME chunks */
  994. #if defined(PNG_tIME_SUPPORTED)
  995. #  if !defined(_WIN32_WCE)
  996.      /* "time.h" functions are not supported on WindowsCE */
  997. #    include <time.h>
  998. #  endif
  999. #endif
  1000. /* Some typedefs to get us started.  These should be safe on most of the
  1001.  * common platforms.  The typedefs should be at least as large as the
  1002.  * numbers suggest (a png_uint_32 must be at least 32 bits long), but they
  1003.  * don't have to be exactly that size.  Some compilers dislike passing
  1004.  * unsigned shorts as function parameters, so you may be better off using
  1005.  * unsigned int for png_uint_16.  Likewise, for 64-bit systems, you may
  1006.  * want to have unsigned int for png_uint_32 instead of unsigned long.
  1007.  */
  1008. typedef unsigned long png_uint_32;
  1009. typedef long png_int_32;
  1010. typedef unsigned short png_uint_16;
  1011. typedef short png_int_16;
  1012. typedef unsigned char png_byte;
  1013. /* This is usually size_t.  It is typedef'ed just in case you need it to
  1014.    change (I'm not sure if you will or not, so I thought I'd be safe) */
  1015. #ifdef PNG_SIZE_T
  1016.    typedef PNG_SIZE_T png_size_t;
  1017. #  define png_sizeof(x) png_convert_size(sizeof(x))
  1018. #else
  1019.    typedef size_t png_size_t;
  1020. #  define png_sizeof(x) sizeof(x)
  1021. #endif
  1022. /* The following is needed for medium model support.  It cannot be in the
  1023.  * PNG_INTERNAL section.  Needs modification for other compilers besides
  1024.  * MSC.  Model independent support declares all arrays and pointers to be
  1025.  * large using the far keyword.  The zlib version used must also support
  1026.  * model independent data.  As of version zlib 1.0.4, the necessary changes
  1027.  * have been made in zlib.  The USE_FAR_KEYWORD define triggers other
  1028.  * changes that are needed. (Tim Wegner)
  1029.  */
  1030. /* Separate compiler dependencies (problem here is that zlib.h always
  1031.    defines FAR. (SJT) */
  1032. #ifdef __BORLANDC__
  1033. #  if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__)
  1034. #    define LDATA 1
  1035. #  else
  1036. #    define LDATA 0
  1037. #  endif
  1038.    /* GRR:  why is Cygwin in here?  Cygwin is not Borland C... */
  1039. #  if !defined(__WIN32__) && !defined(__FLAT__) && !defined(__CYGWIN__)
  1040. #    define PNG_MAX_MALLOC_64K
  1041. #    if (LDATA != 1)
  1042. #      ifndef FAR
  1043. #        define FAR __far
  1044. #      endif
  1045. #      define USE_FAR_KEYWORD
  1046. #    endif   /* LDATA != 1 */
  1047.      /* Possibly useful for moving data out of default segment.
  1048.       * Uncomment it if you want. Could also define FARDATA as
  1049.       * const if your compiler supports it. (SJT)
  1050. #    define FARDATA FAR
  1051.       */
  1052. #  endif  /* __WIN32__, __FLAT__, __CYGWIN__ */
  1053. #endif   /* __BORLANDC__ */
  1054. /* Suggest testing for specific compiler first before testing for
  1055.  * FAR.  The Watcom compiler defines both __MEDIUM__ and M_I86MM,
  1056.  * making reliance oncertain keywords suspect. (SJT)
  1057.  */
  1058. /* MSC Medium model */
  1059. #if defined(FAR)
  1060. #  if defined(M_I86MM)
  1061. #    define USE_FAR_KEYWORD
  1062. #    define FARDATA FAR
  1063. #    include <dos.h>
  1064. #  endif
  1065. #endif
  1066. /* SJT: default case */
  1067. #ifndef FAR
  1068. #  define FAR
  1069. #endif
  1070. /* At this point FAR is always defined */
  1071. #ifndef FARDATA
  1072. #  define FARDATA
  1073. #endif
  1074. /* Typedef for floating-point numbers that are converted
  1075.    to fixed-point with a multiple of 100,000, e.g., int_gamma */
  1076. typedef png_int_32 png_fixed_point;
  1077. /* Add typedefs for pointers */
  1078. typedef void            FAR * png_voidp;
  1079. typedef png_byte        FAR * png_bytep;
  1080. typedef png_uint_32     FAR * png_uint_32p;
  1081. typedef png_int_32      FAR * png_int_32p;
  1082. typedef png_uint_16     FAR * png_uint_16p;
  1083. typedef png_int_16      FAR * png_int_16p;
  1084. typedef PNG_CONST char  FAR * png_const_charp;
  1085. typedef char            FAR * png_charp;
  1086. typedef png_fixed_point FAR * png_fixed_point_p;
  1087. #ifndef PNG_NO_STDIO
  1088. #if defined(_WIN32_WCE)
  1089. typedef HANDLE                png_FILE_p;
  1090. #else
  1091. typedef FILE                * png_FILE_p;
  1092. #endif
  1093. #endif
  1094. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1095. typedef double          FAR * png_doublep;
  1096. #endif
  1097. /* Pointers to pointers; i.e. arrays */
  1098. typedef png_byte        FAR * FAR * png_bytepp;
  1099. typedef png_uint_32     FAR * FAR * png_uint_32pp;
  1100. typedef png_int_32      FAR * FAR * png_int_32pp;
  1101. typedef png_uint_16     FAR * FAR * png_uint_16pp;
  1102. typedef png_int_16      FAR * FAR * png_int_16pp;
  1103. typedef PNG_CONST char  FAR * FAR * png_const_charpp;
  1104. typedef char            FAR * FAR * png_charpp;
  1105. typedef png_fixed_point FAR * FAR * png_fixed_point_pp;
  1106. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1107. typedef double          FAR * FAR * png_doublepp;
  1108. #endif
  1109. /* Pointers to pointers to pointers; i.e., pointer to array */
  1110. typedef char            FAR * FAR * FAR * png_charppp;
  1111. #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
  1112. /* SPC -  Is this stuff deprecated? */
  1113. /* It'll be removed as of libpng-1.3.0 - GR-P */
  1114. /* libpng typedefs for types in zlib. If zlib changes
  1115.  * or another compression library is used, then change these.
  1116.  * Eliminates need to change all the source files.
  1117.  */
  1118. typedef charf *         png_zcharp;
  1119. typedef charf * FAR *   png_zcharpp;
  1120. typedef z_stream FAR *  png_zstreamp;
  1121. #endif /* (PNG_1_0_X) || defined(PNG_1_2_X) */
  1122. /*
  1123.  * Define PNG_BUILD_DLL if the module being built is a Windows
  1124.  * LIBPNG DLL.
  1125.  *
  1126.  * Define PNG_USE_DLL if you want to *link* to the Windows LIBPNG DLL.
  1127.  * It is equivalent to Microsoft predefined macro _DLL that is
  1128.  * automatically defined when you compile using the share
  1129.  * version of the CRT (C Run-Time library)
  1130.  *
  1131.  * The cygwin mods make this behavior a little different:
  1132.  * Define PNG_BUILD_DLL if you are building a dll for use with cygwin
  1133.  * Define PNG_STATIC if you are building a static library for use with cygwin,
  1134.  *   -or- if you are building an application that you want to link to the
  1135.  *   static library.
  1136.  * PNG_USE_DLL is defined by default (no user action needed) unless one of
  1137.  *   the other flags is defined.
  1138.  */
  1139. #if !defined(PNG_DLL) && (defined(PNG_BUILD_DLL) || defined(PNG_USE_DLL))
  1140. #  define PNG_DLL
  1141. #endif
  1142. /* If CYGWIN, then disallow GLOBAL ARRAYS unless building a static lib.
  1143.  * When building a static lib, default to no GLOBAL ARRAYS, but allow
  1144.  * command-line override
  1145.  */
  1146. #if defined(__CYGWIN__)
  1147. #  if !defined(PNG_STATIC)
  1148. #    if defined(PNG_USE_GLOBAL_ARRAYS)
  1149. #      undef PNG_USE_GLOBAL_ARRAYS
  1150. #    endif
  1151. #    if !defined(PNG_USE_LOCAL_ARRAYS)
  1152. #      define PNG_USE_LOCAL_ARRAYS
  1153. #    endif
  1154. #  else
  1155. #    if defined(PNG_USE_LOCAL_ARRAYS) || defined(PNG_NO_GLOBAL_ARRAYS)
  1156. #      if defined(PNG_USE_GLOBAL_ARRAYS)
  1157. #        undef PNG_USE_GLOBAL_ARRAYS
  1158. #      endif
  1159. #    endif
  1160. #  endif
  1161. #  if !defined(PNG_USE_LOCAL_ARRAYS) && !defined(PNG_USE_GLOBAL_ARRAYS)
  1162. #    define PNG_USE_LOCAL_ARRAYS
  1163. #  endif
  1164. #endif
  1165. /* Do not use global arrays (helps with building DLL's)
  1166.  * They are no longer used in libpng itself, since version 1.0.5c,
  1167.  * but might be required for some pre-1.0.5c applications.
  1168.  */
  1169. #if !defined(PNG_USE_LOCAL_ARRAYS) && !defined(PNG_USE_GLOBAL_ARRAYS)
  1170. #  if defined(PNG_NO_GLOBAL_ARRAYS) || 
  1171.       (defined(__GNUC__) && defined(PNG_DLL)) || defined(_MSC_VER)
  1172. #    define PNG_USE_LOCAL_ARRAYS
  1173. #  else
  1174. #    define PNG_USE_GLOBAL_ARRAYS
  1175. #  endif
  1176. #endif
  1177. #if defined(__CYGWIN__)
  1178. #  undef PNGAPI
  1179. #  define PNGAPI __cdecl
  1180. #  undef PNG_IMPEXP
  1181. #  define PNG_IMPEXP
  1182. #endif  
  1183. /* If you define PNGAPI, e.g., with compiler option "-DPNGAPI=__stdcall",
  1184.  * you may get warnings regarding the linkage of png_zalloc and png_zfree.
  1185.  * Don't ignore those warnings; you must also reset the default calling
  1186.  * convention in your compiler to match your PNGAPI, and you must build
  1187.  * zlib and your applications the same way you build libpng.
  1188.  */
  1189. #if defined(__MINGW32__) && !defined(PNG_MODULEDEF)
  1190. #  ifndef PNG_NO_MODULEDEF
  1191. #    define PNG_NO_MODULEDEF
  1192. #  endif
  1193. #endif
  1194. #if !defined(PNG_IMPEXP) && defined(PNG_BUILD_DLL) && !defined(PNG_NO_MODULEDEF)
  1195. #  define PNG_IMPEXP
  1196. #endif
  1197. #if defined(PNG_DLL) || defined(_DLL) || defined(__DLL__ ) || 
  1198.     (( defined(_Windows) || defined(_WINDOWS) || 
  1199.        defined(WIN32) || defined(_WIN32) || defined(__WIN32__) ))
  1200. #  ifndef PNGAPI
  1201. #     if defined(__GNUC__) || (defined (_MSC_VER) && (_MSC_VER >= 800))
  1202. #        define PNGAPI __cdecl
  1203. #     else
  1204. #        define PNGAPI _cdecl
  1205. #     endif
  1206. #  endif
  1207. #  if !defined(PNG_IMPEXP) && (!defined(PNG_DLL) || 
  1208.        0 /* WINCOMPILER_WITH_NO_SUPPORT_FOR_DECLIMPEXP */)
  1209. #     define PNG_IMPEXP
  1210. #  endif
  1211. #  if !defined(PNG_IMPEXP)
  1212. #     define PNG_EXPORT_TYPE1(type,symbol)  PNG_IMPEXP type PNGAPI symbol
  1213. #     define PNG_EXPORT_TYPE2(type,symbol)  type PNG_IMPEXP PNGAPI symbol
  1214.       /* Borland/Microsoft */
  1215. #     if defined(_MSC_VER) || defined(__BORLANDC__)
  1216. #        if (_MSC_VER >= 800) || (__BORLANDC__ >= 0x500)
  1217. #           define PNG_EXPORT PNG_EXPORT_TYPE1
  1218. #        else
  1219. #           define PNG_EXPORT PNG_EXPORT_TYPE2
  1220. #           if defined(PNG_BUILD_DLL)
  1221. #              define PNG_IMPEXP __export
  1222. #           else
  1223. #              define PNG_IMPEXP /*__import */ /* doesn't exist AFAIK in
  1224.                                                  VC++ */
  1225. #           endif                             /* Exists in Borland C++ for
  1226.                                                  C++ classes (== huge) */
  1227. #        endif
  1228. #     endif
  1229. #     if !defined(PNG_IMPEXP)
  1230. #        if defined(PNG_BUILD_DLL)
  1231. #           define PNG_IMPEXP __declspec(dllexport)
  1232. #        else
  1233. #           define PNG_IMPEXP __declspec(dllimport)
  1234. #        endif
  1235. #     endif
  1236. #  endif  /* PNG_IMPEXP */
  1237. #else /* !(DLL || non-cygwin WINDOWS) */
  1238. #   if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__)
  1239. #      ifndef PNGAPI
  1240. #         define PNGAPI _System
  1241. #      endif
  1242. #   else
  1243. #      if 0 /* ... other platforms, with other meanings */
  1244. #      endif
  1245. #   endif
  1246. #endif
  1247. #ifndef PNGAPI
  1248. #  define PNGAPI
  1249. #endif
  1250. #ifndef PNG_IMPEXP
  1251. #  define PNG_IMPEXP
  1252. #endif
  1253. #ifdef PNG_BUILDSYMS
  1254. #  ifndef PNG_EXPORT
  1255. #    define PNG_EXPORT(type,symbol) PNG_FUNCTION_EXPORT symbol END
  1256. #  endif
  1257. #  ifdef PNG_USE_GLOBAL_ARRAYS
  1258. #    ifndef PNG_EXPORT_VAR
  1259. #      define PNG_EXPORT_VAR(type) PNG_DATA_EXPORT
  1260. #    endif
  1261. #  endif
  1262. #endif
  1263. #ifndef PNG_EXPORT
  1264. #  define PNG_EXPORT(type,symbol) PNG_IMPEXP type PNGAPI symbol
  1265. #endif
  1266. #ifdef PNG_USE_GLOBAL_ARRAYS
  1267. #  ifndef PNG_EXPORT_VAR
  1268. #    define PNG_EXPORT_VAR(type) extern PNG_IMPEXP type
  1269. #  endif
  1270. #endif
  1271. /* User may want to use these so they are not in PNG_INTERNAL. Any library
  1272.  * functions that are passed far data must be model independent.
  1273.  */
  1274. #ifndef PNG_ABORT
  1275. #  define PNG_ABORT() abort()
  1276. #endif
  1277. #ifdef PNG_SETJMP_SUPPORTED
  1278. #  define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
  1279. #else
  1280. #  define png_jmpbuf(png_ptr) 
  1281.    (LIBPNG_WAS_COMPILED_WITH__PNG_SETJMP_NOT_SUPPORTED)
  1282. #endif
  1283. #if defined(USE_FAR_KEYWORD)  /* memory model independent fns */
  1284. /* use this to make far-to-near assignments */
  1285. #  define CHECK   1
  1286. #  define NOCHECK 0
  1287. #  define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
  1288. #  define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK))
  1289. #  define png_snprintf _fsnprintf   /* Added to v 1.2.19 */
  1290. #  define png_strlen  _fstrlen
  1291. #  define png_memcmp  _fmemcmp    /* SJT: added */
  1292. #  define png_memcpy  _fmemcpy
  1293. #  define png_memset  _fmemset
  1294. #else /* use the usual functions */
  1295. #  define CVT_PTR(ptr)         (ptr)
  1296. #  define CVT_PTR_NOCHECK(ptr) (ptr)
  1297. #  ifndef PNG_NO_SNPRINTF
  1298. #    ifdef _MSC_VER
  1299. #      define png_snprintf _snprintf   /* Added to v 1.2.19 */
  1300. #      define png_snprintf2 _snprintf
  1301. #      define png_snprintf6 _snprintf
  1302. #    else
  1303. #      define png_snprintf snprintf   /* Added to v 1.2.19 */
  1304. #      define png_snprintf2 snprintf
  1305. #      define png_snprintf6 snprintf
  1306. #    endif
  1307. #  else
  1308.      /* You don't have or don't want to use snprintf().  Caution: Using
  1309.       * sprintf instead of snprintf exposes your application to accidental
  1310.       * or malevolent buffer overflows.  If you don't have snprintf()
  1311.       * as a general rule you should provide one (you can get one from
  1312.       * Portable OpenSSH). */
  1313. #    define png_snprintf(s1,n,fmt,x1) sprintf(s1,fmt,x1)
  1314. #    define png_snprintf2(s1,n,fmt,x1,x2) sprintf(s1,fmt,x1,x2)
  1315. #    define png_snprintf6(s1,n,fmt,x1,x2,x3,x4,x5,x6) 
  1316.         sprintf(s1,fmt,x1,x2,x3,x4,x5,x6)
  1317. #  endif
  1318. #  define png_strlen  strlen
  1319. #  define png_memcmp  memcmp      /* SJT: added */
  1320. #  define png_memcpy  memcpy
  1321. #  define png_memset  memset
  1322. #endif
  1323. /* End of memory model independent support */
  1324. /* Just a little check that someone hasn't tried to define something
  1325.  * contradictory.
  1326.  */
  1327. #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K)
  1328. #  undef PNG_ZBUF_SIZE
  1329. #  define PNG_ZBUF_SIZE 65536L
  1330. #endif
  1331. /* Added at libpng-1.2.8 */
  1332. #endif /* PNG_VERSION_INFO_ONLY */
  1333. #endif /* PNGCONF_H */