public class ImageOptions
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
imageConfig
Indicates the in-memory configuration for images displayed by WorldWind components.
|
int |
resamplingMode
Indicates the image sampling algorithm used by WorldWind to display images that appear larger or smaller on
screen than their native resolution.
|
int |
wrapMode
Indicates how WorldWind displays the contents of an image when attempting to draw a region outside of the image
bounds.
|
Constructor and Description |
---|
ImageOptions()
Constructs an image options with default values.
|
ImageOptions(int imageConfig)
Constructs an image options with an image configuration.
|
public int imageConfig
WorldWind.RGBA_8888
and WorldWind.RGB_565
.public int resamplingMode
WorldWind.BILINEAR
and WorldWind.NEAREST_NEIGHBOR
.public int wrapMode
WorldWind.CLAMP
and WorldWind.REPEAT
.public ImageOptions()
public ImageOptions(int imageConfig)
imageConfig
- the image configuration to use. Accepted values are WorldWind.RGBA_8888
and WorldWind.RGB_565
.