pngconf.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:45k
源码类别:

界面编程

开发平台:

Visual C++

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