SKBitmapResizeMethod Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
This API is now deprecated.
Channel selector type for the Resize(SKBitmap, SKBitmap, SKBitmapResizeMethod) method or the Resize(SKPixmap, SKPixmap, SKBitmapResizeMethod) method.
public enum SKBitmapResizeMethod
[System.Obsolete]
public enum SKBitmapResizeMethod
- Inheritance
-
SKBitmapResizeMethod
- Attributes
Fields
Name | Value | Description |
---|---|---|
Box | 0 | Use the box interpolated filter (Shrink: average color; Grow: pixel replication). |
Triangle | 1 | Use the box triangle or bilinear filter. |
Lanczos3 | 2 | Use the Lanczos windowed Sinc filter. |
Hamming | 3 | Use the Hamming windowed Sinc filter (cosine bell variant). |
Mitchell | 4 | Use the Mitchell cubic filter. |