blob: 5ee0b8c8530d1bdca2d01f3c9ded8fa4a8f615ba [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
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)
22extern "C" {
23#endif
24
25typedef 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
59extern 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 *),
cristyfccdab92009-11-30 16:43:57 +000070 *ConvolveImage(const Image *,const unsigned long,const double *,
71 ExceptionInfo *),
72 *ConvolveImageChannel(const Image *,const ChannelType,const unsigned long,
73 const double *,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000074 *DespeckleImage(const Image *,ExceptionInfo *),
75 *EdgeImage(const Image *,const double,ExceptionInfo *),
76 *EmbossImage(const Image *,const double,const double,ExceptionInfo *),
77 *GaussianBlurImage(const Image *,const double,const double,ExceptionInfo *),
78 *GaussianBlurImageChannel(const Image *,const ChannelType,const double,
79 const double,ExceptionInfo *),
80 *MedianFilterImage(const Image *,const double,ExceptionInfo *),
81 *MotionBlurImage(const Image *,const double,const double,const double,
82 ExceptionInfo *),
83 *MotionBlurImageChannel(const Image *,const ChannelType,const double,
84 const double,const double,ExceptionInfo *),
85 *PreviewImage(const Image *,const PreviewType,ExceptionInfo *),
86 *RadialBlurImage(const Image *,const double,ExceptionInfo *),
87 *RadialBlurImageChannel(const Image *,const ChannelType,const double,
88 ExceptionInfo *),
89 *ReduceNoiseImage(const Image *,const double,ExceptionInfo *),
90 *SelectiveBlurImage(const Image *,const double,const double,const double,
91 ExceptionInfo *),
92 *SelectiveBlurImageChannel(const Image *,const ChannelType,const double,
93 const double,const double,ExceptionInfo *),
94 *ShadeImage(const Image *,const MagickBooleanType,const double,const double,
95 ExceptionInfo *),
96 *SharpenImage(const Image *,const double,const double,ExceptionInfo *),
97 *SharpenImageChannel(const Image *,const ChannelType,const double,
98 const double,ExceptionInfo *),
99 *SpreadImage(const Image *,const double,ExceptionInfo *),
100 *UnsharpMaskImage(const Image *,const double,const double,const double,
101 const double,ExceptionInfo *),
102 *UnsharpMaskImageChannel(const Image *,const ChannelType,const double,
103 const double,const double,const double,ExceptionInfo *);
104
105#if defined(__cplusplus) || defined(c_plusplus)
106}
107#endif
108
109#endif