blob: 2841f6ab4d93b65f8feeb9c0c0cbbb0fd0edac15 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristyfe676ee2013-11-18 13:03:38 +00002 Copyright 1999-2014 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
cristy270b52b2012-08-29 21:03:28 +000025#define Magick2PI 6.28318530717958647692528676655900576839433879875020
26#define MagickPHI 1.61803398874989484820458683436563811772030917980576
27#define MagickPI2 1.57079632679489661923132169163975144209858469968755
28#define MagickSQ1_2 0.70710678118654752440084436210484903928483593768847
29#define MagickSQ2 1.41421356237309504880168872420969807856967187537695
30#define MagickSQ2PI 2.50662827463100024161235523934010416269302368164062
cristy3ed852e2009-09-05 21:47:34 +000031#define UndefinedTicksPerSecond 100L
32#define UndefinedCompressionQuality 0UL
33
cristyd9ecd042012-06-17 18:26:12 +000034extern MagickExport const char
35 BackgroundColor[],
36 BorderColor[],
37 DefaultTileFrame[],
38 DefaultTileGeometry[],
39 DefaultTileLabel[],
40 ForegroundColor[],
41 MatteColor[],
42 LoadImageTag[],
43 LoadImagesTag[],
44 PSDensityGeometry[],
45 PSPageGeometry[],
46 SaveImageTag[],
47 SaveImagesTag[];
48
49extern MagickExport const double
50 DefaultResolution;
51
cristy3ed852e2009-09-05 21:47:34 +000052static inline double DegreesToRadians(const double degrees)
53{
cristy475bd8a2010-09-12 19:55:24 +000054 return((double) (MagickPI*degrees/180.0));
cristy3ed852e2009-09-05 21:47:34 +000055}
56
cristya19f1d72012-08-07 18:24:38 +000057static inline double RadiansToDegrees(const double radians)
cristy3ed852e2009-09-05 21:47:34 +000058{
cristya19f1d72012-08-07 18:24:38 +000059 return((double) (180.0*radians/MagickPI));
cristy3ed852e2009-09-05 21:47:34 +000060}
61
cristy5ed838e2010-05-31 00:05:35 +000062static inline unsigned char ScaleColor5to8(const unsigned int color)
cristy3ed852e2009-09-05 21:47:34 +000063{
64 return((unsigned char) (((color) << 3) | ((color) >> 2)));
65}
66
cristy5ed838e2010-05-31 00:05:35 +000067static inline unsigned char ScaleColor6to8(const unsigned int color)
cristy3ed852e2009-09-05 21:47:34 +000068{
69 return((unsigned char) (((color) << 2) | ((color) >> 4)));
70}
71
cristy5ed838e2010-05-31 00:05:35 +000072static inline unsigned int ScaleColor8to5(const unsigned char color)
cristy3ed852e2009-09-05 21:47:34 +000073{
cristy5ed838e2010-05-31 00:05:35 +000074 return((unsigned int) (((color) & ~0x07) >> 3));
cristy3ed852e2009-09-05 21:47:34 +000075}
76
cristy5ed838e2010-05-31 00:05:35 +000077static inline unsigned int ScaleColor8to6(const unsigned char color)
cristy3ed852e2009-09-05 21:47:34 +000078{
cristy5ed838e2010-05-31 00:05:35 +000079 return((unsigned int) (((color) & ~0x03) >> 2));
cristy3ed852e2009-09-05 21:47:34 +000080}
81
82#if defined(__cplusplus) || defined(c_plusplus)
83}
84#endif
85
86#endif