Image.Resize

Resize(int, int)

छवि का आकार बदलता है। डिफ़ॉल्टLeftTopToLeftTopप्रयोग किया जाता है.

public void Resize(int newWidth, int newHeight)
पैरामीटरप्रकारविवरण
newWidthInt32नई चौड़ाई.
newHeightInt32नई ऊंचाई.

उदाहरण

निम्न उदाहरण प्रदर्शित करता है कि कैसे PSD छवि का आकार बदलना है और परिणाम हम 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 });
}

यह सभी देखें


Resize(int, int, ResizeType)

छवि का आकार बदलता है।

public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
पैरामीटरप्रकारविवरण
newWidthInt32नई चौड़ाई.
newHeightInt32नई ऊंचाई.
resizeTypeResizeTypeआकार बदलने का प्रकार।

यह सभी देखें


Resize(int, int, ImageResizeSettings)

छवि का आकार बदलता है।

public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
पैरामीटरप्रकारविवरण
newWidthInt32नई चौड़ाई।
newHeightInt32नई ऊंचाई।
settingsImageResizeSettingsआकार बदलें सेटिंग्स।

यह सभी देखें