ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Processing Namespace / ImGearMergeModes Enumeration




In This Topic
    ImGearMergeModes Enumeration
    In This Topic
    Identifies the type of arithmetic operation (merge method) that is performed on the values of all intersecting pixels resulting from the merge.
    Syntax
    '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 
    Members
    MemberValueDescription
    ADD0Img1 = Img1 + Img2..
    ADD_SIGN_CENTERED7Img1 = Img1+ SC_Img2.
    AND4Img1 = Img1 & Img2.
    DIVIDE3Img1 = Img1 / Img2.
    MULT2Img1 = Img1 * Img2.
    NOT8Img1 = ~Img1.
    OR5Img1 = Img1 | Img2.
    OVER9Img1 = Img2.
    SUB1Img1 = Img1 - Img2.
    XOR6Img1 = Img1 ^ Img2.
    Remarks
    For example, if you set ARITH_ADD merge method, the resulting pixel values (of those pixels that intersected from the two images) equal the sum of the value of the pixel in the original image and the value of pixel in the image being merged.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ImageGear.Processing.ImGearMergeModes

    See Also