[]
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
BoundedCopy = 2The source is copied to the destination, excluding the transparent pixels.
Clear = 0No regions are enabled.
Copy = 1Only the source will be present.
Destination = 3Only the destination will be present.
DestinationAtop = 11Destination which overlaps the source replaces the source. Source is placed elsewhere.
DestinationIn = 7Destination which overlaps the source, replaces the source.
DestinationOut = 9Destination is placed, where it falls outside of the source.
DestinationOver = 5Destination is placed over the source.
Lighter = 13Display the sum of the source image and destination image.
SourceAtop = 10Source which overlaps the destination, replaces the destination. Destination is placed elsewhere.
SourceIn = 6The source that overlaps the destination, replaces the destination.
SourceOut = 8Source is placed, where it falls outside of the destination.
SourceOver = 4Source is placed over the destination.
XOR = 12The non-overlapping regions of source and destination are combined.