File indexing completed on 2025-01-30 10:11:41
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef MAGICKCORE_DECORATE_H
0019 #define MAGICKCORE_DECORATE_H
0020
0021 #include "MagickCore/image.h"
0022
0023 #if defined(__cplusplus) || defined(c_plusplus)
0024 extern "C" {
0025 #endif
0026
0027 typedef struct _FrameInfo
0028 {
0029 size_t
0030 width,
0031 height;
0032
0033 ssize_t
0034 x,
0035 y,
0036 inner_bevel,
0037 outer_bevel;
0038 } FrameInfo;
0039
0040 extern MagickExport Image
0041 *BorderImage(const Image *,const RectangleInfo *,const CompositeOperator,
0042 ExceptionInfo *),
0043 *FrameImage(const Image *,const FrameInfo *,const CompositeOperator,
0044 ExceptionInfo *);
0045
0046 extern MagickExport MagickBooleanType
0047 RaiseImage(Image *,const RectangleInfo *,const MagickBooleanType,
0048 ExceptionInfo *);
0049
0050 #if defined(__cplusplus) || defined(c_plusplus)
0051 }
0052 #endif
0053
0054 #endif