MagickCore  6.8.5
effect.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2013 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 {
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 size_t,const double *,ExceptionInfo *),
73  *ConvolveImageChannel(const Image *,const ChannelType,const size_t,
74  const double *,ExceptionInfo *),
76  *EdgeImage(const Image *,const double,ExceptionInfo *),
77  *EmbossImage(const Image *,const double,const double,ExceptionInfo *),
78  *FilterImage(const Image *,const KernelInfo *,ExceptionInfo *),
79  *FilterImageChannel(const Image *,const ChannelType,const KernelInfo *,
80  ExceptionInfo *),
81  *GaussianBlurImage(const Image *,const double,const double,ExceptionInfo *),
82  *GaussianBlurImageChannel(const Image *,const ChannelType,const double,
83  const double,ExceptionInfo *),
84  *MotionBlurImage(const Image *,const double,const double,const double,
85  ExceptionInfo *),
86  *MotionBlurImageChannel(const Image *,const ChannelType,const double,
87  const double,const double,ExceptionInfo *),
88  *PreviewImage(const Image *,const PreviewType,ExceptionInfo *),
89  *RadialBlurImage(const Image *,const double,ExceptionInfo *),
90  *RadialBlurImageChannel(const Image *,const ChannelType,const double,
91  ExceptionInfo *),
92  *SelectiveBlurImage(const Image *,const double,const double,const double,
93  ExceptionInfo *),
94  *SelectiveBlurImageChannel(const Image *,const ChannelType,const double,
95  const double,const double,ExceptionInfo *),
96  *ShadeImage(const Image *,const MagickBooleanType,const double,const double,
97  ExceptionInfo *),
98  *SharpenImage(const Image *,const double,const double,ExceptionInfo *),
99  *SharpenImageChannel(const Image *,const ChannelType,const double,
100  const double,ExceptionInfo *),
101  *SpreadImage(const Image *,const double,ExceptionInfo *),
102  *UnsharpMaskImage(const Image *,const double,const double,const double,
103  const double,ExceptionInfo *),
104  *UnsharpMaskImageChannel(const Image *,const ChannelType,const double,
105  const double,const double,const double,ExceptionInfo *);
106 
107 #if defined(__cplusplus) || defined(c_plusplus)
108 }
109 #endif
110 
111 #endif