Image.Resize

Resize(int, int, ResizeType)

Redimensionne l’image.

public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
ParamètreTaperLa description
newWidthInt32La nouvelle largeur.
newHeightInt32La nouvelle hauteur.
resizeTypeResizeTypeLe type de redimensionnement.

Voir également


Resize(int, int)

Redimensionne l’image. Le défautLeftTopToLeftTopest utilisé.

public void Resize(int newWidth, int newHeight)
ParamètreTaperLa description
newWidthInt32La nouvelle largeur.
newHeightInt32La nouvelle hauteur.

Exemples

L’exemple suivant montre comment redimensionner l’image PSD et le résultat que nous obtenons avec 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 });
}

Voir également


Resize(int, int, ImageResizeSettings)

Redimensionne l’image.

public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
ParamètreTaperLa description
newWidthInt32La nouvelle largeur.
newHeightInt32La nouvelle hauteur.
settingsImageResizeSettingsLes paramètres de redimensionnement.

Voir également