00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef MAGICKCORE_RESIZE_H
00019 #define MAGICKCORE_RESIZE_H
00020
00021 #if defined(__cplusplus) || defined(c_plusplus)
00022 extern "C" {
00023 #endif
00024
00025 typedef struct _ResizeFilter
00026 ResizeFilter;
00027
00028 extern MagickExport Image
00029 *AdaptiveResizeImage(const Image *,const size_t,const size_t,ExceptionInfo *),
00030 *InterpolativeResizeImage(const Image *,const size_t,const size_t,
00031 const InterpolatePixelMethod,ExceptionInfo *),
00032 *LiquidRescaleImage(const Image *,const size_t,const size_t,const double,
00033 const double,ExceptionInfo *),
00034 *MagnifyImage(const Image *,ExceptionInfo *),
00035 *MinifyImage(const Image *,ExceptionInfo *),
00036 *ResampleImage(const Image *,const double,const double,const FilterTypes,
00037 const double,ExceptionInfo *),
00038 *ResizeImage(const Image *,const size_t,const size_t,const FilterTypes,
00039 const double,ExceptionInfo *),
00040 *SampleImage(const Image *,const size_t,const size_t,ExceptionInfo *),
00041 *ScaleImage(const Image *,const size_t,const size_t,ExceptionInfo *),
00042 *ThumbnailImage(const Image *,const size_t,const size_t,ExceptionInfo *);
00043
00044 #if defined(__cplusplus) || defined(c_plusplus)
00045 }
00046 #endif
00047
00048 #endif