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 (Declaration)
Public ReadOnly Property ColorAdjustment As ColorAdjustmentProvider
C#
public ColorAdjustmentProvider ColorAdjustment { get; }
Visual C++
public:
property ColorAdjustmentProvider^ ColorAdjustment {
	ColorAdjustmentProvider^ get ();
}

Property Value

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

Examples

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

See Also