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新高度.

例子

以下示例演示如何调整 PSD 图像的大小以及我们通过 Aspose.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调整大小设置。

也可以看看