BitmapBlendingMode Enumeration

Controls the way the bitmaps are drawn together.

Definition

Namespace: Avalonia.Media.Imaging
Assembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public enum BitmapBlendingMode

Members

Unspecified0 
SourceOver1 Source is placed over the destination.
Source2 Only the source will be present.
Destination3 Only the destination will be present.
DestinationOver4 Destination is placed over the source.
SourceIn5 The source that overlaps the destination, replaces the destination.
DestinationIn6 Destination which overlaps the source, replaces the source.
SourceOut7 Source is placed, where it falls outside of the destination.
DestinationOut8 Destination is placed, where it falls outside of the source.
SourceAtop9 Source which overlaps the destination, replaces the destination.
DestinationAtop10 Destination which overlaps the source replaces the source.
Xor11 The non-overlapping regions of source and destination are combined.
Plus12 Display the sum of the source image and destination image.

See Also