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)
22 extern "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 MatteColor "#bdbdbd" /* gray */
51 #define PSDensityGeometry "72.0x72.0"
52 #define PSPageGeometry "612x792"
53 #define SaveImagesTag "Save/Images"
54 #define SaveImageTag "Save/Image"
55 #define TransparentColor "#00000000" /* transparent black */
56 #define UndefinedCompressionQuality 0UL
57 #define UndefinedTicksPerSecond 100L
58 
59 static inline int CastDoubleToInt(const double x)
60 {
61  double
62  value;
63 
64  if (IsNaN(x) != 0)
65  {
66  errno=ERANGE;
67  return(0);
68  }
69  value=(x < 0.0) ? ceil(x) : floor(x);
70  if (value < 0.0)
71  {
72  errno=ERANGE;
73  return(0);
74  }
75  if (value >= ((double) MAGICK_INT_MAX))
76  {
77  errno=ERANGE;
78  return(MAGICK_INT_MAX);
79  }
80  return((int) value);
81 }
82 
83 static inline ssize_t CastDoubleToLong(const double x)
84 {
85  double
86  value;
87 
88  if (IsNaN(x) != 0)
89  {
90  errno=ERANGE;
91  return(0);
92  }
93  value=(x < 0.0) ? ceil(x) : floor(x);
94  if (value < ((double) MAGICK_SSIZE_MIN))
95  {
96  errno=ERANGE;
97  return(MAGICK_SSIZE_MIN);
98  }
99  if (value >= ((double) MAGICK_SSIZE_MAX))
100  {
101  errno=ERANGE;
102  return(MAGICK_SSIZE_MAX);
103  }
104  return((ssize_t) value);
105 }
106 
107 static inline QuantumAny CastDoubleToQuantumAny(const double x)
108 {
109  double
110  value;
111 
112  if (IsNaN(x) != 0)
113  {
114  errno=ERANGE;
115  return(0);
116  }
117  value=(x < 0.0) ? ceil(x) : floor(x);
118  if (value < 0.0)
119  {
120  errno=ERANGE;
121  return(0);
122  }
123  if (value >= ((double) ((QuantumAny) ~0)))
124  {
125  errno=ERANGE;
126  return((QuantumAny) ~0);
127  }
128  return((QuantumAny) value);
129 }
130 
131 static inline size_t CastDoubleToUnsigned(const double x)
132 {
133  double
134  value;
135 
136  if (IsNaN(x) != 0)
137  {
138  errno=ERANGE;
139  return(0);
140  }
141  value=(x < 0.0) ? ceil(x) : floor(x);
142  if (value < 0.0)
143  {
144  errno=ERANGE;
145  return(0);
146  }
147  if (value >= ((double) MAGICK_SIZE_MAX))
148  {
149  errno=ERANGE;
150  return(MAGICK_SIZE_MAX);
151  }
152  return((size_t) value);
153 }
154 
155 static inline double DegreesToRadians(const double degrees)
156 {
157  return((double) (MagickPI*degrees/180.0));
158 }
159 
160 static inline MagickRealType RadiansToDegrees(const MagickRealType radians)
161 {
162  return((MagickRealType) (180.0*radians/MagickPI));
163 }
164 
165 static inline unsigned char ScaleColor5to8(const unsigned int color)
166 {
167  return((unsigned char) (((color) << 3) | ((color) >> 2)));
168 }
169 
170 static inline unsigned char ScaleColor6to8(const unsigned int color)
171 {
172  return((unsigned char) (((color) << 2) | ((color) >> 4)));
173 }
174 
175 static inline unsigned int ScaleColor8to5(const unsigned char color)
176 {
177  return((unsigned int) (((color) & ~0x07) >> 3));
178 }
179 
180 static inline unsigned int ScaleColor8to6(const unsigned char color)
181 {
182  return((unsigned int) (((color) & ~0x03) >> 2));
183 }
184 
185 #if defined(__cplusplus) || defined(c_plusplus)
186 }
187 #endif
188 
189 #endif
static ssize_t CastDoubleToLong(const double x)
Definition: image-private.h:83
static unsigned int ScaleColor8to6(const unsigned char color)
Definition: image-private.h:180
static int CastDoubleToInt(const double x)
Definition: image-private.h:59
static unsigned char ScaleColor6to8(const unsigned int color)
Definition: image-private.h:170
#define MAGICK_SSIZE_MAX
Definition: image-private.h:48
static unsigned int ScaleColor8to5(const unsigned char color)
Definition: image-private.h:175
static MagickRealType RadiansToDegrees(const MagickRealType radians)
Definition: image-private.h:160
static size_t CastDoubleToUnsigned(const double x)
Definition: image-private.h:131
static double DegreesToRadians(const double degrees)
Definition: image-private.h:155
static QuantumAny CastDoubleToQuantumAny(const double x)
Definition: image-private.h:107
#define MAGICK_SSIZE_MIN
Definition: image-private.h:49
static unsigned char ScaleColor5to8(const unsigned int color)
Definition: image-private.h:165
#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