Image.Resize
コンテンツ
[
隠れる
]Resize(int, int, ResizeType)
画像のサイズを変更します。
public abstract void Resize(int newWidth, int newHeight, ResizeType resizeType)
パラメータ | タイプ | 説明 |
---|---|---|
newWidth | Int32 | 新しい幅. |
newHeight | Int32 | 新しい高さ. |
resizeType | ResizeType | リサイズタイプ. |
関連項目
- enum ResizeType
- class Image
- 名前空間 Aspose.PSD
- 組み立て Aspose.PSD
Resize(int, int)
画像のサイズを変更します。デフォルトLeftTopToLeftTop使用されています.
public void Resize(int newWidth, int newHeight)
パラメータ | タイプ | 説明 |
---|---|---|
newWidth | Int32 | 新しい幅. |
newHeight | Int32 | 新しい高さ. |
例
次の例は、Aspose.PSD で取得した 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 });
}
関連項目
- class Image
- 名前空間 Aspose.PSD
- 組み立て Aspose.PSD
Resize(int, int, ImageResizeSettings)
画像のサイズを変更します。
public abstract void Resize(int newWidth, int newHeight, ImageResizeSettings settings)
パラメータ | タイプ | 説明 |
---|---|---|
newWidth | Int32 | 新しい幅。 |
newHeight | Int32 | 新しい高さ。 |
settings | ImageResizeSettings | リサイズの設定。 |
関連項目
- class ImageResizeSettings
- class Image
- 名前空間 Aspose.PSD
- 組み立て Aspose.PSD