Package org.geotools.renderer.style
Class SLDStyleFactory
Object
SLDStyleFactory
Factory object that converts SLD style into rendered styles.
- Author:
- aaime, dblasby
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The default size for Marks when a mark is used, but no size is provided (got from the default size to be used for SVGs and other scalable graphics when no size is provided)static final String
static final String
static final String
static final String
static final String
Java System Property to enable legacy default anchor point. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateDynamicStyle
(SimpleFeature f, Symbolizer symbolizer, Range scaleRange) Creates a rendered stylecreateStyle
(Object drawMe, Symbolizer symbolizer) Creates a rendered stylecreateStyle
(Object drawMe, Symbolizer symbolizer, Range scaleRange) Creates a rendered stylestatic float[]
evaluateDashArray
(Stroke stroke, Object feature) static Composite
getComposite
(Map<String, String> options) Looks up the composite from the vendor options, or returns null if no composite operation has been specified in the optionsstatic Composite
getComposite
(Map<String, String> options, float defaultOpacity) Looks up the composite from the vendor options, or returns null if no composite operation has been specified in the optionsgetComposite
(Fill fill, Object feature) Computes the Composite equivalent to the opacity in the SLD Filldouble
long
getHits()
double
Getter for property mapScaleDenominator.getPaint
(Fill fill, Object feature, Symbolizer symbolizer) The factory builds a fair number of buffered images to deal with external graphics that need resizing and the like.long
static SortBy[]
Returns the sorting directions found in the feature type styleboolean
Enabled by default, this optimization speeds up line rendering when the line width is less than 1.5 pixels when antialiasing is disblaed.boolean
Indicates whether vector rendering should be preferred when painting graphic fills (e.g., using a Mark as stipple) or vector Graphic objects such as SVG ExternalGraphics.static int
static int
lookUpJoin
(String joinType) void
setLineOptimizationEnabled
(boolean lineOptimizationEnabled) void
setMapScaleDenominator
(double mapScaleDenominator) Setter for property mapScaleDenominator.void
setRenderingHints
(RenderingHints renderingHints) void
setVectorRenderingEnabled
(boolean vectorRenderingEnabled) Sets whether vector rendering should be preferred when painting graphic fills (seeisVectorRenderingEnabled()
for more details).
-
Field Details
-
USE_LEGACY_ANCHOR_POINT_KEY
Java System Property to enable legacy default anchor point.- See Also:
-
DEFAULT_MARK_SIZE
public static final int DEFAULT_MARK_SIZEThe default size for Marks when a mark is used, but no size is provided (got from the default size to be used for SVGs and other scalable graphics when no size is provided)- See Also:
-
FONT_NORMAL
- See Also:
-
FONT_ITALIC
- See Also:
-
FONT_OBLIQUE
- See Also:
-
FONT_BOLD
- See Also:
-
-
Constructor Details
-
SLDStyleFactory
public SLDStyleFactory()
-
-
Method Details
-
getRenderingHints
The factory builds a fair number of buffered images to deal with external graphics that need resizing and the like. This hints will be used in those drawing operations. -
setRenderingHints
-
isLineOptimizationEnabled
public boolean isLineOptimizationEnabled()Enabled by default, this optimization speeds up line rendering when the line width is less than 1.5 pixels when antialiasing is disblaed. Unfortunately it also prevents fine line width control when antialiasing is enabled. Given that the optimization has been hard coded for more than six years, we give the user control on this one since turning this off will change the rendering of all existing styles using thin line widths. -
setLineOptimizationEnabled
public void setLineOptimizationEnabled(boolean lineOptimizationEnabled) -
isVectorRenderingEnabled
public boolean isVectorRenderingEnabled()Indicates whether vector rendering should be preferred when painting graphic fills (e.g., using a Mark as stipple) or vector Graphic objects such as SVG ExternalGraphics. The default behavior is to be disabled, meaning that graphic fills are painted as raster images using Java TexturePaint, and SVGs are rendered to a BufferedImage prior to painting on the target Graphics. This common behavior is faster and more suitable for on-screen rendering. Enabling this flag is recommended for rendering to off-screen Graphics such as when printing, cases in which the full quality of the original data should normally be preserved. -
setVectorRenderingEnabled
public void setVectorRenderingEnabled(boolean vectorRenderingEnabled) Sets whether vector rendering should be preferred when painting graphic fills (seeisVectorRenderingEnabled()
for more details).- Parameters:
vectorRenderingEnabled
- a boolean value indicating whether vector rendering should be enabled or not.
-
getHitRatio
public double getHitRatio() -
getHits
public long getHits() -
getRequests
public long getRequests() -
createStyle
Creates a rendered styleMakes use of a symbolizer cache based on identity to avoid recomputing over and over the same style object and to reduce memory usage. The same Style2D object will be returned by subsequent calls using the same feature independent symbolizer with the same scaleRange.
- Parameters:
drawMe
- The featuresymbolizer
- The SLD symbolizer- Returns:
- A rendered style equivalent to the symbolizer
-
createStyle
Creates a rendered styleMakes use of a symbolizer cache based on identity to avoid recomputing over and over the same style object and to reduce memory usage. The same Style2D object will be returned by subsequent calls using the same feature independent symbolizer with the same scaleRange.
- Parameters:
drawMe
- The featuresymbolizer
- The SLD symbolizerscaleRange
- The scale range in which the feature should be painted according to the symbolizer- Returns:
- A rendered style equivalent to the symbolizer
-
createDynamicStyle
Creates a rendered style- Parameters:
f
- The featuresymbolizer
- The SLD symbolizerscaleRange
- The scale range in which the feature should be painted according to the symbolizer- Returns:
- A rendered style equivalent to the symbolizer
- Throws:
UnsupportedOperationException
- if an unknown symbolizer is passed to this method
-
evaluateDashArray
- Throws:
NumberFormatException
-
getPaint
-
getComposite
Computes the Composite equivalent to the opacity in the SLD Fill -
lookUpJoin
-
lookUpCap
-
getComposite
Looks up the composite from the vendor options, or returns null if no composite operation has been specified in the options -
getComposite
Looks up the composite from the vendor options, or returns null if no composite operation has been specified in the options -
getSortBy
Returns the sorting directions found in the feature type style -
getMapScaleDenominator
public double getMapScaleDenominator()Getter for property mapScaleDenominator.- Returns:
- Value of property mapScaleDenominator.
-
setMapScaleDenominator
public void setMapScaleDenominator(double mapScaleDenominator) Setter for property mapScaleDenominator.- Parameters:
mapScaleDenominator
- New value of property mapScaleDenominator.
-