ImageGearJava Project > com.accusoft.imagegear.processing Package : ImGearMergeModes Enumeration |
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.
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. |
java.lang.Object
java.lang.Enum
com.accusoft.imagegear.processing.ImGearMergeModes