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

Blur.Radius Property

Gets/sets blur radius.

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

Syntax

Visual Basic
Public Property Radius As Single
C#
public float Radius { get; set; }

Property Value

Value specifying blur radius. Must be positive.

Remarks

Note

Radius means how much neighbour pixels algorithm fetches (for radius = 1 it will take 8 neighbours, for radius = 2 it will use already 24 neighbour pixels, etc). That's why in general the larger radius is, the slower blur works. However Graphics Mill for .NET implements special algorithms which are optimized for large radiuses, that's why this rule not always works.

Default value is 2.

See Also

Reference