LayerStateEffects.AddDropShadow

LayerStateEffects.AddDropShadow method

Adds the drop shadow effect.

public DropShadowEffect AddDropShadow()

Return Value

The new instance of the DropShadowEffect 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