public static class RenderingSettings.ImageRenderingSettings extends Object
| Constructor and Description |
|---|
ImageRenderingSettings() |
| Modifier and Type | Method and Description |
|---|---|
void |
addPropertyChangeListener(PropertyChangeListener listener)
Adds specified user-class instance that needs to be notified of changes
in the image-rendering settings.
|
ImageSmoothingAlgorithm |
getImageSmoothingAlgorithm()
Returns current image-smoothing algorithm.
|
Interpolation |
getInterpolation()
Returns affine transform method used to perform a linear mapping from
2D coordinates in an image to its rendering surface on the viewer.
|
boolean |
isImageSmoothing()
Returns if image-smoothing is enabled.
|
void |
setImageSmoothing(boolean imageSmoothing)
Specifies whether to enable image-smoothing.
|
void |
setImageSmoothingAlgorithm(ImageSmoothingAlgorithm imageSmoothingAlgorithm)
Specifies image-smoothing algorithm to be applied for rendering images.
|
void |
setInterpolation(Interpolation interpolation)
Specifies affine transform method used to perform a linear mapping from
2D coordinates in an image to its rendering surface on the viewer.
|
String |
toString() |
public Interpolation getInterpolation()
public void setInterpolation(Interpolation interpolation)
interpolation - affine transform method to usepublic boolean isImageSmoothing()
public void setImageSmoothing(boolean imageSmoothing)
imageSmoothing - true if image-smoothing needs to be enabled; false if otherwisepublic ImageSmoothingAlgorithm getImageSmoothingAlgorithm()
public void setImageSmoothingAlgorithm(ImageSmoothingAlgorithm imageSmoothingAlgorithm)
imageSmoothingAlgorithm - image-smoothing algorithm to be applied.public void addPropertyChangeListener(PropertyChangeListener listener)
listener - listener that needs to be added