DropShadowEffect.EffectType
DropShadowEffect.EffectType property
Obtiene un tipo de efecto
public LayerEffectsTypes EffectType { get; }
Ejemplos
El siguiente código demuestra el uso de la propiedad Opacity de DropShadowEffect.
[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;
// Ejemplo con Opacidad = 20
dropShadowEffect.Opacity = 20;
psdImage.Save(outputImage20, new PngOptions());
// Ejemplo con Opacidad = 200
dropShadowEffect.Opacity = 200;
psdImage.Save(outputImage200, new PngOptions());
}
El siguiente código demuestra la compatibilidad con la propiedad ILayerEffect.EffectType.
[C#]
string inputFile = "input.psd";
string outputWithout = "outputWithout.png";
string outputWith = "outputWith.png";
using (PsdImage psdImage = (PsdImage)Image.Load(inputFile, new LoadOptions()))
{
psdImage.Save(outputWithout, new PngOptions());
Layer workLayer = psdImage.Layers[1];
DropShadowEffect dropShadowEffect = workLayer.BlendingOptions.AddDropShadow();
dropShadowEffect.Distance = 0;
dropShadowEffect.Size = 8;
dropShadowEffect.Opacity = 20;
foreach (ILayerEffect iEffect in workLayer.BlendingOptions.Effects)
{
if (iEffect.EffectType == LayerEffectsTypes.DropShadow)
{
// atrapó
psdImage.Save(outputWith, new PngOptions());
}
}
}
Ver también
- enum LayerEffectsTypes
- class DropShadowEffect
- espacio de nombres Aspose.PSD.FileFormats.Psd.Layers.LayerEffects
- asamblea Aspose.PSD