blob: 33992b30448f43db44ce1012010925ae71759188 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy7e41fe82010-12-04 23:12:08 +00002 Copyright 1999-2011 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
25#include "magick/draw.h"
26
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
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 *),
cristye6365592010-04-02 17:31:23 +000046 *ColorMatrixImage(const Image *,const KernelInfo *kernel,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000047 *FxImage(const Image *,const char *,ExceptionInfo *),
48 *FxImageChannel(const Image *,const ChannelType,const char *,ExceptionInfo *),
49 *ImplodeImage(const Image *,const double,ExceptionInfo *),
cristybb503372010-05-27 20:51:26 +000050 *MorphImages(const Image *,const size_t,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000051 *PolaroidImage(const Image *,const DrawInfo *,const double,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000052 *SepiaToneImage(const Image *,const double,ExceptionInfo *),
cristy5ed838e2010-05-31 00:05:35 +000053 *ShadowImage(const Image *,const double,const double,const ssize_t,
54 const ssize_t,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000055 *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 *),
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 *),
61 *SwirlImage(const Image *,double,ExceptionInfo *),
62 *TintImage(const Image *,const char *,const PixelPacket,ExceptionInfo *),
cristybb503372010-05-27 20:51:26 +000063 *VignetteImage(const Image *,const double,const double,const ssize_t,
64 const ssize_t,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000065 *WaveImage(const Image *,const double,const double,ExceptionInfo *);
66
67extern MagickExport MagickBooleanType
cristybb503372010-05-27 20:51:26 +000068 PlasmaImage(Image *,const SegmentInfo *,size_t,size_t),
cristy3ed852e2009-09-05 21:47:34 +000069 SolarizeImage(Image *,const double);
70
71#if defined(__cplusplus) || defined(c_plusplus)
72}
73#endif
74
75#endif