Enum LayerEffectsTypes

LayerEffectsTypes enumeration

图层混合效果。

public enum LayerEffectsTypes

价值观

姓名价值描述
DropShadow0阴影.
OuterGlow1外发光.
PatternOverlay2图案叠加。
GradientOverlay3渐变叠加。
ColorOverlay4颜色叠加。
Satin5缎面效果类型。
InnerGlow6内发光.
InnerShadow7内阴影.
Stroke8行程.
BevelEmboss9斜角浮雕。

例子

以下代码演示了对 ILayerEffect.EffectType 属性的支持。

[C#]

string inputFile = "input.psd";
string outputWithout = "outputWithout.png";
string outputWith = "outputWith.png";

using (PsdImage psdImage = (PsdImage)Image.Load(inputFile, new LoadOptions()))
{
    psdImage.Save(outputWithout, new PngOptions());

    Layer workLayer = psdImage.Layers[1];

    DropShadowEffect dropShadowEffect = workLayer.BlendingOptions.AddDropShadow();
    dropShadowEffect.Distance = 0;
    dropShadowEffect.Size = 8;
    dropShadowEffect.Opacity = 20;

    foreach (ILayerEffect iEffect in workLayer.BlendingOptions.Effects)
    {
        if (iEffect.EffectType == LayerEffectsTypes.DropShadow)
        {
            // 它抓住了
            psdImage.Save(outputWith, new PngOptions());
        }
    }
}

也可以看看