BitmapBlendingMode Enumeration
Controls the way the bitmaps are drawn together.
Definition
Namespace: Avalonia.Media.Imaging
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public enum BitmapBlendingMode
Public Enumeration BitmapBlendingMode
type BitmapBlendingMode
Members
| Unspecified | 0 | |
| SourceOver | 1 | Source is placed over the destination. |
| Source | 2 | Only the source will be present. |
| Destination | 3 | Only the destination will be present. |
| DestinationOver | 4 | Destination is placed over the source. |
| SourceIn | 5 | The source that overlaps the destination, replaces the destination. |
| DestinationIn | 6 | Destination which overlaps the source, replaces the source. |
| SourceOut | 7 | Source is placed, where it falls outside of the destination. |
| DestinationOut | 8 | Destination is placed, where it falls outside of the source. |
| SourceAtop | 9 | Source which overlaps the destination, replaces the destination. |
| DestinationAtop | 10 | Destination which overlaps the source replaces the source. |
| Xor | 11 | The non-overlapping regions of source and destination are combined. |
| Plus | 12 | Display the sum of the source image and destination image. |