Click or drag to resize
CanvasBlend Enumeration
Specifies the blend mode used to draw primitives.

Namespace:  Microsoft.Graphics.Canvas
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public enum CanvasBlend
Members
  Member nameValueDescription
SourceOver0The standard source-over-destination blend mode, also known as premultiplied alpha blending.
Copy1The source is copied to the destination; destination pixels are ignored.
Min2Use the minimum of the source and destination pixel values.
Add3Take the sum of the source and destination pixel values.
Remarks

This illustration shows the available blend modes with varying opacity and backgrounds.

CanvasBlend diagram
See Also