Returns object providing methods which are responsible for color adjustment and tone correction (brightness/contrast, levels, hue/saturation/lightness adjustment, etc.).

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

Syntax

Visual Basic

Public ReadOnly Property ColorAdjustment As ColorAdjustmentProvider

C#

public ColorAdjustmentProvider ColorAdjustment { get; }

Property Value

ColorAdjustmentProvider class instance containing methods which apply color adjustment and tone correction algorithms on the current bitmap.

Examples

Visual Basic

bitmap.ColorAdjustment.AdjustHsl(0.1F, -0.2F, 0.1F)

C#

bitmap.ColorAdjustment.AdjustHsl(0.1F, -0.2F, 0.1F);