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());
}