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

Glow Constructor (Color, Single, Single, Boolean)

Creates and initializes new Glow class instance. You can set all glow parameters here.

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

Syntax

Visual Basic
Public Sub New ( _
	glowColor As Color, _
	intensity As Single, _
	radius As Single, _
	enlargeToFit As Boolean _
)
C#
public Glow(
	Color glowColor,
	float intensity,
	float radius,
	bool enlargeToFit
)

Parameters

glowColor

Type: Aurigma.GraphicsMill.Color

Color value that specifies glow color. You can change it later using GlowColor property.
intensity

Type: System.Single

Positive Single value that specifies glow intensity. Small values (about 1.0 or below) provide hardly visible glow. In the same time, large values (say, about 50) provide too heavy glow. You can change it later using Intensity property.
radius

Type: System.Single

Value that specifies a blur radius used to blur the glow. You can change it later using Radius property.
enlargeToFit

Type: System.Boolean

Value that specifies whether to enlarge the image to fit entire glow. You can change it later using EnlargeToFit property.

See Also

Reference