blob: 9f9ffd9cbd521a0dc14ca57fa79a7edcbb577c73 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy7e41fe82010-12-04 23:12:08 +00002 Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 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 http://www.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
anthony6f09f092010-09-09 02:50:43 +000025#define Magick2PI 6.28318530717958647692528676655900576839433879875020L
26#define MagickPI2 1.57079632679489661923132169163975144209858469968755L
27#define MagickSQ1_2 0.70710678118654752440084436210484903928483593768847L
28#define MagickSQ2 1.41421356237309504880168872420969807856967187537695L
29#define MagickSQ2PI 2.50662827463100024161235523934010416269302368164062L
cristy3ed852e2009-09-05 21:47:34 +000030#define UndefinedTicksPerSecond 100L
31#define UndefinedCompressionQuality 0UL
32
cristy8ea81222011-09-04 10:33:32 +000033extern MagickPrivate const char
cristy7138c592009-09-08 13:58:52 +000034 BackgroundColor[],
35 BorderColor[],
cristy7138c592009-09-08 13:58:52 +000036 ForegroundColor[],
cristy8ea81222011-09-04 10:33:32 +000037 MatteColor[];
cristy3ed852e2009-09-05 21:47:34 +000038
39static inline double DegreesToRadians(const double degrees)
40{
cristy475bd8a2010-09-12 19:55:24 +000041 return((double) (MagickPI*degrees/180.0));
cristy3ed852e2009-09-05 21:47:34 +000042}
43
44static inline MagickRealType RadiansToDegrees(const MagickRealType radians)
45{
cristy475bd8a2010-09-12 19:55:24 +000046 return((MagickRealType) (180.0*radians/MagickPI));
cristy3ed852e2009-09-05 21:47:34 +000047}
48
cristy5ed838e2010-05-31 00:05:35 +000049static inline unsigned char ScaleColor5to8(const unsigned int color)
cristy3ed852e2009-09-05 21:47:34 +000050{
51 return((unsigned char) (((color) << 3) | ((color) >> 2)));
52}
53
cristy5ed838e2010-05-31 00:05:35 +000054static inline unsigned char ScaleColor6to8(const unsigned int color)
cristy3ed852e2009-09-05 21:47:34 +000055{
56 return((unsigned char) (((color) << 2) | ((color) >> 4)));
57}
58
cristy5ed838e2010-05-31 00:05:35 +000059static inline unsigned int ScaleColor8to5(const unsigned char color)
cristy3ed852e2009-09-05 21:47:34 +000060{
cristy5ed838e2010-05-31 00:05:35 +000061 return((unsigned int) (((color) & ~0x07) >> 3));
cristy3ed852e2009-09-05 21:47:34 +000062}
63
cristy5ed838e2010-05-31 00:05:35 +000064static inline unsigned int ScaleColor8to6(const unsigned char color)
cristy3ed852e2009-09-05 21:47:34 +000065{
cristy5ed838e2010-05-31 00:05:35 +000066 return((unsigned int) (((color) & ~0x03) >> 2));
cristy3ed852e2009-09-05 21:47:34 +000067}
68
69#if defined(__cplusplus) || defined(c_plusplus)
70}
71#endif
72
73#endif