[]
Specifies the Porter Duff compositing method in which two pixels (source and destination) may contribute to the final color of the pixel.
public enum CompositeMode
Public Enum CompositeMode
Name | Description |
---|---|
BoundedCopy | The source is copied to the destination, excluding the transparent pixels. |
Clear | No regions are enabled. |
Copy | Only the source will be present. |
Destination | Only the destination will be present. |
DestinationAtop | Destination which overlaps the source replaces the source. Source is placed elsewhere. |
DestinationIn | Destination which overlaps the source, replaces the source. |
DestinationOut | Destination is placed, where it falls outside of the source. |
DestinationOver | Destination is placed over the source. |
Lighter | Display the sum of the source image and destination image. |
SourceAtop | Source which overlaps the destination, replaces the destination. Destination is placed elsewhere. |
SourceIn | The source that overlaps the destination, replaces the destination. |
SourceOut | Source is placed, where it falls outside of the destination. |
SourceOver | Source is placed over the destination. |
XOR | The non-overlapping regions of source and destination are combined. |