| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | #ifndef _MAGICKCORE_FX_H |
|---|
| 19 | #define _MAGICKCORE_FX_H |
|---|
| 20 | |
|---|
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 22 | extern "C" { |
|---|
| 23 | #endif |
|---|
| 24 | |
|---|
| 25 | #include "magick/draw.h" |
|---|
| 26 | |
|---|
| 27 | typedef 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 | |
|---|
| 46 | extern 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 | |
|---|
| 73 | extern 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 |
|---|