MagickCore 7.1.2
Convert, Edit, Or Compose Bitmap Images
Loading...
Searching...
No Matches
image-private.h
1/*
2 Copyright @ 1999 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 MagickMax(x,y) (((x) > (y)) ? (x) : (y))
26#define MagickMin(x,y) (((x) < (y)) ? (x) : (y))
27
28#include "MagickCore/pixel-accessor.h"
29#include "MagickCore/quantum-private.h"
30
31#define BackgroundColor "#ffffff" /* white */
32#define BackgroundColorRGBA QuantumRange,QuantumRange,QuantumRange,OpaqueAlpha
33#define BorderColor "#dfdfdf" /* gray */
34#define BorderColorRGBA ScaleShortToQuantum(0xdfdf),\
35 ScaleShortToQuantum(0xdfdf),ScaleShortToQuantum(0xdfdf),OpaqueAlpha
36#define DefaultResolution 72.0
37#define DefaultTileFrame "15x15+3+3"
38#define DefaultTileGeometry "120x120+4+3>"
39#define DefaultTileLabel "%f\n%G\n%b"
40#define ForegroundColor "#000" /* black */
41#define ForegroundColorRGBA 0,0,0,OpaqueAlpha
42#define LoadImagesTag "Load/Images"
43#define LoadImageTag "Load/Image"
44#define Magick2PI 6.28318530717958647692528676655900576839433879875020
45#define MagickAbsoluteValue(x) ((x) < 0 ? -(x) : (x))
46#define MagickPHI 1.61803398874989484820458683436563811772030917980576
47#define MagickPI2 1.57079632679489661923132169163975144209858469968755
48#define MagickPI 3.1415926535897932384626433832795028841971693993751058209749445923078164062
49#define MagickSQ1_2 0.70710678118654752440084436210484903928483593768847
50#define MagickSQ2 1.41421356237309504880168872420969807856967187537695
51#define MagickSQ2PI 2.50662827463100024161235523934010416269302368164062
52#define MAGICK_SIZE_MAX (SIZE_MAX)
53#define MAGICK_SSIZE_MAX (SSIZE_MAX)
54#define MAGICK_SSIZE_MIN (-SSIZE_MAX-1)
55#define MAGICK_UINT_MAX (UINT_MAX)
56#define MAGICK_ULONG_MAX (ULONG_MAX)
57#define MAGICK_USHORT_MAX (USHRT_MAX)
58#define MatteColor "#bdbdbd" /* gray */
59#define MatteColorRGBA ScaleShortToQuantum(0xbdbd),\
60 ScaleShortToQuantum(0xbdbd),ScaleShortToQuantum(0xbdbd),OpaqueAlpha
61#define PSDensityGeometry "72.0x72.0"
62#define PSPageGeometry "612x792"
63#define SaveImagesTag "Save/Images"
64#define SaveImageTag "Save/Image"
65#define TransparentColor "#00000000" /* transparent black */
66#define TransparentColorRGBA (Quantum) 0,(Quantum) 0,(Quantum) 0,TransparentAlpha
67#define UndefinedCompressionQuality 0UL
68#define UndefinedTicksPerSecond 100L
69
70static inline QuantumAny CastDoubleToQuantumAny(const double x)
71{
72 if (IsNaN(x) != 0)
73 {
74 errno=ERANGE;
75 return(0);
76 }
77 if (x > ((double) ((QuantumAny) ~0)))
78 {
79 errno=ERANGE;
80 return((QuantumAny) ~0);
81 }
82 if (x < 0.0)
83 {
84 errno=ERANGE;
85 return((QuantumAny) 0);
86 }
87 return((QuantumAny) (x+0.5));
88}
89
90static inline size_t CastDoubleToSizeT(const double x)
91{
92 double
93 value;
94
95 if (IsNaN(x) != 0)
96 {
97 errno=ERANGE;
98 return(0);
99 }
100 value=floor(x);
101 if (value >= ((double) MAGICK_SIZE_MAX))
102 {
103 errno=ERANGE;
104 return((size_t) MAGICK_SIZE_MAX);
105 }
106 if (value < 0.0)
107 {
108 errno=ERANGE;
109 return(0);
110 }
111 return((size_t) value);
112}
113
114static inline ssize_t CastDoubleToSsizeT(const double x)
115{
116 double
117 value;
118
119 if (IsNaN(x) != 0)
120 {
121 errno=ERANGE;
122 return(0);
123 }
124 if (x < 0.0)
125 {
126 value=ceil(x);
127 if (value < ((double) MAGICK_SSIZE_MIN))
128 {
129 errno=ERANGE;
130 return((ssize_t) MAGICK_SSIZE_MIN);
131 }
132 }
133 else
134 {
135 value=floor(x);
136 if (value > ((double) MAGICK_SSIZE_MAX))
137 {
138 errno=ERANGE;
139 return((ssize_t) MAGICK_SSIZE_MAX);
140 }
141 }
142 return((ssize_t) value);
143}
144
145static inline unsigned int CastDoubleToUInt(const double x)
146{
147 double
148 value;
149
150 if (IsNaN(x) != 0)
151 {
152 errno=ERANGE;
153 return(0);
154 }
155 value=floor(x);
156 if (value >= ((double) MAGICK_UINT_MAX))
157 {
158 errno=ERANGE;
159 return((unsigned int) MAGICK_UINT_MAX);
160 }
161 if (value < 0.0)
162 {
163 errno=ERANGE;
164 return(0);
165 }
166 return((unsigned int) value);
167}
168
169static inline unsigned short CastDoubleToUShort(const double x)
170{
171 double
172 value;
173
174 if (IsNaN(x) != 0)
175 {
176 errno=ERANGE;
177 return(0);
178 }
179 value=floor(x);
180 if (value >= ((double) MAGICK_USHORT_MAX))
181 {
182 errno=ERANGE;
183 return((unsigned short) MAGICK_USHORT_MAX);
184 }
185 if (value < 0.0)
186 {
187 errno=ERANGE;
188 return(0);
189 }
190 return((unsigned short) value);
191}
192
193static inline double DegreesToRadians(const double degrees)
194{
195 return((double) (MagickPI*degrees/180.0));
196}
197
198static inline size_t GetImageChannels(const Image *image)
199{
200 ssize_t
201 i;
202
203 size_t
204 channels;
205
206 channels=0;
207 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
208 {
209 PixelChannel channel = GetPixelChannelChannel(image,i);
210 PixelTrait traits = GetPixelChannelTraits(image,channel);
211 if ((traits & UpdatePixelTrait) != 0)
212 channels++;
213 }
214 return(channels == 0 ? (size_t) 1 : channels);
215}
216
217static inline double RadiansToDegrees(const double radians)
218{
219 return((double) (180.0*radians/MagickPI));
220}
221
222static inline unsigned char ScaleColor5to8(const unsigned int color)
223{
224 return((unsigned char) (((color) << 3) | ((color) >> 2)));
225}
226
227static inline unsigned char ScaleColor6to8(const unsigned int color)
228{
229 return((unsigned char) (((color) << 2) | ((color) >> 4)));
230}
231
232static inline unsigned int ScaleColor8to5(const unsigned char color)
233{
234 return((unsigned int) (((color) & ~0x07) >> 3));
235}
236
237static inline unsigned int ScaleColor8to6(const unsigned char color)
238{
239 return((unsigned int) (((color) & ~0x03) >> 2));
240}
241
242#if defined(__cplusplus) || defined(c_plusplus)
243}
244#endif
245
246#endif