ExtentionsResizeImage 方法
对图片进行缩放 设定新的尺寸 高度不设置的时候按宽度等比例缩放
命名空间: Excel880VSTO程序集: Excel880VSTO (在 Excel880VSTO.dll 中) 版本:1.5.8.0 (1.5.8.0)
public static Image ResizeImage(
this Image img,
int width,
int height = 0
)
<ExtensionAttribute>
Public Shared Function ResizeImage (
img As Image,
width As Integer,
Optional height As Integer = 0
) As Image
Dim img As Image
Dim width As Integer
Dim height As Integer
Dim returnValue As Image
returnValue = img.ResizeImage(width,
height)
- img Image
-
- width Int32
-
- height Int32 (Optional)
- 高度不设置则按宽度等比例缩放 否则直接设定新的宽高
Image在 Visual Basic 和 C# 中,这个方法可以当成为类型
Image 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。