OuterGlowEffect.Size
OuterGlowEffect.Size property
获取以像素为单位的模糊值。
public int Size { get; }
适当的价值
尺寸。
例子
以下代码演示了 OuterGlowEffect 支持。
[C#]
string src = "GreenLayer.psd";
string outputPng = "output261.png";
using (var image = (PsdImage)Image.Load(src))
{
OuterGlowEffect effect = image.Layers[1].BlendingOptions.AddOuterGlow();
effect.Range = 10;
effect.Spread = 10;
((IColorFillSettings)effect.FillColor).Color = Color.Red;
effect.Opacity = 128;
effect.BlendMode = BlendMode.Normal;
image.Save(outputPng, new PngOptions());
}