cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 16af1cb | 2009-12-11 21:38:29 +0000 | [diff] [blame] | 2 | Copyright 1999-2010 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 | 29188a8 | 2010-01-22 10:12:34 +0000 | [diff] [blame] | 25 | #define MagickPI 3.14159265358979323846264338327950288419716939937510 |
| 26 | #define Magick2PI 6.28318530717958647692528676655900576839433879875020 |
| 27 | #define MagickPI2 1.57079632679489661923132169163975144209858469968755 |
| 28 | #define MagickSQ1_2 0.70710678118654752440084436210484903928483593768847 |
| 29 | #define MagickSQ2 1.41421356237309504880168872420969807856967187537695 |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 30 | #define MagickSQ2PI 2.50662827463100024161235523934010416269302368164062 |
| 31 | #define QuantumScale ((double) 1.0/(double) QuantumRange) |
| 32 | #define UndefinedTicksPerSecond 100L |
| 33 | #define UndefinedCompressionQuality 0UL |
| 34 | |
| 35 | extern MagickExport const char |
cristy | 7138c59 | 2009-09-08 13:58:52 +0000 | [diff] [blame] | 36 | BackgroundColor[], |
| 37 | BorderColor[], |
| 38 | DefaultTileFrame[], |
| 39 | DefaultTileGeometry[], |
| 40 | DefaultTileLabel[], |
| 41 | ForegroundColor[], |
| 42 | MatteColor[], |
| 43 | LoadImageTag[], |
| 44 | LoadImagesTag[], |
| 45 | PSDensityGeometry[], |
| 46 | PSPageGeometry[], |
| 47 | SaveImageTag[], |
| 48 | SaveImagesTag[]; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 49 | |
| 50 | extern MagickExport const double |
| 51 | DefaultResolution; |
| 52 | |
| 53 | static inline double DegreesToRadians(const double degrees) |
| 54 | { |
| 55 | return(MagickPI*degrees/180.0); |
| 56 | } |
| 57 | |
| 58 | static inline MagickRealType RadiansToDegrees(const MagickRealType radians) |
| 59 | { |
| 60 | return(180.0*radians/MagickPI); |
| 61 | } |
| 62 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 63 | static inline unsigned char ScaleColor5to8(const unsigned int color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 64 | { |
| 65 | return((unsigned char) (((color) << 3) | ((color) >> 2))); |
| 66 | } |
| 67 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 68 | static inline unsigned char ScaleColor6to8(const unsigned int color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 69 | { |
| 70 | return((unsigned char) (((color) << 2) | ((color) >> 4))); |
| 71 | } |
| 72 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 73 | static inline unsigned int ScaleColor8to5(const unsigned char color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 74 | { |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 75 | return((unsigned int) (((color) & ~0x07) >> 3)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 76 | } |
| 77 | |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 78 | static inline unsigned int ScaleColor8to6(const unsigned char color) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 79 | { |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 80 | return((unsigned int) (((color) & ~0x03) >> 2)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | #if defined(__cplusplus) || defined(c_plusplus) |
| 84 | } |
| 85 | #endif |
| 86 | |
| 87 | #endif |