RasterResampling

enum RasterResampling : Enum<RasterResampling> , LayerProperty

The resampling/interpolation method to use for overscaling, also known as texture magnification filter

Parameters

value

String value of this property

Entries

NEAREST
Link copied to clipboard
NEAREST("nearest")

Nearest neighbor filtering interpolates pixel values using the nearest original source pixel creating a sharp but pixelated look when overscaled

LINEAR
Link copied to clipboard
LINEAR("linear")

(Bi)linear filtering interpolates pixel values using the weighted average of the four closest original source pixels creating a smooth but blurry look when overscaled

Properties

name
Link copied to clipboard
val name: String
ordinal
Link copied to clipboard
val ordinal: Int
value
Link copied to clipboard
open override val value: String