This documentation is for the old version. Go to the latest Graphics Mill docs

Bitmap.Channels Property

Returns object which provides access to various operations with bitmap channels.

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public ReadOnly Property Channels As ChannelsProvider
C#
public ChannelsProvider Channels { get; }

Property Value

ChannelsProvider object containing methods which allow operating bitmap channels.

Examples

Visual Basic
bitmap.Channels.AddAlpha(0.4F)
C#
bitmap.Channels.AddAlpha(0.4f);

See Also

Reference