| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | #ifndef _MAGICKWAND_DEPRECATE_H |
|---|
| 19 | #define _MAGICKWAND_DEPRECATE_H |
|---|
| 20 | |
|---|
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 22 | extern "C" { |
|---|
| 23 | #endif |
|---|
| 24 | |
|---|
| 25 | #if !defined(MAGICKCORE_EXCLUDE_DEPRECATED) |
|---|
| 26 | |
|---|
| 27 | #include "wand/drawing-wand.h" |
|---|
| 28 | #include "wand/magick-wand.h" |
|---|
| 29 | #include "wand/pixel-iterator.h" |
|---|
| 30 | #include "wand/pixel-wand.h" |
|---|
| 31 | |
|---|
| 32 | typedef struct _DrawingWand |
|---|
| 33 | *DrawContext; |
|---|
| 34 | |
|---|
| 35 | extern WandExport double |
|---|
| 36 | DrawGetFillAlpha(const DrawingWand *), |
|---|
| 37 | DrawGetStrokeAlpha(const DrawingWand *); |
|---|
| 38 | |
|---|
| 39 | extern WandExport DrawInfo |
|---|
| 40 | *DrawPeekGraphicWand(const DrawingWand *); |
|---|
| 41 | |
|---|
| 42 | extern WandExport char |
|---|
| 43 | *MagickDescribeImage(MagickWand *), |
|---|
| 44 | *MagickGetImageAttribute(MagickWand *,const char *), |
|---|
| 45 | *PixelIteratorGetException(const PixelIterator *,ExceptionType *); |
|---|
| 46 | |
|---|
| 47 | extern WandExport long |
|---|
| 48 | MagickGetImageIndex(MagickWand *); |
|---|
| 49 | |
|---|
| 50 | extern WandExport MagickBooleanType |
|---|
| 51 | MagickClipPathImage(MagickWand *,const char *,const MagickBooleanType), |
|---|
| 52 | MagickColorFloodfillImage(MagickWand *,const PixelWand *,const double, |
|---|
| 53 | const PixelWand *,const long,const long), |
|---|
| 54 | MagickGetImageChannelExtrema(MagickWand *,const ChannelType,unsigned long *, |
|---|
| 55 | unsigned long *), |
|---|
| 56 | MagickGetImageExtrema(MagickWand *,unsigned long *,unsigned long *), |
|---|
| 57 | MagickGetImageMatte(MagickWand *), |
|---|
| 58 | MagickMapImage(MagickWand *,const MagickWand *,const MagickBooleanType), |
|---|
| 59 | MagickMatteFloodfillImage(MagickWand *,const double,const double, |
|---|
| 60 | const PixelWand *,const long,const long), |
|---|
| 61 | MagickOpaqueImage(MagickWand *,const PixelWand *,const PixelWand *, |
|---|
| 62 | const double), |
|---|
| 63 | MagickPaintFloodfillImage(MagickWand *,const ChannelType,const PixelWand *, |
|---|
| 64 | const double,const PixelWand *,const long,const long), |
|---|
| 65 | MagickPaintOpaqueImage(MagickWand *,const PixelWand *,const PixelWand *, |
|---|
| 66 | const double), |
|---|
| 67 | MagickPaintOpaqueImageChannel(MagickWand *,const ChannelType, |
|---|
| 68 | const PixelWand *,const PixelWand *,const double), |
|---|
| 69 | MagickPaintTransparentImage(MagickWand *,const PixelWand *,const double, |
|---|
| 70 | const double), |
|---|
| 71 | MagickSetImageAttribute(MagickWand *,const char *,const char *), |
|---|
| 72 | MagickSetImageIndex(MagickWand *,const long), |
|---|
| 73 | MagickSetImageOption(MagickWand *,const char *,const char *,const char *), |
|---|
| 74 | MagickTransparentImage(MagickWand *,const PixelWand *,const double, |
|---|
| 75 | const double); |
|---|
| 76 | |
|---|
| 77 | extern WandExport MagickWand |
|---|
| 78 | *MagickFlattenImages(MagickWand *), |
|---|
| 79 | *MagickMosaicImages(MagickWand *), |
|---|
| 80 | *MagickRegionOfInterestImage(MagickWand *,const unsigned long, |
|---|
| 81 | const unsigned long,const long,const long); |
|---|
| 82 | |
|---|
| 83 | extern WandExport MagickSizeType |
|---|
| 84 | MagickGetImageSize(MagickWand *); |
|---|
| 85 | |
|---|
| 86 | extern WandExport PixelWand |
|---|
| 87 | **PixelGetNextRow(PixelIterator *); |
|---|
| 88 | |
|---|
| 89 | extern WandExport unsigned char |
|---|
| 90 | *MagickWriteImageBlob(MagickWand *,size_t *); |
|---|
| 91 | |
|---|
| 92 | extern WandExport VirtualPixelMethod |
|---|
| 93 | MagickSetImageVirtualPixelMethod(MagickWand *,const VirtualPixelMethod); |
|---|
| 94 | |
|---|
| 95 | extern WandExport void |
|---|
| 96 | DrawPopGraphicContext(DrawingWand *), |
|---|
| 97 | DrawPushGraphicContext(DrawingWand *), |
|---|
| 98 | DrawSetFillAlpha(DrawingWand *,const double), |
|---|
| 99 | DrawSetStrokeAlpha(DrawingWand *,const double); |
|---|
| 100 | |
|---|
| 101 | #endif |
|---|
| 102 | |
|---|
| 103 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 104 | } |
|---|
| 105 | #endif |
|---|
| 106 | |
|---|
| 107 | #endif |
|---|