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

ColorAdjustmentProvider.ApplyLut Method (Lut)

Applies tone correction using specified look-up table (LUT).

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

Syntax

Visual Basic
Public Sub ApplyLut ( _
	lut As Lut _
)
C#
public void ApplyLut(
	Lut lut
)

Parameters

lut

Type: Aurigma.GraphicsMill.Transforms.Lut

Lut class instance which specifies look-up table for this LUT transform.

Remarks

You can also use ApplyLut class to apply this correction.

Examples

Visual Basic
bitmap.ColorAdjustment.AdjustHsl(0.1F, -0.2F, 0.1F)
C#
bitmap.ColorAdjustment.AdjustHsl(0.1F, -0.2F, 0.1F);

See Also

Reference