 | ImageExScaleToSize 方法 (Bitmap, Int32, Int32) |
Sweet 开发框架
Scales the bitmap to the passed target size without respecting the aspect.
命名空间:
SweetUI
程序集:
SweetUI (在 SweetUI.dll 中) 版本:3.10.1.0 (3.10.1.0)
语法public static Bitmap ScaleToSize(
this Bitmap bitmap,
int width,
int height
)
<ExtensionAttribute>
Public Shared Function ScaleToSize (
bitmap As Bitmap,
width As Integer,
height As Integer
) As Bitmap
[<ExtensionAttribute>]
static member ScaleToSize :
bitmap : Bitmap *
width : int *
height : int -> Bitmap
参数
- bitmap
- 类型:System.DrawingBitmap
The source bitmap. - width
- 类型:SystemInt32
The target width. - height
- 类型:SystemInt32
The target height.
返回值
类型:
BitmapThe scaled bitmap
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
Bitmap 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
示例var bitmap = new Bitmap("image.png");
var thumbnail = bitmap.ScaleToSize(100, 100);
参见