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 f/x methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_FX_H |
| 19 | #define _MAGICKCORE_FX_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | #include "magick/draw.h" |
| 26 | |
| 27 | typedef enum |
| 28 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 29 | UndefinedNoise, |
| 30 | UniformNoise, |
| 31 | GaussianNoise, |
| 32 | MultiplicativeGaussianNoise, |
| 33 | ImpulseNoise, |
| 34 | LaplacianNoise, |
| 35 | PoissonNoise, |
| 36 | RandomNoise |
| 37 | } NoiseType; |
| 38 | |
| 39 | extern MagickExport Image |
| 40 | *AddNoiseImage(const Image *,const NoiseType,ExceptionInfo *), |
| 41 | *AddNoiseImageChannel(const Image *,const ChannelType,const NoiseType, |
| 42 | ExceptionInfo *), |
| 43 | *BlueShiftImage(const Image *,const double,ExceptionInfo *), |
| 44 | *CharcoalImage(const Image *,const double,const double,ExceptionInfo *), |
| 45 | *ColorizeImage(const Image *,const char *,const PixelPacket,ExceptionInfo *), |
cristy | e636559 | 2010-04-02 17:31:23 +0000 | [diff] [blame] | 46 | *ColorMatrixImage(const Image *,const KernelInfo *kernel,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 47 | *FxImage(const Image *,const char *,ExceptionInfo *), |
| 48 | *FxImageChannel(const Image *,const ChannelType,const char *,ExceptionInfo *), |
| 49 | *ImplodeImage(const Image *,const double,ExceptionInfo *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 50 | *MorphImages(const Image *,const size_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 51 | *PolaroidImage(const Image *,const DrawInfo *,const double,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 52 | *SepiaToneImage(const Image *,const double,ExceptionInfo *), |
cristy | 5ed838e | 2010-05-31 00:05:35 +0000 | [diff] [blame] | 53 | *ShadowImage(const Image *,const double,const double,const ssize_t, |
| 54 | const ssize_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 55 | *SketchImage(const Image *,const double,const double,const double, |
| 56 | ExceptionInfo *), |
| 57 | *SteganoImage(const Image *,const Image *,ExceptionInfo *), |
| 58 | *StereoImage(const Image *,const Image *,ExceptionInfo *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 59 | *StereoAnaglyphImage(const Image *,const Image *,const ssize_t,const ssize_t, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 60 | ExceptionInfo *), |
| 61 | *SwirlImage(const Image *,double,ExceptionInfo *), |
| 62 | *TintImage(const Image *,const char *,const PixelPacket,ExceptionInfo *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 63 | *VignetteImage(const Image *,const double,const double,const ssize_t, |
| 64 | const ssize_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 65 | *WaveImage(const Image *,const double,const double,ExceptionInfo *); |
| 66 | |
| 67 | extern MagickExport MagickBooleanType |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 68 | PlasmaImage(Image *,const SegmentInfo *,size_t,size_t), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 69 | SolarizeImage(Image *,const double); |
| 70 | |
| 71 | #if defined(__cplusplus) || defined(c_plusplus) |
| 72 | } |
| 73 | #endif |
| 74 | |
| 75 | #endif |