DropShadowEffect.Color
DropShadowEffect.Color property
获取或设置颜色。
public Color Color { 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());
}
也可以看看
- struct Color
- class DropShadowEffect
- 命名空间 Aspose.PSD.FileFormats.Psd.Layers.LayerEffects
- 部件 Aspose.PSD