ImageCombineType
Enum for determining how two images are combined together.
Items 5
History | Name | Value | Description | |
---|---|---|---|---|
591 | BlendSourceOver | 1 | Blends pixels from the source with pixels from the destination using source over alpha blending. | |
591 | Overwrite | 2 | Overwrites all pixels in the destination image with pixels from the source image. | |
616 | Add | 3 | Adds pixels from the source and pixels from the destination together. | |
616 | Multiply | 4 | Multiplies pixels from the source and pixels from the destination
together. RGBA values are multiplied as values between | |
616 | AlphaBlend | 5 | Blends pixels from the source with pixels from the destination based on the alpha of the source pixels. Unlike BlendSourceOver, the destination color in AlphaBlend affects the resulting color of the image, regardless of the destination color's alpha. |
Description
Enum for determining how two images are combined together.
History 6
- 616 Add Multiply
- 616 Add AlphaBlend
- 616 Add Add
- 591 Add Overwrite
- 591 Add BlendSourceOver
- 591 Add ImageCombineType