OuterGlowEffect.Jitter

OuterGlowEffect.Jitter property

Gets or sets the noise.

public int Jitter { get; set; }

Property Value

The noise.

Exceptions

exceptioncondition
PsdImageArgumentExceptionNoise must be specified as percentage in range from 0 to 100

Examples

The following code demonstrates the OuterGlowEffect support.

[C#]

string src = "GreenLayer.psd";
string outputPng = "output261.png";

using (var image = (PsdImage)Image.Load(src))
{
    OuterGlowEffect effect = image.Layers[1].BlendingOptions.AddOuterGlow();
    effect.Range = 10;
    effect.Spread = 10;
    ((IColorFillSettings)effect.FillColor).Color = Color.Red;
    effect.Opacity = 128;
    effect.BlendMode = BlendMode.Normal;

    image.Save(outputPng, new PngOptions());
}

See Also