LayerStateEffects.AddInnerShadow

LayerStateEffects.AddInnerShadow method

Adds the inner shadow effect.

public InnerShadowEffect AddInnerShadow()

Return Value

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