DropShadowEffect.EffectType
DropShadowEffect.EffectType property
एक प्रकार का प्रभाव प्राप्त करता है
public LayerEffectsTypes EffectType { get; }
उदाहरण
निम्न कोड 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());
// उदाहरण अपारदर्शिता = 20 के साथ0
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