pngconf.h
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:28k
源码类别:

图形图象

开发平台:

Visual C++

  1. /* pngconf.h - machine configurable file for libpng
  2.  *
  3.  * libpng 1.0.6 - March 21, 2000
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  6.  * Copyright (c) 1996, 1997 Andreas Dilger
  7.  * Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
  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. /* This is the size of the compression buffer, and thus the size of
  17.  * an IDAT chunk.  Make this whatever size you feel is best for your
  18.  * machine.  One of these will be allocated per png_struct.  When this
  19.  * is full, it writes the data to the disk, and does some other
  20.  * calculations.  Making this an extremely small size will slow
  21.  * the library down, but you may want to experiment to determine
  22.  * where it becomes significant, if you are concerned with memory
  23.  * usage.  Note that zlib allocates at least 32Kb also.  For readers,
  24.  * this describes the size of the buffer available to read the data in.
  25.  * Unless this gets smaller than the size of a row (compressed),
  26.  * it should not make much difference how big this is.
  27.  */
  28. #ifndef PNG_ZBUF_SIZE
  29. #define PNG_ZBUF_SIZE 8192
  30. #endif
  31. /* If you are running on a machine where you cannot allocate more
  32.  * than 64K of memory at once, uncomment this.  While libpng will not
  33.  * normally need that much memory in a chunk (unless you load up a very
  34.  * large file), zlib needs to know how big of a chunk it can use, and
  35.  * libpng thus makes sure to check any memory allocation to verify it
  36.  * will fit into memory.
  37. #define PNG_MAX_MALLOC_64K
  38.  */
  39. #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
  40. #define PNG_MAX_MALLOC_64K
  41. #endif
  42. /* This protects us against compilers that run on a windowing system
  43.  * and thus don't have or would rather us not use the stdio types:
  44.  * stdin, stdout, and stderr.  The only one currently used is stderr
  45.  * in png_error() and png_warning().  #defining PNG_NO_CONSOLE_IO will
  46.  * prevent these from being compiled and used. #defining PNG_NO_STDIO
  47.  * will also prevent these, plus will prevent the entire set of stdio
  48.  * macros and functions (FILE *, printf, etc.) from being compiled and used,
  49.  * unless (PNG_DEBUG > 0) has been #defined.
  50.  *
  51.  * #define PNG_NO_CONSOLE_IO
  52.  * #define PNG_NO_STDIO
  53.  */
  54. #  ifdef PNG_NO_STDIO
  55. #    ifndef PNG_NO_CONSOLE_IO
  56. #      define PNG_NO_CONSOLE_IO
  57. #    endif
  58. #    ifdef PNG_DEBUG
  59. #      if (PNG_DEBUG > 0)
  60. #        include <stdio.h>
  61. #      endif
  62. #    endif
  63. #  else
  64. #    include <stdio.h>
  65. #  endif
  66. /* This macro protects us against machines that don't have function
  67.  * prototypes (ie K&R style headers).  If your compiler does not handle
  68.  * function prototypes, define this macro and use the included ansi2knr.
  69.  * I've always been able to use _NO_PROTO as the indicator, but you may
  70.  * need to drag the empty declaration out in front of here, or change the
  71.  * ifdef to suit your own needs.
  72.  */
  73. #ifndef PNGARG
  74. #ifdef OF /* zlib prototype munger */
  75. #define PNGARG(arglist) OF(arglist)
  76. #else
  77. #ifdef _NO_PROTO
  78. #define PNGARG(arglist) ()
  79. #else
  80. #define PNGARG(arglist) arglist
  81. #endif /* _NO_PROTO */
  82. #endif /* OF */
  83. #endif /* PNGARG */
  84. /* Try to determine if we are compiling on a Mac.  Note that testing for
  85.  * just __MWERKS__ is not good enough, because the Codewarrior is now used
  86.  * on non-Mac platforms.
  87.  */
  88. #ifndef MACOS
  89. #if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || 
  90.     defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
  91. #define MACOS
  92. #endif
  93. #endif
  94. /* enough people need this for various reasons to include it here */
  95. #if !defined(MACOS) && !defined(RISCOS)
  96. #include <sys/types.h>
  97. #endif
  98. #ifndef PNG_SETJMP_NOT_SUPPORTED
  99. #  define PNG_SETJMP_SUPPORTED
  100. #endif
  101. #ifdef PNG_SETJMP_SUPPORTED
  102. /* This is an attempt to force a single setjmp behaviour on Linux.  If
  103.  * the X config stuff didn't define _BSD_SOURCE we wouldn't need this.
  104.  */
  105. #  ifdef __linux__
  106. #    ifdef _BSD_SOURCE
  107. #      define _PNG_SAVE_BSD_SOURCE
  108. #      undef _BSD_SOURCE
  109. #    endif
  110. #    ifdef _SETJMP_H
  111.       __png.h__ already includes setjmp.h
  112.       __dont__ include it again
  113. #    endif
  114. #endif /* __linux__ */
  115. /* include setjmp.h for error handling */
  116. #include <setjmp.h>
  117. #  ifdef __linux__
  118. #    ifdef _PNG_SAVE_BSD_SOURCE
  119. #      define _BSD_SOURCE
  120. #      undef _PNG_SAVE_BSD_SOURCE
  121. #    endif
  122. #  endif /* __linux__ */
  123. #endif /* PNG_SETJMP_SUPPORTED */
  124. #ifdef BSD
  125. #include <strings.h>
  126. #else
  127. #include <string.h>
  128. #endif
  129. /* Other defines for things like memory and the like can go here.  */
  130. #ifdef PNG_INTERNAL
  131. #include <stdlib.h>
  132. /* The functions exported by PNG_EXTERN are PNG_INTERNAL functions, which
  133.  * aren't usually used outside the library (as far as I know), so it is
  134.  * debatable if they should be exported at all.  In the future, when it is
  135.  * possible to have run-time registry of chunk-handling functions, some of
  136.  * these will be made available again.
  137. #define PNG_EXTERN extern
  138.  */
  139. #define PNG_EXTERN
  140. /* Other defines specific to compilers can go here.  Try to keep
  141.  * them inside an appropriate ifdef/endif pair for portability.
  142.  */
  143. #if !defined(PNG_NO_FLOATING_POINT_SUPPORTED)
  144. #if defined(MACOS)
  145. /* We need to check that <math.h> hasn't already been included earlier
  146.  * as it seems it doesn't agree with <fp.h>, yet we should really use
  147.  * <fp.h> if possible.
  148.  */
  149. #if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
  150. #include <fp.h>
  151. #endif
  152. #else
  153. #include <math.h>
  154. #endif
  155. #endif
  156. /* Codewarrior on NT has linking problems without this. */
  157. #if (defined(__MWERKS__) && defined(WIN32)) || defined(__STDC__)
  158. #define PNG_ALWAYS_EXTERN
  159. #endif
  160. /* For some reason, Borland C++ defines memcmp, etc. in mem.h, not
  161.  * stdlib.h like it should (I think).  Or perhaps this is a C++
  162.  * "feature"?
  163.  */
  164. #ifdef __TURBOC__
  165. #include <mem.h>
  166. #include "alloc.h"
  167. #endif
  168. #ifdef _MSC_VER
  169. #include <malloc.h>
  170. #endif
  171. /* This controls how fine the dithering gets.  As this allocates
  172.  * a largish chunk of memory (32K), those who are not as concerned
  173.  * with dithering quality can decrease some or all of these.
  174.  */
  175. #ifndef PNG_DITHER_RED_BITS
  176. #define PNG_DITHER_RED_BITS 5
  177. #endif
  178. #ifndef PNG_DITHER_GREEN_BITS
  179. #define PNG_DITHER_GREEN_BITS 5
  180. #endif
  181. #ifndef PNG_DITHER_BLUE_BITS
  182. #define PNG_DITHER_BLUE_BITS 5
  183. #endif
  184. /* This controls how fine the gamma correction becomes when you
  185.  * are only interested in 8 bits anyway.  Increasing this value
  186.  * results in more memory being used, and more pow() functions
  187.  * being called to fill in the gamma tables.  Don't set this value
  188.  * less then 8, and even that may not work (I haven't tested it).
  189.  */
  190. #ifndef PNG_MAX_GAMMA_8
  191. #define PNG_MAX_GAMMA_8 11
  192. #endif
  193. /* This controls how much a difference in gamma we can tolerate before
  194.  * we actually start doing gamma conversion.
  195.  */
  196. #ifndef PNG_GAMMA_THRESHOLD
  197. #define PNG_GAMMA_THRESHOLD 0.05
  198. #endif
  199. #endif /* PNG_INTERNAL */
  200. /* The following uses const char * instead of char * for error
  201.  * and warning message functions, so some compilers won't complain.
  202.  * If you do not want to use const, define PNG_NO_CONST here.
  203.  */
  204. #ifndef PNG_NO_CONST
  205. #  define PNG_CONST const
  206. #else
  207. #  define PNG_CONST
  208. #endif
  209. /* The following defines give you the ability to remove code from the
  210.  * library that you will not be using.  I wish I could figure out how to
  211.  * automate this, but I can't do that without making it seriously hard
  212.  * on the users.  So if you are not using an ability, change the #define
  213.  * to and #undef, and that part of the library will not be compiled.  If
  214.  * your linker can't find a function, you may want to make sure the
  215.  * ability is defined here.  Some of these depend upon some others being
  216.  * defined.  I haven't figured out all the interactions here, so you may
  217.  * have to experiment awhile to get everything to compile.  If you are
  218.  * creating or using a shared library, you probably shouldn't touch this,
  219.  * as it will affect the size of the structures, and this will cause bad
  220.  * things to happen if the library and/or application ever change.
  221.  */
  222. /* Any transformations you will not be using can be undef'ed here */
  223. /* GR-P, 0.96a: Set "*TRANSFORMS_SUPPORTED as default but allow user
  224.    to turn it off with "*TRANSFORMS_NOT_SUPPORTED" or *PNG_NO_*_TRANSFORMS
  225.    on the compile line, then pick and choose which ones to define without
  226.    having to edit this file. It is safe to use the *TRANSFORMS_NOT_SUPPORTED
  227.    if you only want to have a png-compliant reader/writer but don't need
  228.    any of the extra transformations.  This saves about 80 kbytes in a
  229.    typical installation of the library. (PNG_NO_* form added in version
  230.    1.0.1c, for consistency)
  231.  */
  232. #if !defined(PNG_READ_TRANSFORMS_NOT_SUPPORTED) && 
  233.     !defined(PNG_NO_READ_TRANSFORMS)
  234. #define PNG_READ_TRANSFORMS_SUPPORTED
  235. #endif
  236. #if !defined(PNG_WRITE_TRANSFORMS_NOT_SUPPORTED) && 
  237.     !defined(PNG_NO_WRITE_TRANSFORMS)
  238. #define PNG_WRITE_TRANSFORMS_SUPPORTED
  239. #endif
  240. #ifdef PNG_READ_TRANSFORMS_SUPPORTED
  241. #ifndef PNG_NO_READ_EXPAND
  242. #define PNG_READ_EXPAND_SUPPORTED
  243. #endif
  244. #ifndef PNG_NO_READ_SHIFT
  245. #define PNG_READ_SHIFT_SUPPORTED
  246. #endif
  247. #ifndef PNG_NO_READ_PACK
  248. #define PNG_READ_PACK_SUPPORTED
  249. #endif
  250. #ifndef PNG_NO_READ_BGR
  251. #define PNG_READ_BGR_SUPPORTED
  252. #endif
  253. #ifndef PNG_NO_READ_SWAP
  254. #define PNG_READ_SWAP_SUPPORTED
  255. #endif
  256. #ifndef PNG_NO_READ_PACKSWAP
  257. #define PNG_READ_PACKSWAP_SUPPORTED
  258. #endif
  259. #ifndef PNG_NO_READ_INVERT
  260. #define PNG_READ_INVERT_SUPPORTED
  261. #endif
  262. #ifndef PNG_NO_READ_DITHER
  263. #define PNG_READ_DITHER_SUPPORTED
  264. #endif
  265. #ifndef PNG_NO_READ_BACKGROUND
  266. #define PNG_READ_BACKGROUND_SUPPORTED
  267. #endif
  268. #ifndef PNG_NO_READ_16_TO_8
  269. #define PNG_READ_16_TO_8_SUPPORTED
  270. #endif
  271. #ifndef PNG_NO_READ_FILLER
  272. #define PNG_READ_FILLER_SUPPORTED
  273. #endif
  274. #ifndef PNG_NO_READ_GAMMA
  275. #define PNG_READ_GAMMA_SUPPORTED
  276. #endif
  277. #ifndef PNG_NO_READ_GRAY_TO_RGB
  278. #define PNG_READ_GRAY_TO_RGB_SUPPORTED
  279. #endif
  280. #ifndef PNG_NO_READ_SWAP_ALPHA
  281. #define PNG_READ_SWAP_ALPHA_SUPPORTED
  282. #endif
  283. #ifndef PNG_NO_READ_INVERT_ALPHA
  284. #define PNG_READ_INVERT_ALPHA_SUPPORTED
  285. #endif
  286. #ifndef PNG_NO_READ_STRIP_ALPHA
  287. #define PNG_READ_STRIP_ALPHA_SUPPORTED
  288. #endif
  289. #ifndef PNG_NO_READ_USER_TRANSFORM
  290. #define PNG_READ_USER_TRANSFORM_SUPPORTED
  291. #endif
  292. #ifndef PNG_NO_READ_RGB_TO_GRAY
  293. #define PNG_READ_RGB_TO_GRAY_SUPPORTED
  294. #endif
  295. #endif /* PNG_READ_TRANSFORMS_SUPPORTED */
  296. #if !defined(PNG_NO_PROGRESSIVE_READ) && 
  297.  !defined(PNG_PROGRESSIVE_READ_NOT_SUPPORTED) /* if you don't do progressive   */
  298. #define PNG_PROGRESSIVE_READ_SUPPORTED       /* reading.  This is not talking */
  299. #endif                               /* about interlacing capability!  You'll */
  300.               /* still have interlacing unless you change the following line: */
  301. #define PNG_READ_INTERLACING_SUPPORTED /* required for PNG-compliant decoders */
  302. #ifndef PNG_NO_READ_COMPOSITED_NODIV
  303. #define PNG_READ_COMPOSITE_NODIV_SUPPORTED    /* well tested on Intel and SGI */
  304. #endif
  305. #ifndef PNG_NO_READ_EMPTY_PLTE
  306. #define PNG_READ_EMPTY_PLTE_SUPPORTED  /* useful for MNG applications */
  307. #endif
  308. #ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
  309. #ifndef PNG_NO_WRITE_SHIFT
  310. #define PNG_WRITE_SHIFT_SUPPORTED
  311. #endif
  312. #ifndef PNG_NO_WRITE_PACK
  313. #define PNG_WRITE_PACK_SUPPORTED
  314. #endif
  315. #ifndef PNG_NO_WRITE_BGR
  316. #define PNG_WRITE_BGR_SUPPORTED
  317. #endif
  318. #ifndef PNG_NO_WRITE_SWAP
  319. #define PNG_WRITE_SWAP_SUPPORTED
  320. #endif
  321. #ifndef PNG_NO_WRITE_PACKSWAP
  322. #define PNG_WRITE_PACKSWAP_SUPPORTED
  323. #endif
  324. #ifndef PNG_NO_WRITE_INVERT
  325. #define PNG_WRITE_INVERT_SUPPORTED
  326. #endif
  327. #ifndef PNG_NO_WRITE_FILLER
  328. #define PNG_WRITE_FILLER_SUPPORTED  /* This is the same as WRITE_STRIP_ALPHA */
  329. #endif
  330. #ifndef PNG_NO_WRITE_SWAP_ALPHA
  331. #define PNG_WRITE_SWAP_ALPHA_SUPPORTED
  332. #endif
  333. #ifndef PNG_NO_WRITE_INVERT_ALPHA
  334. #define PNG_WRITE_INVERT_ALPHA_SUPPORTED
  335. #endif
  336. #ifndef PNG_NO_WRITE_USER_TRANSFORM
  337. #define PNG_WRITE_USER_TRANSFORM_SUPPORTED
  338. #endif
  339. #endif /* PNG_WRITE_TRANSFORMS_SUPPORTED */
  340. #define PNG_WRITE_INTERLACING_SUPPORTED  /* not required for PNG-compliant
  341.                                             encoders, but can cause trouble
  342.                                             if left undefined */
  343. #ifndef PNG_NO_WRITE_WEIGHTED_FILTER
  344. #define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
  345. #endif
  346. #ifndef PNG_NO_WRITE_FLUSH
  347. #define PNG_WRITE_FLUSH_SUPPORTED
  348. #endif
  349. #ifndef PNG_NO_WRITE_EMPTY_PLTE
  350. #define PNG_WRITE_EMPTY_PLTE_SUPPORTED  /* useful for MNG applications */
  351. #endif
  352. #ifndef PNG_NO_STDIO
  353. #define PNG_TIME_RFC1123_SUPPORTED
  354. #endif
  355. /* This adds extra functions in pngget.c for accessing data from the
  356.  * info pointer (added in version 0.99)
  357.  * png_get_image_width()
  358.  * png_get_image_height()
  359.  * png_get_bit_depth()
  360.  * png_get_color_type()
  361.  * png_get_compression_type()
  362.  * png_get_filter_type()
  363.  * png_get_interlace_type()
  364.  * png_get_pixel_aspect_ratio()
  365.  * png_get_pixels_per_meter()
  366.  * png_get_x_offset_pixels()
  367.  * png_get_y_offset_pixels()
  368.  * png_get_x_offset_microns()
  369.  * png_get_y_offset_microns()
  370.  */
  371. #ifndef PNG_NO_EASY_ACCESS
  372. #define PNG_EASY_ACCESS_SUPPORTED
  373. #endif
  374. #if defined(PNG_USE_PNGVCRD) || defined(PNG_USE_PNGGCCRD) && 
  375.   !defined(PNG_NO_ASSEMBLER_CODE)
  376. #define PNG_ASSEMBLER_CODE_SUPPORTED
  377. #endif
  378. #ifndef PNG_NO_FLOATING_POINT_SUPPORTED
  379. #define PNG_FLOATING_POINT_SUPPORTED
  380. #endif
  381. #ifndef PNG_NO_FIXED_POINT_SUPPORTED
  382. #define PNG_FIXED_POINT_SUPPORTED
  383. #endif
  384. /* Do not use global arrays (helps with building DLL's)
  385.  * They are no longer used in libpng itself, since version 1.0.5c,
  386.  * but might be required for some pre-1.0.5c applications.
  387.  */
  388. #ifdef PNG_NO_GLOBAL_ARRAYS
  389. #  define PNG_USE_LOCAL_ARRAYS
  390. #else
  391. #  if defined(__GNUC__) && defined(WIN32)
  392. #    define PNG_NO_GLOBAL_ARRAYS
  393. #    define PNG_USE_LOCAL_ARRAYS
  394. #  else
  395. #    define PNG_USE_GLOBAL_ARRAYS
  396. #  endif
  397. #endif
  398. /* These are currently experimental features, define them if you want */
  399. /* very little testing */
  400. /*
  401. #define PNG_READ_16_TO_8_ACCURATE_SCALE_SUPPORTED
  402. #define PNG_USER_MEM_SUPPORTED
  403. */
  404. /* This is only for PowerPC big-endian and 680x0 systems */
  405. /* some testing */
  406. /*
  407. #define PNG_READ_BIG_ENDIAN_SUPPORTED
  408. */
  409. /* These functions are turned off by default, as they will be phased out. */
  410. /*
  411. #define  PNG_USELESS_TESTS_SUPPORTED
  412. #define  PNG_CORRECT_PALETTE_SUPPORTED
  413. */
  414. /* Any chunks you are not interested in, you can undef here.  The
  415.  * ones that allocate memory may be expecially important (hIST,
  416.  * tEXt, zTXt, tRNS, pCAL).  Others will just save time and make png_info
  417.  * a bit smaller.
  418.  */
  419. #if !defined(PNG_READ_ANCILLARY_CHUNKS_NOT_SUPPORTED) && 
  420.     !defined(PNG_NO_READ_ANCILLARY_CHUNKS)
  421. #define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
  422. #endif
  423. #if !defined(PNG_WRITE_ANCILLARY_CHUNKS_NOT_SUPPORTED) && 
  424.     !defined(PNG_NO_WRITE_ANCILLARY_CHUNKS)
  425. #define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
  426. #endif
  427. #ifdef PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
  428. #ifdef PNG_NO_READ_TEXT
  429. #  define PNG_NO_READ_iTXt
  430. #  define PNG_NO_READ_tEXt
  431. #  define PNG_NO_READ_zTXt
  432. #endif
  433. #ifndef PNG_NO_READ_bKGD
  434. #  define PNG_READ_bKGD_SUPPORTED
  435. #  define PNG_bKGD_SUPPORTED
  436. #endif
  437. #ifndef PNG_NO_READ_cHRM
  438. #  define PNG_READ_cHRM_SUPPORTED
  439. #  define PNG_cHRM_SUPPORTED
  440. #endif
  441. #ifndef PNG_NO_READ_gAMA
  442. #  define PNG_READ_gAMA_SUPPORTED
  443. #  define PNG_gAMA_SUPPORTED
  444. #endif
  445. #ifndef PNG_NO_READ_hIST
  446. #  define PNG_READ_hIST_SUPPORTED
  447. #  define PNG_hIST_SUPPORTED
  448. #endif
  449. #ifndef PNG_NO_READ_iCCP
  450. #  define PNG_READ_iCCP_SUPPORTED
  451. #  define PNG_iCCP_SUPPORTED
  452. #endif
  453. #ifndef PNG_NO_READ_iTXt
  454. #  define PNG_READ_iTXt_SUPPORTED
  455. #  define PNG_iTXt_SUPPORTED
  456. #endif
  457. #ifndef PNG_NO_READ_oFFs
  458. #  define PNG_READ_oFFs_SUPPORTED
  459. #  define PNG_oFFs_SUPPORTED
  460. #endif
  461. #ifndef PNG_NO_READ_pCAL
  462. #  define PNG_READ_pCAL_SUPPORTED
  463. #  define PNG_pCAL_SUPPORTED
  464. #endif
  465. #ifndef PNG_NO_READ_sCAL
  466. #  define PNG_READ_sCAL_SUPPORTED
  467. #  define PNG_sCAL_SUPPORTED
  468. #endif
  469. #ifndef PNG_NO_READ_pHYs
  470. #  define PNG_READ_pHYs_SUPPORTED
  471. #  define PNG_pHYs_SUPPORTED
  472. #endif
  473. #ifndef PNG_NO_READ_sBIT
  474. #  define PNG_READ_sBIT_SUPPORTED
  475. #  define PNG_sBIT_SUPPORTED
  476. #endif
  477. #ifndef PNG_NO_READ_sPLT
  478. #  define PNG_READ_sPLT_SUPPORTED
  479. #  define PNG_sPLT_SUPPORTED
  480. #endif
  481. #ifndef PNG_NO_READ_sRGB
  482. #  define PNG_READ_sRGB_SUPPORTED
  483. #  define PNG_sRGB_SUPPORTED
  484. #endif
  485. #ifndef PNG_NO_READ_tEXt
  486. #  define PNG_READ_tEXt_SUPPORTED
  487. #  define PNG_tEXt_SUPPORTED
  488. #endif
  489. #ifndef PNG_NO_READ_tIME
  490. #  define PNG_READ_tIME_SUPPORTED
  491. #  define PNG_tIME_SUPPORTED
  492. #endif
  493. #ifndef PNG_NO_READ_tRNS
  494. #  define PNG_READ_tRNS_SUPPORTED
  495. #  define PNG_tRNS_SUPPORTED
  496. #endif
  497. #ifndef PNG_NO_READ_zTXt
  498. #  define PNG_READ_zTXt_SUPPORTED
  499. #  define PNG_zTXt_SUPPORTED
  500. #endif
  501. #ifndef PNG_NO_READ_USER_CHUNKS
  502. #  define PNG_READ_USER_CHUNKS_SUPPORTED
  503. #  define PNG_USER_CHUNKS_SUPPORTED
  504. #  ifdef PNG_NO_READ_UNKNOWN_CHUNKS
  505. #    undef PNG_NO_READ_UNKNOWN_CHUNKS
  506. #  endif
  507. #  ifdef PNG_NO_HANDLE_AS_UNKNOWN
  508. #    undef PNG_NO_HANDLE_AS_UNKNOWN
  509. #  endif
  510. #endif
  511. #ifndef PNG_NO_READ_UNKNOWN_CHUNKS
  512. #  define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
  513. #  define PNG_UNKNOWN_CHUNKS_SUPPORTED
  514. #  ifndef PNG_NO_HANDLE_AS_UNKNOWN
  515. #    define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  516. #  endif
  517. #endif
  518. #ifndef PNG_NO_READ_OPT_PLTE
  519. #  define PNG_READ_OPT_PLTE_SUPPORTED /* only affects support of the */
  520. #endif                      /* optional PLTE chunk in RGB and RGBA images */
  521. #if defined(PNG_READ_iTXt_SUPPORTED) || defined(PNG_READ_tEXt_SUPPORTED) || 
  522.   defined(PNG_READ_zTXt_SUPPORTED)
  523. #  define PNG_READ_TEXT_SUPPORTED
  524. #  define PNG_TEXT_SUPPORTED
  525. #endif
  526. #endif /* PNG_READ_ANCILLARY_CHUNKS_SUPPORTED */
  527. #ifdef PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
  528. #ifdef PNG_NO_WRITE_TEXT
  529. #  define PNG_NO_WRITE_iTXt
  530. #  define PNG_NO_WRITE_tEXt
  531. #  define PNG_NO_WRITE_zTXt
  532. #endif
  533. #ifndef PNG_NO_WRITE_bKGD
  534. #  define PNG_WRITE_bKGD_SUPPORTED
  535. #  ifndef PNG_bKGD_SUPPORTED
  536. #    define PNG_bKGD_SUPPORTED
  537. #  endif
  538. #endif
  539. #ifndef PNG_NO_WRITE_cHRM
  540. #  define PNG_WRITE_cHRM_SUPPORTED
  541. #  ifndef PNG_cHRM_SUPPORTED
  542. #    define PNG_cHRM_SUPPORTED
  543. #  endif
  544. #endif
  545. #ifndef PNG_NO_WRITE_gAMA
  546. #  define PNG_WRITE_gAMA_SUPPORTED
  547. #  ifndef PNG_gAMA_SUPPORTED
  548. #    define PNG_gAMA_SUPPORTED
  549. #  endif
  550. #endif
  551. #ifndef PNG_NO_WRITE_hIST
  552. #  define PNG_WRITE_hIST_SUPPORTED
  553. #  ifndef PNG_hIST_SUPPORTED
  554. #    define PNG_hIST_SUPPORTED
  555. #  endif
  556. #endif
  557. #ifndef PNG_NO_WRITE_iCCP
  558. #  define PNG_WRITE_iCCP_SUPPORTED
  559. #  ifndef PNG_iCCP_SUPPORTED
  560. #    define PNG_iCCP_SUPPORTED
  561. #  endif
  562. #endif
  563. #ifndef PNG_NO_WRITE_iTXt
  564. #  define PNG_WRITE_iTXt_SUPPORTED
  565. #  ifndef PNG_iTXt_SUPPORTED
  566. #    define PNG_iTXt_SUPPORTED
  567. #  endif
  568. #endif
  569. #ifndef PNG_NO_WRITE_oFFs
  570. #  define PNG_WRITE_oFFs_SUPPORTED
  571. #  ifndef PNG_oFFs_SUPPORTED
  572. #    define PNG_oFFs_SUPPORTED
  573. #  endif
  574. #endif
  575. #ifndef PNG_NO_WRITE_pCAL
  576. #  define PNG_WRITE_pCAL_SUPPORTED
  577. #  ifndef PNG_pCAL_SUPPORTED
  578. #    define PNG_pCAL_SUPPORTED
  579. #  endif
  580. #endif
  581. #ifndef PNG_NO_WRITE_sCAL
  582. #  define PNG_WRITE_sCAL_SUPPORTED
  583. #  ifndef PNG_sCAL_SUPPORTED
  584. #    define PNG_sCAL_SUPPORTED
  585. #  endif
  586. #endif
  587. #ifndef PNG_NO_WRITE_pHYs
  588. #  define PNG_WRITE_pHYs_SUPPORTED
  589. #  ifndef PNG_pHYs_SUPPORTED
  590. #    define PNG_pHYs_SUPPORTED
  591. #  endif
  592. #endif
  593. #ifndef PNG_NO_WRITE_sBIT
  594. #  define PNG_WRITE_sBIT_SUPPORTED
  595. #  ifndef PNG_sBIT_SUPPORTED
  596. #    define PNG_sBIT_SUPPORTED
  597. #  endif
  598. #endif
  599. #ifndef PNG_NO_WRITE_sPLT
  600. #  define PNG_WRITE_sPLT_SUPPORTED
  601. #  ifndef PNG_sPLT_SUPPORTED
  602. #    define PNG_sPLT_SUPPORTED
  603. #  endif
  604. #endif
  605. #ifndef PNG_NO_WRITE_sRGB
  606. #  define PNG_WRITE_sRGB_SUPPORTED
  607. #  ifndef PNG_sRGB_SUPPORTED
  608. #    define PNG_sRGB_SUPPORTED
  609. #  endif
  610. #endif
  611. #ifndef PNG_NO_WRITE_tEXt
  612. #  define PNG_WRITE_tEXt_SUPPORTED
  613. #  ifndef PNG_tEXt_SUPPORTED
  614. #    define PNG_tEXt_SUPPORTED
  615. #  endif
  616. #endif
  617. #ifndef PNG_NO_WRITE_tIME
  618. #  define PNG_WRITE_tIME_SUPPORTED
  619. #  ifndef PNG_tIME_SUPPORTED
  620. #    define PNG_tIME_SUPPORTED
  621. #  endif
  622. #endif
  623. #ifndef PNG_NO_WRITE_tRNS
  624. #  define PNG_WRITE_tRNS_SUPPORTED
  625. #  ifndef PNG_tRNS_SUPPORTED
  626. #    define PNG_tRNS_SUPPORTED
  627. #  endif
  628. #endif
  629. #ifndef PNG_NO_WRITE_zTXt
  630. #  define PNG_WRITE_zTXt_SUPPORTED
  631. #  ifndef PNG_zTXt_SUPPORTED
  632. #    define PNG_zTXt_SUPPORTED
  633. #  endif
  634. #endif
  635. #ifndef PNG_NO_WRITE_UNKNOWN_CHUNKS
  636. #  define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
  637. #  ifndef PNG_UNKNOWN_CHUNKS_SUPPORTED
  638. #    define PNG_UNKNOWN_CHUNKS_SUPPORTED
  639. #  endif
  640. #  ifndef PNG_NO_HANDLE_AS_UNKNOWN
  641. #     ifndef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  642. #       define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  643. #     endif
  644. #  endif
  645. #endif
  646. #if defined(PNG_WRITE_iTXt_SUPPORTED) || defined(PNG_WRITE_tEXt_SUPPORTED) || 
  647.   defined(PNG_WRITE_zTXt_SUPPORTED)
  648. #  define PNG_WRITE_TEXT_SUPPORTED
  649. #  ifndef PNG_TEXT_SUPPORTED
  650. #    define PNG_TEXT_SUPPORTED
  651. #  endif
  652. #endif
  653. #endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */
  654. /* Turn this off to disable png_read_png() and
  655.  * png_write_png() and leave the row_pointers member
  656.  * out of the info structure.
  657.  */
  658. #ifndef PNG_NO_INFO_IMAGE
  659. #  define PNG_INFO_IMAGE_SUPPORTED
  660. #endif
  661. /* need the time information for reading tIME chunks */
  662. #if defined(PNG_tIME_SUPPORTED)
  663. #  include <time.h>
  664. #endif
  665. /* Some typedefs to get us started.  These should be safe on most of the
  666.  * common platforms.  The typedefs should be at least as large as the
  667.  * numbers suggest (a png_uint_32 must be at least 32 bits long), but they
  668.  * don't have to be exactly that size.  Some compilers dislike passing
  669.  * unsigned shorts as function parameters, so you may be better off using
  670.  * unsigned int for png_uint_16.  Likewise, for 64-bit systems, you may
  671.  * want to have unsigned int for png_uint_32 instead of unsigned long.
  672.  */
  673. typedef unsigned long png_uint_32;
  674. typedef long png_int_32;
  675. typedef unsigned short png_uint_16;
  676. typedef short png_int_16;
  677. typedef unsigned char png_byte;
  678. /* This is usually size_t.  It is typedef'ed just in case you need it to
  679.    change (I'm not sure if you will or not, so I thought I'd be safe) */
  680. typedef size_t png_size_t;
  681. /* The following is needed for medium model support.  It cannot be in the
  682.  * PNG_INTERNAL section.  Needs modification for other compilers besides
  683.  * MSC.  Model independent support declares all arrays and pointers to be
  684.  * large using the far keyword.  The zlib version used must also support
  685.  * model independent data.  As of version zlib 1.0.4, the necessary changes
  686.  * have been made in zlib.  The USE_FAR_KEYWORD define triggers other
  687.  * changes that are needed. (Tim Wegner)
  688.  */
  689. /* Separate compiler dependencies (problem here is that zlib.h always
  690.    defines FAR. (SJT) */
  691. #ifdef __BORLANDC__
  692. #if defined(__LARGE__) || defined(__HUGE__) || defined(__COMPACT__)
  693. #define LDATA 1
  694. #else
  695. #define LDATA 0
  696. #endif
  697. #if !defined(__WIN32__) && !defined(__FLAT__)
  698. #define PNG_MAX_MALLOC_64K
  699. #if (LDATA != 1)
  700. #ifndef FAR
  701. #define FAR __far
  702. #endif
  703. #define USE_FAR_KEYWORD
  704. #endif   /* LDATA != 1 */
  705. /* Possibly useful for moving data out of default segment.
  706.  * Uncomment it if you want. Could also define FARDATA as
  707.  * const if your compiler supports it. (SJT)
  708. #  define FARDATA FAR
  709.  */
  710. #endif  /* __WIN32__, __FLAT__ */
  711. #endif   /* __BORLANDC__ */
  712. /* Suggest testing for specific compiler first before testing for
  713.  * FAR.  The Watcom compiler defines both __MEDIUM__ and M_I86MM,
  714.  * making reliance oncertain keywords suspect. (SJT)
  715.  */
  716. /* MSC Medium model */
  717. #if defined(FAR)
  718. #  if defined(M_I86MM)
  719. #     define USE_FAR_KEYWORD
  720. #     define FARDATA FAR
  721. #     include <dos.h>
  722. #  endif
  723. #endif
  724. /* SJT: default case */
  725. #ifndef FAR
  726. #   define FAR
  727. #endif
  728. /* At this point FAR is always defined */
  729. #ifndef FARDATA
  730. #define FARDATA
  731. #endif
  732. /* Typedef for floating-point numbers that are converted
  733.    to fixed-point with a multiple of 100,000, e.g., int_gamma */
  734. typedef png_int_32 png_fixed_point;
  735. /* Add typedefs for pointers */
  736. typedef void            FAR * png_voidp;
  737. typedef png_byte        FAR * png_bytep;
  738. typedef png_uint_32     FAR * png_uint_32p;
  739. typedef png_int_32      FAR * png_int_32p;
  740. typedef png_uint_16     FAR * png_uint_16p;
  741. typedef png_int_16      FAR * png_int_16p;
  742. typedef PNG_CONST char  FAR * png_const_charp;
  743. typedef char            FAR * png_charp;
  744. typedef png_fixed_point FAR * png_fixed_point_p;
  745. #ifdef PNG_FLOATING_POINT_SUPPORTED
  746. typedef double          FAR * png_doublep;
  747. #endif
  748. /* Pointers to pointers; i.e. arrays */
  749. typedef png_byte        FAR * FAR * png_bytepp;
  750. typedef png_uint_32     FAR * FAR * png_uint_32pp;
  751. typedef png_int_32      FAR * FAR * png_int_32pp;
  752. typedef png_uint_16     FAR * FAR * png_uint_16pp;
  753. typedef png_int_16      FAR * FAR * png_int_16pp;
  754. typedef PNG_CONST char  FAR * FAR * png_const_charpp;
  755. typedef char            FAR * FAR * png_charpp;
  756. typedef png_fixed_point FAR * FAR * png_fixed_point_pp;
  757. #ifdef PNG_FLOATING_POINT_SUPPORTED
  758. typedef double          FAR * FAR * png_doublepp;
  759. #endif
  760. /* Pointers to pointers to pointers; i.e. pointer to array */
  761. typedef char            FAR * FAR * FAR * png_charppp;
  762. /* libpng typedefs for types in zlib. If zlib changes
  763.  * or another compression library is used, then change these.
  764.  * Eliminates need to change all the source files.
  765.  */
  766. typedef charf *         png_zcharp;
  767. typedef charf * FAR *   png_zcharpp;
  768. typedef z_stream FAR *  png_zstreamp;
  769. #ifndef PNG_EXPORT
  770.    /* GRR 20000206:  based on zconf.h and MSVC 5.0 docs */
  771. #  if defined(_MSC_VER) && defined(_DLL)
  772. #    define PNG_EXPORT(type,symbol)        type __declspec(dllexport) symbol
  773. #  endif
  774.    /* allow for compilation as a DLL under MS Windows */
  775. #  ifdef __WIN32DLL__ /* Borland? */
  776. #    define PNG_EXPORT(type,symbol) __declspec(dllexport) type symbol
  777. #  endif
  778.    /* this variant is used in Mozilla; may correspond to MSVC++ 6.0 changes */
  779. #  ifdef ALT_WIN32_DLL
  780. #    define PNG_EXPORT(type,symbol) type __attribute__((dllexport)) symbol
  781. #  endif
  782.    /* allow for compilation as a DLL with Borland C++ 5.0 */
  783. #  if defined(__BORLANDC__) && defined(_Windows) && defined(__DLL__)
  784. #    define PNG_EXPORT(type,symbol) type _export symbol
  785. #  endif
  786.    /* allow for compilation as shared lib under BeOS */
  787. #  ifdef __BEOSDLL__
  788. #    define PNG_EXPORT(type,symbol) __declspec(export) type symbol
  789. #  endif
  790. #endif
  791. #ifndef PNG_EXPORT
  792. #  define PNG_EXPORT(type,symbol) type symbol
  793. #endif
  794. #if defined(__MINGW32__) || defined(__CYGWIN32__)
  795. #  define PNG_ATTR_DLLIMP
  796. #endif
  797. #ifndef PNG_EXPORT_VAR
  798. #  if defined(_MSC_VER) && defined(_DLL) /* GRR 20000206 */
  799. #    define PNG_EXPORT_VAR(type) extern type __declspec(dllexport)
  800. #  endif
  801. #  ifdef PNG_DECL_DLLEXP
  802. #    define PNG_EXPORT_VAR(type) extern __declspec(dllexport) type
  803. #  endif
  804. #  ifdef PNG_ATTR_DLLEXP
  805. #    define PNG_EXPORT_VAR(type) extern type __attribute__((dllexport))
  806. #  endif
  807. #  ifdef PNG_DECL_DLLIMP
  808. #    define PNG_EXPORT_VAR(type) extern __declspec(dllimport) type
  809. #  endif
  810. #  ifdef PNG_ATTR_DLLIMP
  811. #    define PNG_EXPORT_VAR(type) extern type __attribute__((dllimport))
  812. #  endif
  813. #endif
  814. #ifndef PNG_EXPORT_VAR
  815. #    define PNG_EXPORT_VAR(type) extern type
  816. #endif
  817. /* User may want to use these so not in PNG_INTERNAL. Any library functions
  818.  * that are passed far data must be model independent.
  819.  */
  820. #ifndef PNG_ABORT
  821. #   define PNG_ABORT() abort()
  822. #endif
  823. #ifdef PNG_SETJMP_SUPPORTED
  824. #   define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf)
  825. #else
  826. #   define png_jmpbuf(png_ptr) 
  827.     (LIBPNG_WAS_COMPILED_WITH__PNG_SETJMP_NOT_SUPPORTED)
  828. #endif
  829. #if defined(USE_FAR_KEYWORD)  /* memory model independent fns */
  830. /* use this to make far-to-near assignments */
  831. #   define CHECK   1
  832. #   define NOCHECK 0
  833. #   define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
  834. #   define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK))
  835. #   define png_strcpy _fstrcpy
  836. #   define png_strlen _fstrlen
  837. #   define png_memcmp _fmemcmp      /* SJT: added */
  838. #   define png_memcpy _fmemcpy
  839. #   define png_memset _fmemset
  840. #else /* use the usual functions */
  841. #   define CVT_PTR(ptr)         (ptr)
  842. #   define CVT_PTR_NOCHECK(ptr) (ptr)
  843. #   define png_strcpy strcpy
  844. #   define png_strlen strlen
  845. #   define png_memcmp memcmp     /* SJT: added */
  846. #   define png_memcpy memcpy
  847. #   define png_memset memset
  848. #endif
  849. /* End of memory model independent support */
  850. /* Just a little check that someone hasn't tried to define something
  851.  * contradictory.
  852.  */
  853. #if (PNG_ZBUF_SIZE > 65536) && defined(PNG_MAX_MALLOC_64K)
  854. #undef PNG_ZBUF_SIZE
  855. #define PNG_ZBUF_SIZE 65536
  856. #endif
  857. #endif /* PNGCONF_H */