Identifies the type of arithmetic operation (merge method) that is performed on the values of all
intersecting pixels resulting from the merge.
Syntax
Members
Member | Description |
ADD | Img1 = Img1 + Img2.. |
ADD_SIGN_CENTERED | Img1 = Img1+ SC_Img2. |
AND | Img1 = Img1 & Img2. |
DIVIDE | Img1 = Img1 / Img2. |
MULT | Img1 = Img1 * Img2. |
NOT | Img1 = ~Img1. |
OR | Img1 = Img1 | Img2. |
OVER | Img1 = Img2. |
SUB | Img1 = Img1 - Img2. |
XOR | Img1 = Img1 ^ Img2. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ImageGear.Processing.ImGearMergeModes
See Also