github.com/kaydxh/golang@v0.0.131/pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/shear.h (about) 1 /* 2 Copyright (C) 2003-2012 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 ImageMagick Image Shear Methods. 10 */ 11 #ifndef _MAGICK_SHEAR_H 12 #define _MAGICK_SHEAR_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 *AffineTransformImage(const Image *,const AffineMatrix *,ExceptionInfo *), 20 *AutoOrientImage(const Image *image,const OrientationType current_orientation, 21 ExceptionInfo *exception), 22 *RotateImage(const Image *,const double,ExceptionInfo *), 23 *ShearImage(const Image *,const double,const double,ExceptionInfo *); 24 25 #if defined(__cplusplus) || defined(c_plusplus) 26 } 27 #endif /* defined(__cplusplus) || defined(c_plusplus) */ 28 29 #endif /* _MAGICK_SHEAR_H */ 30 31 /* 32 * Local Variables: 33 * mode: c 34 * c-basic-offset: 2 35 * fill-column: 78 36 * End: 37 */