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

ColorAdjustmentProvider.Brightness Method (Boolean[], Single)

Adjusts image brightness.

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

Syntax

Visual Basic
Public Sub Brightness ( _
	channels As Boolean(), _
	amount As Single _
)
C#
public void Brightness(
	bool[] channels,
	float amount
)

Parameters

channels

Type: System.Boolean []

Array of flags specifying what channels to apply effect at. If array item is true, transform will be applied at channel with appropriate index. Otherwise this channel is skipped.
amount

Type: System.Single

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

Remarks

You can also use Brightness 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.

See Also

Reference