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

TransformsProvider.Glow Method (Color)

Applies glow effect.

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

Syntax

Visual Basic
Public Sub Glow ( _
	glowColor As Color _
)
C#
public void Glow(
	Color glowColor
)

Parameters

glowColor

Type: Aurigma.GraphicsMill.Color

Glow color.

Remarks

You can also use Glow class to apply this effect.

Note

If the bitmap does not have an alpha channel (e.g. its pixel format is Format24bppRgb), alpha channel is automatically added. So be aware that pixel format of the output bitmap may differ from the input one.

Examples

Visual Basic
bitmap.Transforms.Glow(Aurigma.GraphicsMill.RgbColor.Red)
C#
bitmap.Transforms.Glow(Aurigma.GraphicsMill.RgbColor.Red);

See Also

Reference