pngconf.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:44k
源码类别:

打印编程

开发平台:

Visual C++

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