製品を閲覧する

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

ダウンロード  サポートフォーラム 

ファイルの詳細

  • ダウンロード:
  • 13
  • ファイルサイズ:
  • 25.1 MB
  • Posted By:
  • Yaroslav.Lisovskyi
  • ビュー:
  • 22
  • 追加日:
  • 2/1/2022

リリースノート

説明

.NET 22.2 リリース用の Aspose.PSD が含まれています。

ファイルの詳細

.NET 6 フレームワークのサポート

API に .NET 6 Framework のサポートが追加されました。

バイブランス調整レイヤーのサポート

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());
}

API 経由で PSD のバイブランスを構成する

「vibAResource」クラスが API に追加され、Photoshop® PSD ファイルのさまざまなバイブランス関連のプロパティを構成、取得、および設定できるようになりました。次の C# コードの例では、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);
}

このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.PSD for .NET 22.2 - Release Notes にアクセスしてください。

 日本