00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _MAGICKCORE_TRANSFORM_H
00019 #define _MAGICKCORE_TRANSFORM_H
00020
00021 #if defined(__cplusplus) || defined(c_plusplus)
00022 extern "C" {
00023 #endif
00024
00025 extern MagickExport Image
00026 *ChopImage(const Image *,const RectangleInfo *,ExceptionInfo *),
00027 *ConsolidateCMYKImages(const Image *,ExceptionInfo *),
00028 *CropImage(const Image *,const RectangleInfo *,ExceptionInfo *),
00029 *ExcerptImage(const Image *,const RectangleInfo *,ExceptionInfo *),
00030 *ExtentImage(const Image *,const RectangleInfo *,ExceptionInfo *),
00031 *FlipImage(const Image *,ExceptionInfo *),
00032 *FlopImage(const Image *,ExceptionInfo *),
00033 *RollImage(const Image *,const long,const long,ExceptionInfo *),
00034 *ShaveImage(const Image *,const RectangleInfo *,ExceptionInfo *),
00035 *SpliceImage(const Image *,const RectangleInfo *,ExceptionInfo *),
00036 *TransposeImage(const Image *,ExceptionInfo *),
00037 *TransverseImage(const Image *,ExceptionInfo *),
00038 *TrimImage(const Image *,ExceptionInfo *);
00039
00040 extern MagickExport MagickBooleanType
00041 TransformImage(Image **,const char *,const char *),
00042 TransformImages(Image **,const char *,const char *);
00043
00044 #if defined(__cplusplus) || defined(c_plusplus)
00045 }
00046 #endif
00047
00048 #endif