OuterGlowEffect.BlendMode
OuterGlowEffect.BlendMode property
Obtiene o establece el modo de fusión.
public BlendMode BlendMode { get; set; }
El valor de la propiedad
El modo de mezcla.
Ejemplos
El siguiente código demuestra la compatibilidad con 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());
}
Ver también
- enum BlendMode
- class OuterGlowEffect
- espacio de nombres Aspose.PSD.FileFormats.Psd.Layers.LayerEffects
- asamblea Aspose.PSD