LayerStateEffects.AddOuterGlow

LayerStateEffects.AddOuterGlow method

Adds the outer glow effect.

public OuterGlowEffect AddOuterGlow()

Return Value

The new instance of the OuterGlowEffect class.

Examples

The following code demonstrates support of effects in Timeline frames.

[C#]

string sourceFile = "4_animated.psd";
string outputFile = "output.psd";

using (var psdImage = (PsdImage)Image.Load(sourceFile))
{
    Timeline timeline = psdImage.Timeline;

    var layerStateEffects11 = timeline.Frames[1].LayerStates[1].StateEffects;

    layerStateEffects11.AddDropShadow();
    layerStateEffects11.AddGradientOverlay();

    var layerStateEffects21 = timeline.Frames[2].LayerStates[1].StateEffects;
    layerStateEffects21.AddStroke(FillType.Color);
    layerStateEffects21.IsVisible = false;

    psdImage.Save(outputFile);
}

See Also