cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 1454be7 | 2011-12-19 01:52:48 +0000 | [diff] [blame] | 2 | Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3 | dedicated to making software imaging solutions freely available. |
| 4 | |
| 5 | You may not use this file except in compliance with the License. |
| 6 | obtain a copy of the License at |
| 7 | |
| 8 | http://www.imagemagick.org/script/license.php |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | |
| 16 | MagickCore image composite methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_COMPOSITE_H |
| 19 | #define _MAGICKCORE_COMPOSITE_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | typedef enum |
| 26 | { |
cristy | c8d6367 | 2012-01-11 13:03:13 +0000 | [diff] [blame] | 27 | AlphaCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 28 | AtopCompositeOp, |
| 29 | BlendCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 30 | BlurCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 31 | BumpmapCompositeOp, |
| 32 | ChangeMaskCompositeOp, |
| 33 | ClearCompositeOp, |
| 34 | ColorBurnCompositeOp, |
| 35 | ColorDodgeCompositeOp, |
| 36 | ColorizeCompositeOp, |
| 37 | CopyBlackCompositeOp, |
| 38 | CopyBlueCompositeOp, |
| 39 | CopyCompositeOp, |
| 40 | CopyCyanCompositeOp, |
| 41 | CopyGreenCompositeOp, |
| 42 | CopyMagentaCompositeOp, |
cristy | e4a4047 | 2011-12-22 02:56:19 +0000 | [diff] [blame] | 43 | CopyAlphaCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 44 | CopyRedCompositeOp, |
| 45 | CopyYellowCompositeOp, |
| 46 | DarkenCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 47 | DarkenIntensityCompositeOp, |
| 48 | DifferenceCompositeOp, |
| 49 | DisplaceCompositeOp, |
| 50 | DissolveCompositeOp, |
| 51 | DistortCompositeOp, |
| 52 | DivideDstCompositeOp, |
| 53 | DivideSrcCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 54 | DstAtopCompositeOp, |
| 55 | DstCompositeOp, |
| 56 | DstInCompositeOp, |
| 57 | DstOutCompositeOp, |
| 58 | DstOverCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 59 | ExclusionCompositeOp, |
| 60 | HardLightCompositeOp, |
| 61 | HueCompositeOp, |
| 62 | InCompositeOp, |
cristy | 9862146 | 2011-12-31 22:31:11 +0000 | [diff] [blame] | 63 | IntensityCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 64 | LightenCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 65 | LightenIntensityCompositeOp, |
| 66 | LinearBurnCompositeOp, |
| 67 | LinearDodgeCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 68 | LinearLightCompositeOp, |
| 69 | LuminizeCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 70 | MathematicsCompositeOp, |
anthony | 7c9eaf7 | 2011-03-18 10:35:12 +0000 | [diff] [blame] | 71 | MinusDstCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 72 | MinusSrcCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 73 | ModulateCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 74 | ModulusAddCompositeOp, |
| 75 | ModulusSubtractCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 76 | MultiplyCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 77 | NoCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 78 | OutCompositeOp, |
| 79 | OverCompositeOp, |
| 80 | OverlayCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 81 | PegtopLightCompositeOp, |
| 82 | PinLightCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 83 | PlusCompositeOp, |
| 84 | ReplaceCompositeOp, |
| 85 | SaturateCompositeOp, |
| 86 | ScreenCompositeOp, |
| 87 | SoftLightCompositeOp, |
| 88 | SrcAtopCompositeOp, |
| 89 | SrcCompositeOp, |
| 90 | SrcInCompositeOp, |
| 91 | SrcOutCompositeOp, |
| 92 | SrcOverCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 93 | ThresholdCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 94 | UndefinedCompositeOp, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 95 | VividLightCompositeOp, |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 96 | XorCompositeOp |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 97 | } CompositeOperator; |
| 98 | |
| 99 | extern MagickExport MagickBooleanType |
cristy | feb3e96 | 2012-03-29 17:25:55 +0000 | [diff] [blame] | 100 | CompositeImage(Image *,const Image *,const CompositeOperator, |
| 101 | const MagickBooleanType,const ssize_t,const ssize_t,ExceptionInfo *), |
cristy | e941a75 | 2011-10-15 01:52:48 +0000 | [diff] [blame] | 102 | TextureImage(Image *,const Image *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 103 | |
| 104 | #if defined(__cplusplus) || defined(c_plusplus) |
| 105 | } |
| 106 | #endif |
| 107 | |
| 108 | #endif |