InterpolationMode 枚举

InterpolationMode 枚举指定在缩放或旋转图像时使用的算法。

**命名空间:**System.Drawing.Drawing2D
**程序集:**System.Drawing(在 system.drawing.dll 中)

语法

声明
Public Enumeration InterpolationMode
用法
Dim instance As InterpolationMode
public enum InterpolationMode
public enum class InterpolationMode
public enum InterpolationMode
public enum InterpolationMode

成员

  成员名称 说明
Bicubic 指定双三次插值法。不进行预筛选。将图像收缩为原始大小的 25% 以下时,此模式不适用。 
Bilinear 指定双线性插值法。不进行预筛选。将图像收缩为原始大小的 50% 以下时,此模式不适用。  
Default 指定默认模式。 
High 指定高质量插值法。 
HighQualityBicubic 指定高质量的双三次插值法。执行预筛选以确保高质量的收缩。此模式可产生质量最高的转换图像。 
HighQualityBilinear 指定高质量的双线性插值法。执行预筛选以确保高质量的收缩。  
Invalid 等效于 QualityMode 枚举的 Invalid 元素。 
Low 指定低质量插值法。 
NearestNeighbor 指定最临近插值法。 

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

System.Drawing.Drawing2D 命名空间

其他资源

如何:缩放时使用插值模式控制图像质量