Image.Resize

Resize(int, int, ResizeType)

画像のサイズを変更します。

public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
パラメータタイプ説明
newWidthInt32新しい幅.
newHeightInt32新しい高さ.
resizeTypeResizeTypeリサイズタイプ.

関連項目


Resize(int, int)

画像のサイズを変更します。デフォルトLeftTopToLeftTop使用されています.

public void Resize(int newWidth, int newHeight)
パラメータタイプ説明
newWidthInt32新しい幅.
newHeightInt32新しい高さ.

次の例は、Aspose.PSD で取得した PSD イメージと結果のサイズを変更する方法を示しています。

[C#]

string sourceFileName = "1.psd";
string exportPathPsd = "ResizeTest.psd";
string exportPathPng = "ResizeTest.png";

using (RasterImage image = Image.Load(sourceFileName) as RasterImage)
{
    image.Resize(190, 143);
    image.Save(exportPathPsd, new PsdOptions());
    image.Save(exportPathPng, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}

関連項目


Resize(int, int, ImageResizeSettings)

画像のサイズを変更します。

public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
パラメータタイプ説明
newWidthInt32新しい幅。
newHeightInt32新しい高さ。
settingsImageResizeSettingsリサイズの設定。

関連項目