Enum LayerEffectsTypes
LayerEffectsTypes enumeration
图层混合效果。
public enum LayerEffectsTypes
价值观
姓名 | 价值 | 描述 |
---|---|---|
DropShadow | 0 | 阴影. |
OuterGlow | 1 | 外发光. |
PatternOverlay | 2 | 图案叠加。 |
GradientOverlay | 3 | 渐变叠加。 |
ColorOverlay | 4 | 颜色叠加。 |
Satin | 5 | 缎面效果类型。 |
InnerGlow | 6 | 内发光. |
InnerShadow | 7 | 内阴影. |
Stroke | 8 | 行程. |
BevelEmboss | 9 | 斜角浮雕。 |
例子
以下代码演示了对 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());
}
}
}