cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame^] | 1 | /* |
| 2 | Copyright 1999-2009 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. |
| 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 effects methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_EFFECT_H |
| 19 | #define _MAGICKCORE_EFFECT_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | typedef enum |
| 26 | { |
| 27 | UndefinedPreview, |
| 28 | RotatePreview, |
| 29 | ShearPreview, |
| 30 | RollPreview, |
| 31 | HuePreview, |
| 32 | SaturationPreview, |
| 33 | BrightnessPreview, |
| 34 | GammaPreview, |
| 35 | SpiffPreview, |
| 36 | DullPreview, |
| 37 | GrayscalePreview, |
| 38 | QuantizePreview, |
| 39 | DespecklePreview, |
| 40 | ReduceNoisePreview, |
| 41 | AddNoisePreview, |
| 42 | SharpenPreview, |
| 43 | BlurPreview, |
| 44 | ThresholdPreview, |
| 45 | EdgeDetectPreview, |
| 46 | SpreadPreview, |
| 47 | SolarizePreview, |
| 48 | ShadePreview, |
| 49 | RaisePreview, |
| 50 | SegmentPreview, |
| 51 | SwirlPreview, |
| 52 | ImplodePreview, |
| 53 | WavePreview, |
| 54 | OilPaintPreview, |
| 55 | CharcoalDrawingPreview, |
| 56 | JPEGPreview |
| 57 | } PreviewType; |
| 58 | |
| 59 | extern MagickExport Image |
| 60 | *AdaptiveBlurImage(const Image *,const double,const double,ExceptionInfo *), |
| 61 | *AdaptiveBlurImageChannel(const Image *,const ChannelType,const double, |
| 62 | const double,ExceptionInfo *), |
| 63 | *AdaptiveSharpenImage(const Image *,const double,const double, |
| 64 | ExceptionInfo *), |
| 65 | *AdaptiveSharpenImageChannel(const Image *,const ChannelType,const double, |
| 66 | const double,ExceptionInfo *), |
| 67 | *BlurImage(const Image *,const double,const double,ExceptionInfo *), |
| 68 | *BlurImageChannel(const Image *,const ChannelType,const double,const double, |
| 69 | ExceptionInfo *), |
| 70 | *DespeckleImage(const Image *,ExceptionInfo *), |
| 71 | *EdgeImage(const Image *,const double,ExceptionInfo *), |
| 72 | *EmbossImage(const Image *,const double,const double,ExceptionInfo *), |
| 73 | *GaussianBlurImage(const Image *,const double,const double,ExceptionInfo *), |
| 74 | *GaussianBlurImageChannel(const Image *,const ChannelType,const double, |
| 75 | const double,ExceptionInfo *), |
| 76 | *MedianFilterImage(const Image *,const double,ExceptionInfo *), |
| 77 | *MotionBlurImage(const Image *,const double,const double,const double, |
| 78 | ExceptionInfo *), |
| 79 | *MotionBlurImageChannel(const Image *,const ChannelType,const double, |
| 80 | const double,const double,ExceptionInfo *), |
| 81 | *PreviewImage(const Image *,const PreviewType,ExceptionInfo *), |
| 82 | *RadialBlurImage(const Image *,const double,ExceptionInfo *), |
| 83 | *RadialBlurImageChannel(const Image *,const ChannelType,const double, |
| 84 | ExceptionInfo *), |
| 85 | *ReduceNoiseImage(const Image *,const double,ExceptionInfo *), |
| 86 | *SelectiveBlurImage(const Image *,const double,const double,const double, |
| 87 | ExceptionInfo *), |
| 88 | *SelectiveBlurImageChannel(const Image *,const ChannelType,const double, |
| 89 | const double,const double,ExceptionInfo *), |
| 90 | *ShadeImage(const Image *,const MagickBooleanType,const double,const double, |
| 91 | ExceptionInfo *), |
| 92 | *SharpenImage(const Image *,const double,const double,ExceptionInfo *), |
| 93 | *SharpenImageChannel(const Image *,const ChannelType,const double, |
| 94 | const double,ExceptionInfo *), |
| 95 | *SpreadImage(const Image *,const double,ExceptionInfo *), |
| 96 | *UnsharpMaskImage(const Image *,const double,const double,const double, |
| 97 | const double,ExceptionInfo *), |
| 98 | *UnsharpMaskImageChannel(const Image *,const ChannelType,const double, |
| 99 | const double,const double,const double,ExceptionInfo *); |
| 100 | |
| 101 | #if defined(__cplusplus) || defined(c_plusplus) |
| 102 | } |
| 103 | #endif |
| 104 | |
| 105 | #endif |