DropShadowEffect.EffectType
DropShadowEffect.EffectType property
يحصل على نوع من التأثير
public LayerEffectsTypes EffectType { get; }
أمثلة
توضح التعليمة البرمجية التالية استخدام خاصية Opacity لـ 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;
// مثال مع التعتيم = 20
dropShadowEffect.Opacity = 20;
psdImage.Save(outputImage20, new PngOptions());
// مثال مع التعتيم = 200
dropShadowEffect.Opacity = 200;
psdImage.Save(outputImage200, new PngOptions());
}
توضح التعليمات البرمجية التالية دعم الخاصية 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)
{
// اشتعلت
psdImage.Save(outputWith, new PngOptions());
}
}
}
أنظر أيضا
- enum LayerEffectsTypes
- class DropShadowEffect
- مساحة الاسم Aspose.PSD.FileFormats.Psd.Layers.LayerEffects
- المجسم Aspose.PSD