File indexing completed on 2025-01-30 10:11:45
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef MAGICKCORE_TRANSFORM_H
0019 #define MAGICKCORE_TRANSFORM_H
0020
0021 #if defined(__cplusplus) || defined(c_plusplus)
0022 extern "C" {
0023 #endif
0024
0025 extern MagickExport Image
0026 *AutoOrientImage(const Image *,const OrientationType,ExceptionInfo *),
0027 *ChopImage(const Image *,const RectangleInfo *,ExceptionInfo *),
0028 *ConsolidateCMYKImages(const Image *,ExceptionInfo *),
0029 *CropImage(const Image *,const RectangleInfo *,ExceptionInfo *),
0030 *CropImageToTiles(const Image *,const char *, ExceptionInfo *),
0031 *ExcerptImage(const Image *,const RectangleInfo *,ExceptionInfo *),
0032 *ExtentImage(const Image *,const RectangleInfo *,ExceptionInfo *),
0033 *FlipImage(const Image *,ExceptionInfo *),
0034 *FlopImage(const Image *,ExceptionInfo *),
0035 *RollImage(const Image *,const ssize_t,const ssize_t,ExceptionInfo *),
0036 *ShaveImage(const Image *,const RectangleInfo *,ExceptionInfo *),
0037 *SpliceImage(const Image *,const RectangleInfo *,ExceptionInfo *),
0038 *TransposeImage(const Image *,ExceptionInfo *),
0039 *TransverseImage(const Image *,ExceptionInfo *),
0040 *TrimImage(const Image *,ExceptionInfo *);
0041
0042 #if defined(__cplusplus) || defined(c_plusplus)
0043 }
0044 #endif
0045
0046 #endif