Enum EmfPlusInterpolationMode

Enum EmfPlusInterpolationMode

名称: Aspose.Imaging.FileFormats.Emf.EmfPlus.Consts 收藏: Aspose.Imaging.dll (25.4.0)

InterpolationMode列表定义如何进行扩展,包括伸展和缩短。

public enum EmfPlusInterpolationMode : byte

Fields

InterpolationModeBicubic = 4

定义比库比交叉,使用最接近的4x4附近的已知像素围绕的交叉像素. 这些16已知像素值的重量平均值决定将值分配到交叉像素. 因为已知像素可能与交叉像素不同距离,更接近的像素在计算中得到更高的重量. 结果看起来比交叉像素更顺利。

InterpolationModeBilinear = 3

指定二进制交叉,使用最接近的2x2附近的已知像素围绕交叉像素. 这些4已知像素值的重量平均值决定将值分配到交叉像素. 结果看起来比交叉像素更顺利。

InterpolationModeDefault = 0

指定默认的Interpolation模式,被定义为InterpolationModeBilinear。

InterpolationModeHighQuality = 2

它定义了高品质的Interpolation模式,被定义为InterpolationModeHighQualityBicubic。

InterpolationModeHighQualityBicubic = 7

指定与预过滤的 bicubic interpolation,从而在这些选项中产生最高质量的结果。

InterpolationModeHighQualityBilinear = 6

用预过滤来定义二进制间隔。

InterpolationModeLowQuality = 1

指定低质量的交互模式,被定义为InterpolationModeNearestNeighbor。

InterpolationModeNearestNeighbor = 5

指定最接近的交差点,仅使用最接近交差点的像素值,这种模式简单地重复或移除像素,从而在这些选项中产生最低质量的结果。

 中文