Browse our Products

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

Download  Support Forum 

File Details

  • Downloads:
  • 3
  • File Size:
  • 25.3 MB
  • Posted By:
  • Yaroslav.Lisovskyi
  • Views:
  • 9
  • Date Added:
  • : 1 weeks ago [4/4/2022]

Release Notes

Description

It contains Aspose.PSD for .NET 22.4 release.

File Details

SHA256 Support

Added the support of SHA256 License.

Rendering of Outer Glow Layer Effect

This version of the Photoshop format manipulation API adds the ability to render out glow effect while processing images.

The following C# code snippet shows how you may configure the effect values for range, spread, opacity, and blend mode via 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());
}

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.PSD for .NET 22.4 - Release Notes.

 English