]> granicus.if.org Git - imagemagick/blob - magick/effect.h
(no commit message)
[imagemagick] / magick / effect.h
1 /*
2   Copyright 1999-2010 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 #include <magick/morphology.h>
26
27 typedef enum
28 {
29   UndefinedPreview,
30   RotatePreview,
31   ShearPreview,
32   RollPreview,
33   HuePreview,
34   SaturationPreview,
35   BrightnessPreview,
36   GammaPreview,
37   SpiffPreview,
38   DullPreview,
39   GrayscalePreview,
40   QuantizePreview,
41   DespecklePreview,
42   ReduceNoisePreview,
43   AddNoisePreview,
44   SharpenPreview,
45   BlurPreview,
46   ThresholdPreview,
47   EdgeDetectPreview,
48   SpreadPreview,
49   SolarizePreview,
50   ShadePreview,
51   RaisePreview,
52   SegmentPreview,
53   SwirlPreview,
54   ImplodePreview,
55   WavePreview,
56   OilPaintPreview,
57   CharcoalDrawingPreview,
58   JPEGPreview
59 } PreviewType;
60
61 extern MagickExport Image
62   *AdaptiveBlurImage(const Image *,const double,const double,ExceptionInfo *),
63   *AdaptiveBlurImageChannel(const Image *,const ChannelType,const double,
64     const double,ExceptionInfo *),
65   *AdaptiveSharpenImage(const Image *,const double,const double,
66      ExceptionInfo *),
67   *AdaptiveSharpenImageChannel(const Image *,const ChannelType,const double,
68     const double,ExceptionInfo *),
69   *BlurImage(const Image *,const double,const double,ExceptionInfo *),
70   *BlurImageChannel(const Image *,const ChannelType,const double,const double,
71     ExceptionInfo *),
72   *ConvolveImage(const Image *,const unsigned long,const double *,
73     ExceptionInfo *),
74   *ConvolveImageChannel(const Image *,const ChannelType,const unsigned long,
75     const double *,ExceptionInfo *),
76   *DespeckleImage(const Image *,ExceptionInfo *),
77   *EdgeImage(const Image *,const double,ExceptionInfo *),
78   *EmbossImage(const Image *,const double,const double,ExceptionInfo *),
79   *FilterImage(const Image *,const MagickKernel *,ExceptionInfo *),
80   *FilterImageChannel(const Image *,const ChannelType,const MagickKernel *,
81      ExceptionInfo *),
82   *GaussianBlurImage(const Image *,const double,const double,ExceptionInfo *),
83   *GaussianBlurImageChannel(const Image *,const ChannelType,const double,
84     const double,ExceptionInfo *),
85   *MedianFilterImage(const Image *,const double,ExceptionInfo *),
86   *MotionBlurImage(const Image *,const double,const double,const double,
87     ExceptionInfo *),
88   *MotionBlurImageChannel(const Image *,const ChannelType,const double,
89     const double,const double,ExceptionInfo *),
90   *PreviewImage(const Image *,const PreviewType,ExceptionInfo *),
91   *RadialBlurImage(const Image *,const double,ExceptionInfo *),
92   *RadialBlurImageChannel(const Image *,const ChannelType,const double,
93     ExceptionInfo *),
94   *ReduceNoiseImage(const Image *,const double,ExceptionInfo *),
95   *SelectiveBlurImage(const Image *,const double,const double,const double,
96     ExceptionInfo *),
97   *SelectiveBlurImageChannel(const Image *,const ChannelType,const double,
98     const double,const double,ExceptionInfo *),
99   *ShadeImage(const Image *,const MagickBooleanType,const double,const double,
100     ExceptionInfo *),
101   *SharpenImage(const Image *,const double,const double,ExceptionInfo *),
102   *SharpenImageChannel(const Image *,const ChannelType,const double,
103     const double,ExceptionInfo *),
104   *SpreadImage(const Image *,const double,ExceptionInfo *),
105   *UnsharpMaskImage(const Image *,const double,const double,const double,
106     const double,ExceptionInfo *),
107   *UnsharpMaskImageChannel(const Image *,const ChannelType,const double,
108     const double,const double,const double,ExceptionInfo *);
109
110 #if defined(__cplusplus) || defined(c_plusplus)
111 }
112 #endif
113
114 #endif