18 #ifndef MAGICKCORE_MAGICK_TYPE_H
19 #define MAGICKCORE_MAGICK_TYPE_H
23 #if MAGICKCORE_HAVE_UINTPTR_T
27 #if defined(__cplusplus) || defined(c_plusplus)
31 #if !defined(MAGICKCORE_QUANTUM_DEPTH)
32 #define MAGICKCORE_QUANTUM_DEPTH 16
35 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && !defined(__MINGW32__)
36 # define MagickLLConstant(c) ((MagickOffsetType) (c ## i64))
37 # define MagickULLConstant(c) ((MagickSizeType) (c ## ui64))
39 # define MagickLLConstant(c) ((MagickOffsetType) (c ## LL))
40 # define MagickULLConstant(c) ((MagickSizeType) (c ## ULL))
43 #if MAGICKCORE_SIZEOF_FLOAT_T == 0
45 #elif (MAGICKCORE_SIZEOF_FLOAT_T == MAGICKCORE_SIZEOF_FLOAT)
47 #elif (MAGICKCORE_SIZEOF_FLOAT_T == MAGICKCORE_SIZEOF_DOUBLE)
49 #elif (MAGICKCORE_SIZEOF_FLOAT_T == MAGICKCORE_SIZEOF_LONG_DOUBLE)
52 #error Your MagickFloatType type is neither a float, nor a double, nor a long double
54 #if MAGICKCORE_SIZEOF_DOUBLE_T == 0
56 #elif (MAGICKCORE_SIZEOF_DOUBLE_T == MAGICKCORE_SIZEOF_DOUBLE)
58 #elif (MAGICKCORE_SIZEOF_DOUBLE_T == MAGICKCORE_SIZEOF_LONG_DOUBLE)
61 #error Your MagickDoubleType type is neither a float, nor a double, nor a long double
64 #if (MAGICKCORE_QUANTUM_DEPTH == 8)
65 #define MaxColormapSize 256UL
68 #if defined(MAGICKCORE_HDRI_SUPPORT)
69 typedef MagickFloatType
Quantum;
70 #define QuantumRange 255.0
71 #define QuantumFormat "%g"
74 #define QuantumRange ((Quantum) 255)
75 #define QuantumFormat "%u"
77 #elif (MAGICKCORE_QUANTUM_DEPTH == 16)
78 #define MaxColormapSize 65536UL
79 #define MaxMap 65535UL
81 #if defined(MAGICKCORE_HDRI_SUPPORT)
82 typedef MagickFloatType
Quantum;
83 #define QuantumRange 65535.0f
84 #define QuantumFormat "%g"
87 #define QuantumRange ((Quantum) 65535)
88 #define QuantumFormat "%u"
90 #elif (MAGICKCORE_QUANTUM_DEPTH == 32)
91 #define MaxColormapSize 65536UL
92 #define MaxMap 65535UL
94 #if defined(MAGICKCORE_HDRI_SUPPORT)
95 typedef MagickDoubleType
Quantum;
96 #define QuantumRange 4294967295.0
97 #define QuantumFormat "%g"
100 #define QuantumRange ((Quantum) 4294967295)
101 #define QuantumFormat "%u"
103 #elif (MAGICKCORE_QUANTUM_DEPTH == 64)
104 #define MAGICKCORE_HDRI_SUPPORT 1
105 #define MaxColormapSize 65536UL
106 #define MaxMap 65535UL
108 typedef MagickDoubleType
Quantum;
109 #define QuantumRange 18446744073709551615.0
110 #define QuantumFormat "%g"
112 #error "MAGICKCORE_QUANTUM_DEPTH must be one of 8, 16, 32, or 64"
114 #define MagickEpsilon 1.0e-12
115 #define MagickMaximumValue 1.79769313486231570E+308
116 #define MagickMinimumValue 2.22507385850720140E-308
117 #define MagickStringify(macro_or_string) MagickStringifyArg(macro_or_string)
118 #define MagickStringifyArg(contents) #contents
119 #define QuantumScale ((double) 1.0/(double) QuantumRange)
126 #if !defined(MAGICKCORE_WINDOWS_SUPPORT)
127 #if (MAGICKCORE_SIZEOF_UNSIGNED_LONG_LONG == 8)
130 #define MagickOffsetFormat "lld"
131 #define MagickSizeFormat "llu"
135 #define MagickOffsetFormat "ld"
136 #define MagickSizeFormat "lu"
141 #define MagickOffsetFormat "I64i"
142 #define MagickSizeFormat "I64u"
145 #if MAGICKCORE_HAVE_UINTPTR_T || defined(uintptr_t)
152 #if defined(_MSC_VER) && (_MSC_VER == 1200)
158 #if defined(macintosh)
159 #define ExceptionInfo MagickExceptionInfo
186 #if defined(MAGICKCORE_HAVE_ISNAN)
187 # define IsNaN(a) isnan(a)
188 #elif defined(_MSC_VER) && (_MSC_VER >= 1310)
190 # define IsNaN(a) _isnan(a)
192 # define IsNaN(a) ((a) != (a))
194 #if !defined(INFINITY)
195 # define INFINITY ((double) -logf(0f))
206 #if defined(__cplusplus) || defined(c_plusplus)
MagickDoubleType MagickRealType
Definition: magick-type.h:124
double MagickDoubleType
Definition: magick-type.h:55
Definition: exception.h:101
Definition: magick-type.h:165
float MagickFloatType
Definition: magick-type.h:44
ssize_t MagickOffsetType
Definition: magick-type.h:133
MagickBooleanType
Definition: magick-type.h:169
unsigned int MagickStatusType
Definition: magick-type.h:125
ClassType
Definition: magick-type.h:162
Definition: magick-type.h:172
size_t MagickSizeType
Definition: magick-type.h:134
Definition: magick-type.h:171
unsigned short Quantum
Definition: magick-type.h:86
Definition: magick-type.h:164
Definition: magick-type.h:166
size_t MagickAddressType
Definition: magick-type.h:149
MagickSizeType QuantumAny
Definition: magick-type.h:155