blob: 95767931a93d6fa9964d25220e060d21b71c58c3 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy1454be72011-12-19 01:52:48 +00002 Copyright 1999-2012 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 f/x methods.
17*/
18#ifndef _MAGICKCORE_FX_H
19#define _MAGICKCORE_FX_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
cristy4c08aed2011-07-01 19:47:50 +000025#include "MagickCore/draw.h"
cristy3ed852e2009-09-05 21:47:34 +000026
27typedef enum
28{
cristy3ed852e2009-09-05 21:47:34 +000029 UndefinedNoise,
30 UniformNoise,
31 GaussianNoise,
32 MultiplicativeGaussianNoise,
33 ImpulseNoise,
34 LaplacianNoise,
35 PoissonNoise,
36 RandomNoise
37} NoiseType;
38
39extern MagickExport Image
cristy9ed1f812011-10-08 02:00:08 +000040 *AddNoiseImage(const Image *,const NoiseType,const double,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000041 *BlueShiftImage(const Image *,const double,ExceptionInfo *),
cristy05c0c9a2011-09-05 23:16:13 +000042 *CharcoalImage(const Image *,const double,const double,const double,
43 ExceptionInfo *),
cristyc7e6ff62011-10-03 13:46:11 +000044 *ColorizeImage(const Image *,const char *,const PixelInfo *,ExceptionInfo *),
cristye6365592010-04-02 17:31:23 +000045 *ColorMatrixImage(const Image *,const KernelInfo *kernel,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000046 *FxImage(const Image *,const char *,ExceptionInfo *),
cristy76f512e2011-09-12 01:26:56 +000047 *ImplodeImage(const Image *,const double,const PixelInterpolateMethod,
48 ExceptionInfo *),
cristybb503372010-05-27 20:51:26 +000049 *MorphImages(const Image *,const size_t,ExceptionInfo *),
cristye9e3d382011-12-14 01:50:13 +000050 *PolaroidImage(const Image *,const DrawInfo *,const char *,const double,
cristy5c4e2582011-09-11 19:21:03 +000051 const PixelInterpolateMethod,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000052 *SepiaToneImage(const Image *,const double,ExceptionInfo *),
cristyeb6e6582011-12-09 09:14:23 +000053 *ShadowImage(const Image *,const double,const double,const double,
54 const ssize_t,const ssize_t,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000055 *SketchImage(const Image *,const double,const double,const double,
cristyf7ef0252011-09-09 14:50:06 +000056 const double,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000057 *SteganoImage(const Image *,const Image *,ExceptionInfo *),
58 *StereoImage(const Image *,const Image *,ExceptionInfo *),
cristybb503372010-05-27 20:51:26 +000059 *StereoAnaglyphImage(const Image *,const Image *,const ssize_t,const ssize_t,
cristy3ed852e2009-09-05 21:47:34 +000060 ExceptionInfo *),
cristy76f512e2011-09-12 01:26:56 +000061 *SwirlImage(const Image *,double,const PixelInterpolateMethod,
62 ExceptionInfo *),
cristy28474bf2011-09-11 23:32:52 +000063 *TintImage(const Image *,const char *,const PixelInfo *,ExceptionInfo *),
cristyeb6e6582011-12-09 09:14:23 +000064 *VignetteImage(const Image *,const double,const double,const double,
65 const ssize_t,const ssize_t,ExceptionInfo *),
cristy5c4e2582011-09-11 19:21:03 +000066 *WaveImage(const Image *,const double,const double,
67 const PixelInterpolateMethod,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000068
69extern MagickExport MagickBooleanType
cristy5cbc0162011-08-29 00:36:28 +000070 PlasmaImage(Image *,const SegmentInfo *,size_t,size_t,ExceptionInfo *),
71 SolarizeImage(Image *,const double,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000072
73#if defined(__cplusplus) || defined(c_plusplus)
74}
75#endif
76
77#endif