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

OpenGL

开发平台:

Visual C++

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