resize.h
Go to the documentation of this file.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 extern MagickExport Image
00026 *AdaptiveResizeImage(const Image *,const unsigned long,const unsigned long,
00027 ExceptionInfo *),
00028 *LiquidRescaleImage(const Image *,const unsigned long,const unsigned long,
00029 const double,const double,ExceptionInfo *),
00030 *MagnifyImage(const Image *,ExceptionInfo *),
00031 *MinifyImage(const Image *,ExceptionInfo *),
00032 *ResampleImage(const Image *,const double,const double,const FilterTypes,
00033 const double,ExceptionInfo *),
00034 *ResizeImage(const Image *,const unsigned long,const unsigned long,
00035 const FilterTypes,const double,ExceptionInfo *),
00036 *SampleImage(const Image *,const unsigned long,const unsigned long,
00037 ExceptionInfo *),
00038 *ScaleImage(const Image *,const unsigned long,const unsigned long,
00039 ExceptionInfo *),
00040 *ThumbnailImage(const Image *,const unsigned long,const unsigned long,
00041 ExceptionInfo *),
00042 *ZoomImage(const Image *,const unsigned long,const unsigned long,
00043 ExceptionInfo *);
00044
00045 #if defined(__cplusplus) || defined(c_plusplus)
00046 }
00047 #endif
00048
00049 #endif