public final class EmfPlusFilterType
extends com.aspose.ms.System.Enum
The FilterType enumeration defines types of filtering algorithms that can be used for text and graphics quality enhancement and image rendering.
Modifier and Type | Field and Description |
---|---|
static byte |
FilterTypeBox
Specifies a box filter algorithm, in which each destination pixel is computed by averaging a rectangle of source pixels.
|
static byte |
FilterTypeGaussianQuad
Specifies that a 4-sample Gaussian filter is used, which creates a blur effect on an image.
|
static byte |
FilterTypeLinear
Specifies that linear interpolation is performed using the weighted average of a 2x2 area of pixels surrounding the source pixel.
|
static byte |
FilterTypeNone
Specifies that filtering is not performed.
|
static byte |
FilterTypePoint
Specifies that each destination pixel is computed by sampling the nearest pixel from the source image.
|
static byte |
FilterTypePyramidalQuad
Specifies that a 4-sample tent filter is used.
|
static byte |
FilterTypeTriangle
Specifies that each pixel in the source image contributes equally to the destination image.
|
Clone, CloneTo, format, format, get_Caption, get_Value, getName, getName, getNames, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, getValues, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, register, toObject, toString
public static final byte FilterTypeNone
Specifies that filtering is not performed.
public static final byte FilterTypePoint
Specifies that each destination pixel is computed by sampling the nearest pixel from the source image.
public static final byte FilterTypeLinear
Specifies that linear interpolation is performed using the weighted average of a 2x2 area of pixels surrounding the source pixel.
public static final byte FilterTypeTriangle
Specifies that each pixel in the source image contributes equally to the destination image. This is the slowest of filtering algorithms.
public static final byte FilterTypeBox
Specifies a box filter algorithm, in which each destination pixel is computed by averaging a rectangle of source pixels. This algorithm is useful only when reducing the size of an image.
public static final byte FilterTypePyramidalQuad
Specifies that a 4-sample tent filter is used.
public static final byte FilterTypeGaussianQuad
Specifies that a 4-sample Gaussian filter is used, which creates a blur effect on an image.