Image.Resize
İçindekiler
[
Saklamak
]Resize(int, int, ResizeType)
Görüntüyü yeniden boyutlandırır.
public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
Parametre | Tip | Tanım |
---|---|---|
newWidth | Int32 | Yeni genişlik. |
newHeight | Int32 | Yeni yükseklik. |
resizeType | ResizeType | Yeniden boyutlandırma türü. |
Ayrıca bakınız
- enum ResizeType
- class Image
- ad alanı Aspose.PSD
- toplantı Aspose.PSD
Resize(int, int)
Görüntüyü yeniden boyutlandırır. VarsayılanLeftTopToLeftTopkullanılır.
public void Resize(int newWidth, int newHeight)
Parametre | Tip | Tanım |
---|---|---|
newWidth | Int32 | Yeni genişlik. |
newHeight | Int32 | Yeni yükseklik. |
Örnekler
Aşağıdaki örnek, PSD görüntüsünün nasıl yeniden boyutlandırılacağını ve Aspose.PSD ile elde ettiğimiz sonucu göstermektedir.
[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 });
}
Ayrıca bakınız
- class Image
- ad alanı Aspose.PSD
- toplantı Aspose.PSD
Resize(int, int, ImageResizeSettings)
Görüntüyü yeniden boyutlandırır.
public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
Parametre | Tip | Tanım |
---|---|---|
newWidth | Int32 | Yeni genişlik. |
newHeight | Int32 | Yeni yükseklik. |
settings | ImageResizeSettings | Yeniden boyutlandırma ayarları. |
Ayrıca bakınız
- class ImageResizeSettings
- class Image
- ad alanı Aspose.PSD
- toplantı Aspose.PSD