製品を閲覧する

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.

 

.NET 22.1 用の Aspose.PSD

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

ファイルの詳細

  • ダウンロード:
  • 18
  • ファイルサイズ:
  • 22.5 MB
  • Posted By:
  • DmitriySorokin
  • ビュー:
  • 34
  • 追加日:
  • 12/28/2021

リリースノート

説明

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

ファイルの詳細

パターン オーバーレイの適用の改善

以前は、PatternOverlay は一度しか適用できませんでした。現在、この問題は API で修正されています。

ガウスぼかしの最適化されたレンダリング

Gaussian Blur スマート フィルターをより最適化された方法でレンダリングする機能。以下は、API を介してガウスぼかしを適用する C# コード サンプルです。

string sourceFilte = "psdnet991_layers.psd";
string outputPsd = "out_psdnet991_layers.psd";
string outputPng = "out_psdnet991_layers.png";

    using (var image = (PsdImage)Image.Load(sourceFilte))
    {
        SmartObjectLayer smartLayer = (SmartObjectLayer)image.Layers[1];
        Layer maskLayer = image.Layers[2];
        Layer regularLayer = image.Layers[3];

        GaussianBlurSmartFilter gaussianBlur = new GaussianBlurSmartFilter();
        gaussianBlur.Radius = 10;

        // Apply filter to SmartObject
        gaussianBlur.Apply(smartLayer);
        smartLayer.SmartFilters.UpdateResourceValues();
        smartLayer.UpdateModifiedContent();

        // Apply filter to layer mask
        gaussianBlur.ApplyToMask(maskLayer);

        //Apply filter to layer
        gaussianBlur.Apply(regularLayer);

        image.Save(outputPsd);
        image.Save(outputPng, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
    }

PattResource サポートの改善

PattResource で多くのパターン データのサポートが追加されました。

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

 日本