github.com/kaydxh/golang@v0.0.131/pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/texture.h (about) 1 /* 2 Copyright (C) 2003 - 2009 GraphicsMagick Group 3 Copyright (C) 2002 ImageMagick Studio 4 Copyright 1991-1999 E. I. du Pont de Nemours and Company 5 6 This program is covered by multiple licenses, which are described in 7 Copyright.txt. You should have received a copy of Copyright.txt with this 8 package; otherwise see http://www.graphicsmagick.org/www/Copyright.html. 9 10 GraphicsMagick Texture Methods. 11 */ 12 #ifndef _MAGICK_TEXTURE_H 13 #define _MAGICK_TEXTURE_H 14 15 #if defined(__cplusplus) || defined(c_plusplus) 16 extern "C" { 17 #endif 18 19 /* 20 Include declarations. 21 */ 22 #include "magick/image.h" 23 #include "magick/error.h" 24 25 extern MagickExport Image 26 *ConstituteTextureImage(const unsigned long columns,const unsigned long rows, 27 const Image *texture,ExceptionInfo *exception); 28 29 extern MagickExport MagickPassFail 30 TextureImage(Image *,const Image *); 31 32 #if defined(__cplusplus) || defined(c_plusplus) 33 } 34 #endif 35 36 #endif /* _MAGICK_TEXTURE_H */ 37 38 /* 39 * Local Variables: 40 * mode: c 41 * c-basic-offset: 2 42 * fill-column: 78 43 * End: 44 */