cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 7e41fe8 | 2010-12-04 23:12:08 +0000 | [diff] [blame] | 2 | Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 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 | 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) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
anthony | 6f09f09 | 2010-09-09 02:50:43 +0000 | [diff] [blame] | 25 | #define Magick2PI 6.28318530717958647692528676655900576839433879875020L |
cristy | 8639ba1 | 2011-11-03 11:13:13 +0000 | [diff] [blame^] | 26 | #define MagickPHI 1.61803398874989484820458683436563811772030917980576L |
anthony | 6f09f09 | 2010-09-09 02:50:43 +0000 | [diff] [blame] | 27 | #define MagickPI2 1.57079632679489661923132169163975144209858469968755L |
| 28 | #define MagickSQ1_2 0.70710678118654752440084436210484903928483593768847L |
| 29 | #define MagickSQ2 1.41421356237309504880168872420969807856967187537695L |
| 30 | #define MagickSQ2PI 2.50662827463100024161235523934010416269302368164062L |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 31 | #define UndefinedTicksPerSecond 100L |
| 32 | #define UndefinedCompressionQuality 0UL |
| 33 | |
cristy | 8ea8122 | 2011-09-04 10:33:32 +0000 | [diff] [blame] | 34 | extern MagickPrivate const char |
cristy | 7138c59 | 2009-09-08 13:58:52 +0000 | [diff] [blame] | 35 | BackgroundColor[], |
| 36 | BorderColor[], |
cristy | 7138c59 | 2009-09-08 13:58:52 +0000 | [diff] [blame] | 37 | ForegroundColor[], |
cristy | 9639ba3 | 2011-09-05 15:09:42 +0000 | [diff] [blame] | 38 | DefaultTileFrame[], |
cristy | 8ea8122 | 2011-09-04 10:33:32 +0000 | [diff] [blame] | 39 | MatteColor[]; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 40 | |
| 41 | static inline double DegreesToRadians(const double degrees) |
| 42 | { |
cristy | 475bd8a | 2010-09-12 19:55:24 +0000 | [diff] [blame] | 43 | return((double) (MagickPI*degrees/180.0)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static inline MagickRealType RadiansToDegrees(const MagickRealType radians) |
| 47 | { |
cristy | 475bd8a | 2010-09-12 19:55:24 +0000 | [diff] [blame] | 48 | return((MagickRealType) (180.0*radians/MagickPI)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 49 | } |
| 50 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 51 | static inline unsigned char ScaleColor5to8(const unsigned int color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 52 | { |
| 53 | return((unsigned char) (((color) << 3) | ((color) >> 2))); |
| 54 | } |
| 55 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 56 | static inline unsigned char ScaleColor6to8(const unsigned int color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 57 | { |
| 58 | return((unsigned char) (((color) << 2) | ((color) >> 4))); |
| 59 | } |
| 60 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 61 | static inline unsigned int ScaleColor8to5(const unsigned char color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 62 | { |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 63 | return((unsigned int) (((color) & ~0x07) >> 3)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 64 | } |
| 65 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 66 | static inline unsigned int ScaleColor8to6(const unsigned char color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 67 | { |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 68 | return((unsigned int) (((color) & ~0x03) >> 2)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | #if defined(__cplusplus) || defined(c_plusplus) |
| 72 | } |
| 73 | #endif |
| 74 | |
| 75 | #endif |