github.com/kaydxh/golang@v0.0.131/pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/fx.h (about) 1 /* 2 Copyright (C) 2003-2009 GraphicsMagick Group 3 Copyright (C) 2002 ImageMagick Studio 4 5 This program is covered by multiple licenses, which are described in 6 Copyright.txt. You should have received a copy of Copyright.txt with this 7 package; otherwise see http://www.graphicsmagick.org/www/Copyright.html. 8 9 GraphicsMagick Image FX Methods. 10 */ 11 #ifndef _MAGICK_FX_H 12 #define _MAGICK_FX_H 13 14 #if defined(__cplusplus) || defined(c_plusplus) 15 extern "C" { 16 #endif /* defined(__cplusplus) || defined(c_plusplus) */ 17 18 extern MagickExport Image 19 *CharcoalImage(const Image *,const double,const double,ExceptionInfo *), 20 *ColorizeImage(const Image *,const char *,const PixelPacket,ExceptionInfo *), 21 *ImplodeImage(const Image *,const double,ExceptionInfo *), 22 *MorphImages(const Image *,const unsigned long,ExceptionInfo *), 23 *OilPaintImage(const Image *,const double,ExceptionInfo *), 24 *SteganoImage(const Image *,const Image *,ExceptionInfo *), 25 *StereoImage(const Image *,const Image *,ExceptionInfo *), 26 *SwirlImage(const Image *,double,ExceptionInfo *), 27 *WaveImage(const Image *,const double,const double,ExceptionInfo *); 28 29 extern MagickExport MagickPassFail 30 ColorMatrixImage(Image *image,const unsigned int order,const double *matrix), 31 SolarizeImage(Image *,const double); 32 33 #if defined(__cplusplus) || defined(c_plusplus) 34 } 35 #endif /* defined(__cplusplus) || defined(c_plusplus) */ 36 37 #endif /* _MAGICK_FX_H */ 38 39 /* 40 * Local Variables: 41 * mode: c 42 * c-basic-offset: 2 43 * fill-column: 78 44 * End: 45 */