MagickCore  6.9.10
Convert, Edit, Or Compose Bitmap Images
image-private.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2019 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.
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 #include <errno.h>
22 #include <limits.h>
23 #include <stdint.h>
24 
25 #if defined(__cplusplus) || defined(c_plusplus)
26 extern "C" {
27 #endif
28 
29 #define MagickAbsoluteValue(x) ((x) < 0 ? -(x) : (x))
30 #define MagickMax(x,y) (((x) > (y)) ? (x) : (y))
31 #define MagickMin(x,y) (((x) < (y)) ? (x) : (y))
32 #define MAGICK_INT_MAX (INT_MAX)
33 #define MagickPI 3.14159265358979323846264338327950288419716939937510
34 #define Magick2PI 6.28318530717958647692528676655900576839433879875020
35 #define MagickPHI 1.61803398874989484820458683436563811772030917980576
36 #define MagickPI2 1.57079632679489661923132169163975144209858469968755
37 #define MAGICK_PTRDIFF_MAX (PTRDIFF_MAX)
38 #define MAGICK_PTRDIFF_MIN (-PTRDIFF_MAX-1)
39 #define MagickSQ1_2 0.70710678118654752440084436210484903928483593768847
40 #define MagickSQ2 1.41421356237309504880168872420969807856967187537695
41 #define MagickSQ2PI 2.50662827463100024161235523934010416269302368164062
42 #define MAGICK_SIZE_MAX (SIZE_MAX)
43 #define MAGICK_SSIZE_MAX (SSIZE_MAX)
44 #define MAGICK_SSIZE_MIN (-(SSIZE_MAX)-1)
45 #define MAGICK_UCHAR_MAX (UCHAR_MAX)
46 #define MAGICK_USHORT_MAX (USHRT_MAX)
47 #define UndefinedTicksPerSecond 100L
48 #define UndefinedCompressionQuality 0UL
49 
50 extern MagickExport const char
52  BorderColor[],
57  MatteColor[],
58  LoadImageTag[],
59  LoadImagesTag[],
62  SaveImageTag[],
63  SaveImagesTag[];
64 
65 extern MagickExport const double
67 
68 
69 static inline int CastDoubleToInt(const double x)
70 {
71  double
72  value;
73 
74  if (IsNaN(x) != 0)
75  {
76  errno=ERANGE;
77  return(0);
78  }
79  value=(x < 0.0) ? ceil(x) : floor(x);
80  if (value < 0.0)
81  {
82  errno=ERANGE;
83  return(0);
84  }
85  if (value >= ((double) MAGICK_INT_MAX))
86  {
87  errno=ERANGE;
88  return(MAGICK_INT_MAX);
89  }
90  return((int) value);
91 }
92 
93 static inline ssize_t CastDoubleToLong(const double x)
94 {
95  double
96  value;
97 
98  if (IsNaN(x) != 0)
99  {
100  errno=ERANGE;
101  return(0);
102  }
103  value=(x < 0.0) ? ceil(x) : floor(x);
104  if (value < ((double) MAGICK_SSIZE_MIN))
105  {
106  errno=ERANGE;
107  return(MAGICK_SSIZE_MIN);
108  }
109  if (value >= ((double) MAGICK_SSIZE_MAX))
110  {
111  errno=ERANGE;
112  return(MAGICK_SSIZE_MAX);
113  }
114  return((ssize_t) value);
115 }
116 
117 static inline QuantumAny CastDoubleToQuantumAny(const double x)
118 {
119  double
120  value;
121 
122  if (IsNaN(x) != 0)
123  {
124  errno=ERANGE;
125  return(0);
126  }
127  value=(x < 0.0) ? ceil(x) : floor(x);
128  if (value < 0.0)
129  {
130  errno=ERANGE;
131  return(0);
132  }
133  if (value >= ((double) ((QuantumAny) ~0)))
134  {
135  errno=ERANGE;
136  return((QuantumAny) ~0);
137  }
138  return((QuantumAny) value);
139 }
140 
141 static inline size_t CastDoubleToSizeT(const double x)
142 {
143  double
144  value;
145 
146  if (IsNaN(x) != 0)
147  {
148  errno=ERANGE;
149  return(0);
150  }
151  value=(x < 0.0) ? ceil(x) : floor(x);
152  if (value < 0.0)
153  {
154  errno=ERANGE;
155  return(0);
156  }
157  if (value >= ((double) MAGICK_SIZE_MAX))
158  {
159  errno=ERANGE;
160  return(MAGICK_SIZE_MAX);
161  }
162  return((size_t) value);
163 }
164 
165 static inline ssize_t CastDoubleToSsizeT(const double x)
166 {
167  double
168  value;
169 
170  if (IsNaN(x) != 0)
171  {
172  errno=ERANGE;
173  return(0);
174  }
175  value=(x < 0.0) ? ceil(x) : floor(x);
176  if (value < ((double) MAGICK_SSIZE_MIN))
177  {
178  errno=ERANGE;
179  return(MAGICK_SSIZE_MIN);
180  }
181  if (value >= ((double) MAGICK_SSIZE_MAX))
182  {
183  errno=ERANGE;
184  return(MAGICK_SSIZE_MAX);
185  }
186  return((ssize_t) value);
187 }
188 
189 static inline unsigned char CastDoubleToUChar(const double x)
190 {
191  double
192  value;
193 
194  if (IsNaN(x) != 0)
195  {
196  errno=ERANGE;
197  return(0);
198  }
199  value=(x < 0.0) ? ceil(x) : floor(x);
200  if (value < 0.0)
201  {
202  errno=ERANGE;
203  return(0);
204  }
205  if (value >= ((double) MAGICK_UCHAR_MAX))
206  {
207  errno=ERANGE;
208  return(MAGICK_UCHAR_MAX);
209  }
210  return((unsigned char) value);
211 }
212 
213 static inline unsigned short CastDoubleToUShort(const double x)
214 {
215  double
216  value;
217 
218  if (IsNaN(x) != 0)
219  {
220  errno=ERANGE;
221  return(0);
222  }
223  value=(x < 0.0) ? ceil(x) : floor(x);
224  if (value < 0.0)
225  {
226  errno=ERANGE;
227  return(0);
228  }
229  if (value >= ((double) MAGICK_USHORT_MAX))
230  {
231  errno=ERANGE;
232  return(MAGICK_USHORT_MAX);
233  }
234  return((unsigned short) value);
235 }
236 
237 static inline size_t CastDoubleToUnsigned(const double x)
238 {
239  double
240  value;
241 
242  if (IsNaN(x) != 0)
243  {
244  errno=ERANGE;
245  return(0);
246  }
247  value=(x < 0.0) ? ceil(x) : floor(x);
248  if (value < 0.0)
249  {
250  errno=ERANGE;
251  return(0);
252  }
253  if (value >= ((double) MAGICK_SIZE_MAX))
254  {
255  errno=ERANGE;
256  return(MAGICK_SIZE_MAX);
257  }
258  return((size_t) value);
259 }
260 
261 static inline double DegreesToRadians(const double degrees)
262 {
263  return((double) (MagickPI*degrees/180.0));
264 }
265 
266 static inline MagickRealType RadiansToDegrees(const MagickRealType radians)
267 {
268  return((MagickRealType) (180.0*radians/MagickPI));
269 }
270 
271 static inline unsigned char ScaleColor5to8(const unsigned int color)
272 {
273  return((unsigned char) (((color) << 3) | ((color) >> 2)));
274 }
275 
276 static inline unsigned char ScaleColor6to8(const unsigned int color)
277 {
278  return((unsigned char) (((color) << 2) | ((color) >> 4)));
279 }
280 
281 static inline unsigned int ScaleColor8to5(const unsigned char color)
282 {
283  return((unsigned int) (((color) & ~0x07) >> 3));
284 }
285 
286 static inline unsigned int ScaleColor8to6(const unsigned char color)
287 {
288  return((unsigned int) (((color) & ~0x03) >> 2));
289 }
290 
291 #if defined(__cplusplus) || defined(c_plusplus)
292 }
293 #endif
294 
295 #endif
MagickDoubleType MagickRealType
Definition: magick-type.h:125
MagickExport const char BackgroundColor[]
Definition: image.c:109
#define MAGICK_SSIZE_MIN
Definition: image-private.h:44
MagickExport const char PSDensityGeometry[]
Definition: image.c:118
static unsigned char ScaleColor6to8(const unsigned int color)
Definition: image-private.h:276
#define MAGICK_SIZE_MAX
Definition: image-private.h:42
MagickExport const char DefaultTileFrame[]
Definition: image.c:111
static unsigned char ScaleColor5to8(const unsigned int color)
Definition: image-private.h:271
#define MAGICK_SSIZE_MAX
Definition: image-private.h:43
MagickExport const char DefaultTileGeometry[]
Definition: image.c:112
static int CastDoubleToInt(const double x)
Definition: image-private.h:69
static size_t CastDoubleToUnsigned(const double x)
Definition: image-private.h:237
#define MagickPI
Definition: image-private.h:33
MagickExport const char LoadImageTag[]
Definition: image.c:115
MagickExport const char ForegroundColor[]
Definition: image.c:114
static QuantumAny CastDoubleToQuantumAny(const double x)
Definition: image-private.h:117
static unsigned int ScaleColor8to6(const unsigned char color)
Definition: image-private.h:286
static ssize_t CastDoubleToLong(const double x)
Definition: image-private.h:93
static double DegreesToRadians(const double degrees)
Definition: image-private.h:261
static unsigned int ScaleColor8to5(const unsigned char color)
Definition: image-private.h:281
MagickExport const char DefaultTileLabel[]
Definition: image.c:113
static unsigned short CastDoubleToUShort(const double x)
Definition: image-private.h:213
MagickExport const char BorderColor[]
Definition: image.c:110
static size_t CastDoubleToSizeT(const double x)
Definition: image-private.h:141
#define MAGICK_UCHAR_MAX
Definition: image-private.h:45
MagickExport const char SaveImageTag[]
Definition: image.c:120
#define IsNaN(a)
Definition: magick-type.h:214
MagickExport const char LoadImagesTag[]
Definition: image.c:116
MagickExport const char MatteColor[]
Definition: image.c:117
static ssize_t CastDoubleToSsizeT(const double x)
Definition: image-private.h:165
#define MAGICK_INT_MAX
Definition: image-private.h:32
static MagickRealType RadiansToDegrees(const MagickRealType radians)
Definition: image-private.h:266
#define MagickExport
Definition: method-attribute.h:80
static unsigned char CastDoubleToUChar(const double x)
Definition: image-private.h:189
MagickExport const double DefaultResolution
Definition: image.c:125
#define MAGICK_USHORT_MAX
Definition: image-private.h:46
MagickSizeType QuantumAny
Definition: magick-type.h:150
MagickExport const char PSPageGeometry[]
Definition: image.c:119
MagickExport const char SaveImagesTag[]
Definition: image.c:121