MagickCore  7.0.10
Convert, Edit, Or Compose Bitmap Images
effect.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2020 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. You may
6  obtain a copy of the License at
7 
8  https://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 #include "MagickCore/morphology.h"
22 
23 #if defined(__cplusplus) || defined(c_plusplus)
24 extern "C" {
25 #endif
26 
27 typedef enum
28 {
59 } PreviewType;
60 
61 extern MagickExport Image
62  *AdaptiveBlurImage(const Image *,const double,const double,ExceptionInfo *),
63  *AdaptiveSharpenImage(const Image *,const double,const double,
64  ExceptionInfo *),
65  *BlurImage(const Image *,const double,const double,ExceptionInfo *),
66  *ConvolveImage(const Image *,const KernelInfo *,ExceptionInfo *),
68  *EdgeImage(const Image *,const double,ExceptionInfo *),
69  *EmbossImage(const Image *,const double,const double,ExceptionInfo *),
70  *GaussianBlurImage(const Image *,const double,const double,ExceptionInfo *),
71  *KuwaharaImage(const Image *,const double,const double,ExceptionInfo *),
72  *LocalContrastImage(const Image *,const double,const double,ExceptionInfo *),
73  *MotionBlurImage(const Image *,const double,const double,const double,
74  ExceptionInfo *),
75  *PreviewImage(const Image *,const PreviewType,ExceptionInfo *),
76  *RotationalBlurImage(const Image *,const double,ExceptionInfo *),
77  *SelectiveBlurImage(const Image *,const double,const double,const double,
78  ExceptionInfo *),
79  *ShadeImage(const Image *,const MagickBooleanType,const double,const double,
80  ExceptionInfo *),
81  *SharpenImage(const Image *,const double,const double,ExceptionInfo *),
82  *SpreadImage(const Image *,const PixelInterpolateMethod,const double,
83  ExceptionInfo *),
84  *UnsharpMaskImage(const Image *,const double,const double,const double,
85  const double,ExceptionInfo *);
86 
87 #if defined(__cplusplus) || defined(c_plusplus)
88 }
89 #endif
90 
91 #endif
Definition: effect.h:37
Definition: morphology.h:102
MagickExport Image * AdaptiveSharpenImage(const Image *, const double, const double, ExceptionInfo *)
Definition: effect.h:30
MagickExport Image * MotionBlurImage(const Image *, const double, const double, const double, ExceptionInfo *)
PixelInterpolateMethod
Definition: pixel.h:113
Definition: effect.h:47
Definition: exception.h:101
Definition: effect.h:31
Definition: effect.h:29
Definition: effect.h:57
PreviewType
Definition: effect.h:27
Definition: effect.h:43
Definition: effect.h:33
Definition: effect.h:53
Definition: effect.h:55
Definition: effect.h:49
Definition: image.h:151
Definition: effect.h:35
MagickExport Image * KuwaharaImage(const Image *, const double, const double, ExceptionInfo *)
MagickExport Image * GaussianBlurImage(const Image *, const double, const double, ExceptionInfo *)
MagickExport Image * AdaptiveBlurImage(const Image *, const double, const double, ExceptionInfo *)
Definition: effect.h:36
MagickExport Image * SharpenImage(const Image *, const double, const double, ExceptionInfo *)
MagickExport Image * ShadeImage(const Image *, const MagickBooleanType, const double, const double, ExceptionInfo *)
Definition: effect.h:46
MagickBooleanType
Definition: magick-type.h:169
Definition: effect.h:52
MagickExport Image * PreviewImage(const Image *, const PreviewType, ExceptionInfo *)
MagickExport Image * EmbossImage(const Image *, const double, const double, ExceptionInfo *)
MagickExport Image * BlurImage(const Image *, const double, const double, ExceptionInfo *)
Definition: effect.h:32
MagickExport Image * ConvolveImage(const Image *, const KernelInfo *, ExceptionInfo *)
MagickExport Image * RotationalBlurImage(const Image *, const double, ExceptionInfo *)
Definition: effect.h:38
MagickExport Image * SelectiveBlurImage(const Image *, const double, const double, const double, ExceptionInfo *)
Definition: effect.h:41
Definition: effect.h:54
MagickExport Image * SpreadImage(const Image *, const PixelInterpolateMethod, const double, ExceptionInfo *)
MagickExport Image * UnsharpMaskImage(const Image *, const double, const double, const double, const double, ExceptionInfo *)
Definition: effect.c:3924
Definition: effect.h:51
Definition: effect.h:50
Definition: effect.h:39
Definition: effect.h:44
Definition: effect.h:45
Definition: effect.h:58
Definition: effect.h:48
Definition: effect.h:40
#define MagickExport
Definition: method-attribute.h:80
Definition: effect.h:34
Definition: effect.h:56
MagickExport Image * LocalContrastImage(const Image *, const double, const double, ExceptionInfo *)
MagickExport Image * DespeckleImage(const Image *, ExceptionInfo *)
Definition: effect.h:42
MagickExport Image * EdgeImage(const Image *, const double, ExceptionInfo *)