tiffconf.h.in 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. Configuration defines for installed libtiff.
  3. This file maintained for backward compatibility. Do not use definitions
  4. from this file in your programs.
  5. */
  6. #ifndef _TIFFCONF_
  7. #define _TIFFCONF_
  8. /* Signed 16-bit type */
  9. #undef TIFF_INT16_T
  10. /* Signed 32-bit type */
  11. #undef TIFF_INT32_T
  12. /* Signed 64-bit type */
  13. #undef TIFF_INT64_T
  14. /* Signed 8-bit type */
  15. #undef TIFF_INT8_T
  16. /* Unsigned 16-bit type */
  17. #undef TIFF_UINT16_T
  18. /* Unsigned 32-bit type */
  19. #undef TIFF_UINT32_T
  20. /* Unsigned 64-bit type */
  21. #undef TIFF_UINT64_T
  22. /* Unsigned 8-bit type */
  23. #undef TIFF_UINT8_T
  24. /* Signed size type */
  25. #undef TIFF_SSIZE_T
  26. /* Pointer difference type */
  27. #undef TIFF_PTRDIFF_T
  28. /* Define to 1 if the system has the type `int16'. */
  29. #undef HAVE_INT16
  30. /* Define to 1 if the system has the type `int32'. */
  31. #undef HAVE_INT32
  32. /* Define to 1 if the system has the type `int8'. */
  33. #undef HAVE_INT8
  34. /* Compatibility stuff. */
  35. /* Define as 0 or 1 according to the floating point format suported by the
  36. machine */
  37. #undef HAVE_IEEEFP
  38. /* Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB) */
  39. #undef HOST_FILLORDER
  40. /* Native cpu byte order: 1 if big-endian (Motorola) or 0 if little-endian
  41. (Intel) */
  42. #undef HOST_BIGENDIAN
  43. /* Support CCITT Group 3 & 4 algorithms */
  44. #undef CCITT_SUPPORT
  45. /* Support JPEG compression (requires IJG JPEG library) */
  46. #undef JPEG_SUPPORT
  47. /* Support JBIG compression (requires JBIG-KIT library) */
  48. #undef JBIG_SUPPORT
  49. /* Support LogLuv high dynamic range encoding */
  50. #undef LOGLUV_SUPPORT
  51. /* Support LZW algorithm */
  52. #undef LZW_SUPPORT
  53. /* Support NeXT 2-bit RLE algorithm */
  54. #undef NEXT_SUPPORT
  55. /* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
  56. fails with unpatched IJG JPEG library) */
  57. #undef OJPEG_SUPPORT
  58. /* Support Macintosh PackBits algorithm */
  59. #undef PACKBITS_SUPPORT
  60. /* Support Pixar log-format algorithm (requires Zlib) */
  61. #undef PIXARLOG_SUPPORT
  62. /* Support ThunderScan 4-bit RLE algorithm */
  63. #undef THUNDER_SUPPORT
  64. /* Support Deflate compression */
  65. #undef ZIP_SUPPORT
  66. /* Support strip chopping (whether or not to convert single-strip uncompressed
  67. images to mutiple strips of ~8Kb to reduce memory usage) */
  68. #undef STRIPCHOP_DEFAULT
  69. /* Enable SubIFD tag (330) support */
  70. #undef SUBIFD_SUPPORT
  71. /* Treat extra sample as alpha (default enabled). The RGBA interface will
  72. treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Many
  73. packages produce RGBA files but don't mark the alpha properly. */
  74. #undef DEFAULT_EXTRASAMPLE_AS_ALPHA
  75. /* Pick up YCbCr subsampling info from the JPEG data stream to support files
  76. lacking the tag (default enabled). */
  77. #undef CHECK_JPEG_YCBCR_SUBSAMPLING
  78. /* Support MS MDI magic number files as TIFF */
  79. #undef MDI_SUPPORT
  80. /*
  81. * Feature support definitions.
  82. * XXX: These macros are obsoleted. Don't use them in your apps!
  83. * Macros stays here for backward compatibility and should be always defined.
  84. */
  85. #define COLORIMETRY_SUPPORT
  86. #define YCBCR_SUPPORT
  87. #define CMYK_SUPPORT
  88. #define ICC_SUPPORT
  89. #define PHOTOSHOP_SUPPORT
  90. #define IPTC_SUPPORT
  91. #endif /* _TIFFCONF_ */