BlendingOptions.AddOuterGlow
BlendingOptions.AddOuterGlow method
外側のグロー効果を追加します。
public OuterGlowEffect AddOuterGlow()
戻り値
作成済みOuterGlowEffect
object
例
次のコードは、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());
}
関連項目
- class OuterGlowEffect
- class BlendingOptions
- 名前空間 Aspose.PSD.FileFormats.Psd.Layers.LayerEffects
- 組み立て Aspose.PSD