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.2

Download  Support Forum 

File Details

  • Downloads:
  • 13
  • File Size:
  • 25.1 MB
  • Posted By:
  • Yaroslav.Lisovskyi
  • Views:
  • 22
  • Date Added:
  • 2/1/2022

Release Notes

Description

It contains Aspose.PSD for .NET 22.2 release.

File Details

Support of .NET 6 Framework

Added support of the .NET 6 Framework to the API.

Vibrance Adjustment Layers Support

Support has been added to set the Vibrance Adjustment Layers using API.

string sourceFileName = "WithoutVibrance.psd";
string outputFileNamePsd = "out_VibranceLayer.psd";
string outputFileNamePng = "out_VibranceLayer.png";

using (PsdImage image = (PsdImage) Image.Load(sourceFileName))
{
    // Creating a new VibranceLayer
    VibranceLayer vibranceLayer = image.AddVibranceAdjustmentLayer();
    vibranceLayer.Vibrance = 50;
    vibranceLayer.Saturation = 100;

    image.Save(outputFileNamePsd);
    image.Save(outputFileNamePng, new PngOptions());
}

Configure Vibrance in PSD via API

A vibAResource class has been added to the API that allows you to configure, get, and set various vibrance related properties of any Photoshop® PSD files. The following example in C# code sets the vibrance and saturation properties via API:

string sourceFileName = "VibranceResource.psd";
string outputFileName = "out_VibranceResource.psd";

using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
    foreach (var layer in image.Layers)
    {
        foreach (var resource in layer.Resources)
        {
            if (resource is VibAResource)
            {
                var vibranceResource = (VibAResource)resource;

                int vibranceValue =  vibranceResource.Vibrance;
                int saturationValue = vibranceResource.Saturation;

                vibranceResource.Vibrance = vibranceValue * 2;
                vibranceResource.Saturation = saturationValue * 2;

                break;
            }
        }
    }

    image.Save(outputFileName);
}

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

 English