MagickCore 6.9.11-60
Convert, Edit, Or Compose Bitmap Images
image-private.h
Go to the documentation of this file.
1/*
2 Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
3 dedicated to making software imaging solutions freely available.
4
5 You may not use this file except in compliance with the License. You may
6 obtain a copy of the License at
7
8 https://imagemagick.org/script/license.php
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 MagickCore image private methods.
17*/
18#ifndef MAGICKCORE_IMAGE_PRIVATE_H
19#define MAGICKCORE_IMAGE_PRIVATE_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
25#define BackgroundColor "#ffffff" /* white */
26#define BorderColor "#dfdfdf" /* gray */
27#define DefaultResolution 72.0
28#define DefaultTileFrame "15x15+3+3"
29#define DefaultTileGeometry "120x120+4+3>"
30#define DefaultTileLabel "%f\n%G\n%b"
31#define ForegroundColor "#000" /* black */
32#define LoadImagesTag "Load/Images"
33#define LoadImageTag "Load/Image"
34#define Magick2PI 6.28318530717958647692528676655900576839433879875020
35#define MagickAbsoluteValue(x) ((x) < 0 ? -(x) : (x))
36#define MagickMax(x,y) (((x) > (y)) ? (x) : (y))
37#define MagickMin(x,y) (((x) < (y)) ? (x) : (y))
38#define MAGICK_INT_MAX (INT_MAX)
39#define MagickPHI 1.61803398874989484820458683436563811772030917980576
40#define MagickPI2 1.57079632679489661923132169163975144209858469968755
41#define MagickPI 3.14159265358979323846264338327950288419716939937510
42#define MAGICK_PTRDIFF_MAX (PTRDIFF_MAX)
43#define MAGICK_PTRDIFF_MIN (-PTRDIFF_MAX-1)
44#define MagickSQ1_2 0.70710678118654752440084436210484903928483593768847
45#define MagickSQ2 1.41421356237309504880168872420969807856967187537695
46#define MagickSQ2PI 2.50662827463100024161235523934010416269302368164062
47#define MAGICK_SIZE_MAX (SIZE_MAX)
48#define MAGICK_SSIZE_MAX (SSIZE_MAX)
49#define MAGICK_SSIZE_MIN (-(SSIZE_MAX)-1)
50#define MAGICK_UCHAR_MAX (UCHAR_MAX)
51#define MAGICK_USHORT_MAX (USHRT_MAX)
52#define MatteColor "#bdbdbd" /* gray */
53#define PSDensityGeometry "72.0x72.0"
54#define PSPageGeometry "612x792"
55#define SaveImagesTag "Save/Images"
56#define SaveImageTag "Save/Image"
57#define TransparentColor "#00000000" /* transparent black */
58#define UndefinedCompressionQuality 0UL
59#define UndefinedTicksPerSecond 100L
60
61static inline int CastDoubleToInt(const double x)
62{
63 double
64 value;
65
66 if (IsNaN(x) != 0)
67 {
68 errno=ERANGE;
69 return(0);
70 }
71 value=(x < 0.0) ? ceil(x) : floor(x);
72 if (value < 0.0)
73 {
74 errno=ERANGE;
75 return(0);
76 }
77 if (value >= ((double) MAGICK_INT_MAX))
78 {
79 errno=ERANGE;
80 return(MAGICK_INT_MAX);
81 }
82 return((int) value);
83}
84
85static inline ssize_t CastDoubleToLong(const double x)
86{
87 double
88 value;
89
90 if (IsNaN(x) != 0)
91 {
92 errno=ERANGE;
93 return(0);
94 }
95 value=(x < 0.0) ? ceil(x) : floor(x);
96 if (value < ((double) MAGICK_SSIZE_MIN))
97 {
98 errno=ERANGE;
99 return(MAGICK_SSIZE_MIN);
100 }
101 if (value >= ((double) MAGICK_SSIZE_MAX))
102 {
103 errno=ERANGE;
104 return(MAGICK_SSIZE_MAX);
105 }
106 return((ssize_t) value);
107}
108
109static inline QuantumAny CastDoubleToQuantumAny(const double x)
110{
111 double
112 value;
113
114 if (IsNaN(x) != 0)
115 {
116 errno=ERANGE;
117 return(0);
118 }
119 value=(x < 0.0) ? ceil(x) : floor(x);
120 if (value < 0.0)
121 {
122 errno=ERANGE;
123 return(0);
124 }
125 if (value >= ((double) ((QuantumAny) ~0)))
126 {
127 errno=ERANGE;
128 return((QuantumAny) ~0);
129 }
130 return((QuantumAny) value);
131}
132
133static inline size_t CastDoubleToSizeT(const double x)
134{
135 double
136 value;
137
138 if (IsNaN(x) != 0)
139 {
140 errno=ERANGE;
141 return(0);
142 }
143 value=(x < 0.0) ? ceil(x) : floor(x);
144 if (value < 0.0)
145 {
146 errno=ERANGE;
147 return(0);
148 }
149 if (value >= ((double) MAGICK_SIZE_MAX))
150 {
151 errno=ERANGE;
152 return(MAGICK_SIZE_MAX);
153 }
154 return((size_t) value);
155}
156
157static inline ssize_t CastDoubleToSsizeT(const double x)
158{
159 double
160 value;
161
162 if (IsNaN(x) != 0)
163 {
164 errno=ERANGE;
165 return(0);
166 }
167 value=(x < 0.0) ? ceil(x) : floor(x);
168 if (value < ((double) MAGICK_SSIZE_MIN))
169 {
170 errno=ERANGE;
171 return(MAGICK_SSIZE_MIN);
172 }
173 if (value >= ((double) MAGICK_SSIZE_MAX))
174 {
175 errno=ERANGE;
176 return(MAGICK_SSIZE_MAX);
177 }
178 return((ssize_t) value);
179}
180
181static inline unsigned char CastDoubleToUChar(const double x)
182{
183 double
184 value;
185
186 if (IsNaN(x) != 0)
187 {
188 errno=ERANGE;
189 return(0);
190 }
191 value=(x < 0.0) ? ceil(x) : floor(x);
192 if (value < 0.0)
193 {
194 errno=ERANGE;
195 return(0);
196 }
197 if (value >= ((double) MAGICK_UCHAR_MAX))
198 {
199 errno=ERANGE;
200 return(MAGICK_UCHAR_MAX);
201 }
202 return((unsigned char) value);
203}
204
205static inline unsigned short CastDoubleToUShort(const double x)
206{
207 double
208 value;
209
210 if (IsNaN(x) != 0)
211 {
212 errno=ERANGE;
213 return(0);
214 }
215 value=(x < 0.0) ? ceil(x) : floor(x);
216 if (value < 0.0)
217 {
218 errno=ERANGE;
219 return(0);
220 }
221 if (value >= ((double) MAGICK_USHORT_MAX))
222 {
223 errno=ERANGE;
224 return(MAGICK_USHORT_MAX);
225 }
226 return((unsigned short) value);
227}
228
229static inline size_t CastDoubleToUnsigned(const double x)
230{
231 double
232 value;
233
234 if (IsNaN(x) != 0)
235 {
236 errno=ERANGE;
237 return(0);
238 }
239 value=(x < 0.0) ? ceil(x) : floor(x);
240 if (value < 0.0)
241 {
242 errno=ERANGE;
243 return(0);
244 }
245 if (value >= ((double) MAGICK_SIZE_MAX))
246 {
247 errno=ERANGE;
248 return(MAGICK_SIZE_MAX);
249 }
250 return((size_t) value);
251}
252
253static inline double DegreesToRadians(const double degrees)
254{
255 return((double) (MagickPI*degrees/180.0));
256}
257
259{
260 return((MagickRealType) (180.0*radians/MagickPI));
261}
262
263static inline unsigned char ScaleColor5to8(const unsigned int color)
264{
265 return((unsigned char) (((color) << 3) | ((color) >> 2)));
266}
267
268static inline unsigned char ScaleColor6to8(const unsigned int color)
269{
270 return((unsigned char) (((color) << 2) | ((color) >> 4)));
271}
272
273static inline unsigned int ScaleColor8to5(const unsigned char color)
274{
275 return((unsigned int) (((color) & ~0x07) >> 3));
276}
277
278static inline unsigned int ScaleColor8to6(const unsigned char color)
279{
280 return((unsigned int) (((color) & ~0x03) >> 2));
281}
282
283#if defined(__cplusplus) || defined(c_plusplus)
284}
285#endif
286
287#endif
#define MAGICK_UCHAR_MAX
Definition: image-private.h:50
static size_t CastDoubleToSizeT(const double x)
Definition: image-private.h:133
static ssize_t CastDoubleToLong(const double x)
Definition: image-private.h:85
static unsigned int ScaleColor8to6(const unsigned char color)
Definition: image-private.h:278
static int CastDoubleToInt(const double x)
Definition: image-private.h:61
static unsigned char ScaleColor6to8(const unsigned int color)
Definition: image-private.h:268
static unsigned short CastDoubleToUShort(const double x)
Definition: image-private.h:205
#define MAGICK_SSIZE_MAX
Definition: image-private.h:48
static ssize_t CastDoubleToSsizeT(const double x)
Definition: image-private.h:157
static unsigned int ScaleColor8to5(const unsigned char color)
Definition: image-private.h:273
static MagickRealType RadiansToDegrees(const MagickRealType radians)
Definition: image-private.h:258
static unsigned char CastDoubleToUChar(const double x)
Definition: image-private.h:181
#define MAGICK_USHORT_MAX
Definition: image-private.h:51
static size_t CastDoubleToUnsigned(const double x)
Definition: image-private.h:229
static double DegreesToRadians(const double degrees)
Definition: image-private.h:253
static QuantumAny CastDoubleToQuantumAny(const double x)
Definition: image-private.h:109
#define MAGICK_SSIZE_MIN
Definition: image-private.h:49
static unsigned char ScaleColor5to8(const unsigned int color)
Definition: image-private.h:263
#define MagickPI
Definition: image-private.h:41
#define MAGICK_INT_MAX
Definition: image-private.h:38
#define MAGICK_SIZE_MAX
Definition: image-private.h:47
MagickDoubleType MagickRealType
Definition: magick-type.h:129
MagickSizeType QuantumAny
Definition: magick-type.h:161
#define IsNaN(a)
Definition: magick-type.h:225