浏览我们的产品

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.PSD for .NET 22.4

下载  支持论坛 

文件详情

  • 下载:
  • 3
  • 文件大小:
  • 25.3 MB
  • Posted By:
  • Yaroslav.Lisovskyi
  • 浏览量:
  • 9
  • 添加日期:
  • : 1 weeks ago [4/4/2022]

文件详情

SHA256 支持

添加了对“SHA256”许可证的支持。

渲染外发光层效果

此版本的 Photoshop 格式操作 API 添加了在处理图像时渲染发光效果的功能。

以下 C# 代码片段显示了如何通过 API 配置范围、散布、不透明度和混合模式的效果值:

string src = "GreenLayer.psd";
string output = "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(output, new PngOptions());
}

有关此版本中的功能、增强和错误修复的完整列表,请访问 Aspose.PSD for .NET 22.4 - Release Notes

 简体中文