public class GraphicsQualityOptions
extends java.lang.Object
To learn more, visit the Save a Document documentation article.
| Modifier and Type | Method and Description |
|---|---|
java.awt.RenderingHints |
getRenderingHints() |
boolean |
getUseTileFlipMode()
Gets a flag indicating whether WrapMode is TileFlipXY.
|
void |
setRenderingHints(java.awt.RenderingHints renderingHints) |
void |
setUseTileFlipMode(boolean value)
Sets a flag indicating whether WrapMode is TileFlipXY.
|
public java.awt.RenderingHints getRenderingHints()
public void setRenderingHints(java.awt.RenderingHints renderingHints)
public boolean getUseTileFlipMode()
The WrapMode specifies how a texture or gradient is tiled when it is smaller than the area being filled.
By default uses WrapMode#TILE (specifies tiling without flipping). This causes inaccurate rendering of the scaled image(with high resolution).
This property allows to switch WrapMode to WrapMode#TILE_FLIP_XY (specifies that tiles are flipped horizontally as you move along a row and flipped vertically as you move along a column).
public void setUseTileFlipMode(boolean value)
The WrapMode specifies how a texture or gradient is tiled when it is smaller than the area being filled.
By default uses WrapMode#TILE (specifies tiling without flipping). This causes inaccurate rendering of the scaled image(with high resolution).
This property allows to switch WrapMode to WrapMode#TILE_FLIP_XY (specifies that tiles are flipped horizontally as you move along a row and flipped vertically as you move along a column).
value - A flag indicating whether WrapMode is TileFlipXY.