ImageGear23.Core Assembly > ImageGear.Processing Namespace : ImGearMergeModes Enumeration |
'Declaration Public Enum ImGearMergeModes Inherits System.Enum
'Usage Dim instance As ImGearMergeModes
public enum ImGearMergeModes : System.Enum
__value public enum ImGearMergeModes : public System.Enum
public enum class ImGearMergeModes : public System.Enum
Member | Value | Description |
---|---|---|
ADD | 0 | Img1 = Img1 + Img2.. |
ADD_SIGN_CENTERED | 7 | Img1 = Img1+ SC_Img2. |
AND | 4 | Img1 = Img1 & Img2. |
DIVIDE | 3 | Img1 = Img1 / Img2. |
MULT | 2 | Img1 = Img1 * Img2. |
NOT | 8 | Img1 = ~Img1. |
OR | 5 | Img1 = Img1 | Img2. |
OVER | 9 | Img1 = Img2. |
SUB | 1 | Img1 = Img1 - Img2. |
XOR | 6 | Img1 = Img1 ^ Img2. |
System.Object
System.ValueType
System.Enum
ImageGear.Processing.ImGearMergeModes