root / ImageMagick / trunk / magick / fx.h

Revision 11533, 3.0 kB (checked in by cristy, 2 months ago)
Line 
1/*
2  Copyright 1999-2008 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 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{
29  UndefinedEvaluateOperator,
30  AddEvaluateOperator,
31  AndEvaluateOperator,
32  DivideEvaluateOperator,
33  LeftShiftEvaluateOperator,
34  MaxEvaluateOperator,
35  MinEvaluateOperator,
36  MultiplyEvaluateOperator,
37  OrEvaluateOperator,
38  RightShiftEvaluateOperator,
39  SetEvaluateOperator,
40  SubtractEvaluateOperator,
41  XorEvaluateOperator,
42  PowEvaluateOperator,
43  LogEvaluateOperator
44} MagickEvaluateOperator;
45
46extern MagickExport Image
47  *CharcoalImage(const Image *,const double,const double,ExceptionInfo *),
48  *ColorizeImage(const Image *,const char *,const PixelPacket,ExceptionInfo *),
49  *ConvolveImage(const Image *,const unsigned long,const double *,
50    ExceptionInfo *),
51  *ConvolveImageChannel(const Image *,const ChannelType,const unsigned long,
52    const double *,ExceptionInfo *),
53  *FxImage(const Image *,const char *,ExceptionInfo *),
54  *FxImageChannel(const Image *,const ChannelType,const char *,ExceptionInfo *),
55  *ImplodeImage(const Image *,const double,ExceptionInfo *),
56  *MorphImages(const Image *,const unsigned long,ExceptionInfo *),
57  *PolaroidImage(const Image *,const DrawInfo *,const double,ExceptionInfo *),
58  *RecolorImage(const Image *,const unsigned long,const double *,
59    ExceptionInfo *),
60  *SepiaToneImage(const Image *,const double,ExceptionInfo *),
61  *ShadowImage(const Image *,const double,const double,const long,const long,
62    ExceptionInfo *),
63  *SketchImage(const Image *,const double,const double,const double,
64    ExceptionInfo *),
65  *SteganoImage(const Image *,const Image *,ExceptionInfo *),
66  *StereoImage(const Image *,const Image *,ExceptionInfo *),
67  *SwirlImage(const Image *,double,ExceptionInfo *),
68  *TintImage(const Image *,const char *,const PixelPacket,ExceptionInfo *),
69  *VignetteImage(const Image *,const double,const double,const long,
70    const long,ExceptionInfo *),
71  *WaveImage(const Image *,const double,const double,ExceptionInfo *);
72
73extern MagickExport MagickBooleanType
74  EvaluateImage(Image *,const MagickEvaluateOperator,const double,
75    ExceptionInfo *),
76  EvaluateImageChannel(Image *,const ChannelType,const MagickEvaluateOperator,
77    const double,ExceptionInfo *),
78  SolarizeImage(Image *,const double);
79
80#if defined(__cplusplus) || defined(c_plusplus)
81}
82#endif
83
84#endif
Note: See TracBrowser for help on using the browser.