InterpolationMode 枚举

定义

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

public enum class InterpolationMode
public enum InterpolationMode
type InterpolationMode = 
Public Enum InterpolationMode
继承
InterpolationMode

字段

Bicubic 4

指定双三次插值法。 不进行预筛选。 将图像收缩为原始大小的 25% 以下时,此模式不适用。

Bilinear 3

指定双线性插值法。 不进行预筛选。 将图像收缩为原始大小的 50% 以下时,此模式不适用。

Default 0

指定默认模式。

High 2

指定高质量插值法。

HighQualityBicubic 7

指定高质量的双三次插值法。 执行预筛选以确保高质量的收缩。 此模式可产生质量最高的转换图像。

HighQualityBilinear 6

指定高质量的双线性插值法。 执行预筛选以确保高质量的收缩。

Invalid -1

等效于 Invalid 枚举的 QualityMode 元素。

Low 1

指定低质量插值法。

NearestNeighbor 5

指定最临近插值法。

适用于

另请参阅