Class OuterGlowEffect
Contenuti
[
Nascondere
]OuterGlowEffect class
Effetto livello bagliore esterno
public class OuterGlowEffect : ILayerEffect
Proprietà
Nome | Descrizione |
---|---|
BlendMode { get; set; } | Ottiene o imposta la modalità di fusione. |
EffectType { get; } | Ottiene un tipo di effetto type |
FillColor { get; set; } | Ottiene o imposta il colore. |
Intensity { get; set; } | Ottiene o imposta l’angolo in gradi. |
IsAntiAliasing { get; set; } | Ottiene o imposta l’effetto AntiAliasing abilitato |
IsSoftBlend { get; set; } | Ottiene o imposta un valore che indica se [knock out]. |
IsVisible { get; set; } | Ottiene o imposta un valore che indica se questa istanza è visibile. |
Jitter { get; set; } | Ottiene o imposta il rumore. |
Noise { get; set; } | Ottiene o imposta il rumore. |
Opacity { get; set; } | Ottiene o imposta l’opacità. |
Range { get; set; } | Ottiene o imposta il rumore. |
Size { get; } | Ottiene il valore di sfocatura in pixel. |
Spread { get; set; } | Ottiene o imposta l’intensità come percentuale. |
Esempi
Il codice seguente illustra il supporto 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());
}
Guarda anche
- interface ILayerEffect
- spazio dei nomi Aspose.PSD.FileFormats.Psd.Layers.LayerEffects
- assemblea Aspose.PSD