00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _MAGICKCORE_DECORATE_H
00019 #define _MAGICKCORE_DECORATE_H
00020
00021 #if defined(__cplusplus) || defined(c_plusplus)
00022 extern "C" {
00023 #endif
00024
00025 typedef struct _FrameInfo
00026 {
00027 unsigned long
00028 width,
00029 height;
00030
00031 long
00032 x,
00033 y,
00034 inner_bevel,
00035 outer_bevel;
00036 } FrameInfo;
00037
00038 extern MagickExport Image
00039 *BorderImage(const Image *,const RectangleInfo *,ExceptionInfo *),
00040 *FrameImage(const Image *,const FrameInfo *,ExceptionInfo *);
00041
00042 extern MagickExport MagickBooleanType
00043 RaiseImage(Image *,const RectangleInfo *,const MagickBooleanType);
00044
00045 #if defined(__cplusplus) || defined(c_plusplus)
00046 }
00047 #endif
00048
00049 #endif