Image.Resize
Inhalt
[
Ausblenden
]Resize(int, int)
Ändert die Bildgröße. Der StandardLeftTopToLeftTopwird verwendet.
public void Resize(int newWidth, int newHeight)
Parameter | Typ | Beschreibung |
---|---|---|
newWidth | Int32 | Die neue Breite. |
newHeight | Int32 | Die neue Höhe. |
Beispiele
Das folgende Beispiel zeigt, wie die Größe des PSD-Bildes geändert wird, und das Ergebnis erhalten wir durch 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 });
}
Siehe auch
- class Image
- namensraum Aspose.PSD
- Montage Aspose.PSD
Resize(int, int, ResizeType)
Ändert die Bildgröße.
public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
Parameter | Typ | Beschreibung |
---|---|---|
newWidth | Int32 | Die neue Breite. |
newHeight | Int32 | Die neue Höhe. |
resizeType | ResizeType | Der Größenänderungstyp. |
Siehe auch
- enum ResizeType
- class Image
- namensraum Aspose.PSD
- Montage Aspose.PSD
Resize(int, int, ImageResizeSettings)
Ändert die Bildgröße.
public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
Parameter | Typ | Beschreibung |
---|---|---|
newWidth | Int32 | Die neue Breite. |
newHeight | Int32 | Die neue Höhe. |
settings | ImageResizeSettings | Die Größenänderungseinstellungen. |
Siehe auch
- class ImageResizeSettings
- class Image
- namensraum Aspose.PSD
- Montage Aspose.PSD