Image.Resize
Contenido
[
Ocultar
]Resize(int, int)
Cambia el tamaño de la imagen. El valor por defectoLeftTopToLeftTopse usa.
public void Resize(int newWidth, int newHeight)
Parámetro | Escribe | Descripción |
---|---|---|
newWidth | Int32 | El nuevo ancho. |
newHeight | Int32 | La nueva altura. |
Ejemplos
El siguiente ejemplo demuestra cómo cambiar el tamaño de la imagen PSD y el resultado que obtenemos con 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 });
}
Ver también
- class Image
- espacio de nombres Aspose.PSD
- asamblea Aspose.PSD
Resize(int, int, ResizeType)
Cambia el tamaño de la imagen.
public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
Parámetro | Escribe | Descripción |
---|---|---|
newWidth | Int32 | El nuevo ancho. |
newHeight | Int32 | La nueva altura. |
resizeType | ResizeType | El tipo de cambio de tamaño. |
Ver también
- enum ResizeType
- class Image
- espacio de nombres Aspose.PSD
- asamblea Aspose.PSD
Resize(int, int, ImageResizeSettings)
Cambia el tamaño de la imagen.
public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
Parámetro | Escribe | Descripción |
---|---|---|
newWidth | Int32 | El nuevo ancho. |
newHeight | Int32 | La nueva altura. |
settings | ImageResizeSettings | La configuración de cambio de tamaño. |
Ver también
- class ImageResizeSettings
- class Image
- espacio de nombres Aspose.PSD
- asamblea Aspose.PSD