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

ColorAdjustmentProvider.Contrast Method (Single)

Adjusts image contrast.

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

Syntax

Visual Basic
Public Sub Contrast ( _
	amount As Single _
)
C#
public void Contrast(
	float amount
)

Parameters

amount

Type: System.Single

Value in range [-1, 1] that specifies contrast modifier.

Remarks

You can also use Contrast class to apply this correction.

Parameter amount is normalized to 1. Depending on pixel format it is scaled to 255 or 65355 inside of the method.

Examples

Visual Basic
bitmap.ColorAdjustment.Contrast(0.2F)
C#
bitmap.ColorAdjustment.Contrast(0.2F);

See Also

Reference