DropShadowEffect.Opacity
DropShadowEffect.Opacity property
获取或设置不透明度。
public byte Opacity { get; set; }
适当的价值
不透明度。
例子
以下代码演示了如何使用 DropShadowEffect 的 Opacity 属性。
[C#]
string inputFile = "input.psd";
string outputImage20 = "outputImage20.png";
string outputImage200 = "outputImage200.png";
using (PsdImage psdImage = (PsdImage)Image.Load(inputFile, new LoadOptions()))
{
Layer workLayer = psdImage.Layers[1];
DropShadowEffect dropShadowEffect = workLayer.BlendingOptions.AddDropShadow();
dropShadowEffect.Distance = 0;
dropShadowEffect.Size = 8;
// 不透明度 = 20 的示例
dropShadowEffect.Opacity = 20;
psdImage.Save(outputImage20, new PngOptions());
// 不透明度 = 20 的示例0
dropShadowEffect.Opacity = 200;
psdImage.Save(outputImage200, new PngOptions());
}