Image.Resize

Resize(int, int, ResizeType)

Pas de grootte van de afbeelding aan.

public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
ParameterTypeBeschrijving
newWidthInt32De nieuwe breedte.
newHeightInt32De nieuwe hoogte.
resizeTypeResizeTypeHet formaat wijzigen type.

Zie ook


Resize(int, int)

Wijzigt de grootte van de afbeelding. De standaardLeftTopToLeftTopwordt gebruikt.

public void Resize(int newWidth, int newHeight)
ParameterTypeBeschrijving
newWidthInt32De nieuwe breedte.
newHeightInt32De nieuwe hoogte.

Voorbeelden

Het volgende voorbeeld laat zien hoe u de grootte van de PSD-afbeelding kunt wijzigen en het resultaat dat we krijgen van 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 });
}

Zie ook


Resize(int, int, ImageResizeSettings)

Pas de grootte van de afbeelding aan.

public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
ParameterTypeBeschrijving
newWidthInt32De nieuwe breedte.
newHeightInt32De nieuwe hoogte.
settingsImageResizeSettingsDe instellingen voor formaat wijzigen.

Zie ook