Class GraphicsNodeRable8Bit
java.lang.Object
org.apache.batik.ext.awt.image.renderable.AbstractRable
org.apache.batik.gvt.filter.GraphicsNodeRable8Bit
- All Implemented Interfaces:
RenderableImage, Filter, PaintRable, GraphicsNodeRable
This implementation of RenderableImage will render its input
GraphicsNode into a BufferedImage upon invokation of one of its
createRendering methods.
-
Field Summary
Fields inherited from class AbstractRable
props, srcs, stampFields inherited from interface RenderableImage
HINTS_OBSERVED -
Constructor Summary
ConstructorsConstructorDescriptionGraphicsNodeRable8Bit(GraphicsNode node, boolean usePrimitivePaint) GraphicsNodeRable8Bit(GraphicsNode node, Map props) -
Method Summary
Modifier and TypeMethodDescriptionvoidClear any cached Red.createRendering(RenderContext renderContext) Creates a RenderedImage that represented a rendering of this image using a given RenderContext.Returns the bounds of this Rable in the user coordinate system.Returns theGraphicsNoderendered by this imagebooleanReturns true if this Rable get's it's contents by calling primitivePaint on the associatedGraphicsNodeor false if it uses paint.booleanReturns true if successive renderings (that is, calls to createRendering() or createScaledRendering()) with the same arguments may produce different results.booleanpaintRable(Graphics2D g2d) Should perform the equivilent action as createRendering followed by drawing the RenderedImage to Graphics2D, or return false.voidsetGraphicsNode(GraphicsNode node) Sets theGraphicsNodethis image should rendervoidsetUsePrimitivePaint(boolean usePrimitivePaint) Set to true if this Rable should get it's contents by calling primitivePaint on the associatedGraphicsNodeor false if it should use paint.Methods inherited from class AbstractRable
createDefaultRendering, createScaledRendering, getDependencyRegion, getDirtyRegion, getHeight, getMinX, getMinY, getProperty, getPropertyNames, getSources, getTimeStamp, getWidth, init, init, init, init, touchMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Filter
getDependencyRegion, getDirtyRegion, getTimeStampMethods inherited from interface RenderableImage
createDefaultRendering, createScaledRendering, getHeight, getMinX, getMinY, getProperty, getPropertyNames, getSources, getWidth
-
Constructor Details
-
GraphicsNodeRable8Bit
- Parameters:
node- The GraphicsNode this image should represent
-
GraphicsNodeRable8Bit
- Parameters:
node- The GraphicsNode this image should representprops- The Properties for this image.
-
GraphicsNodeRable8Bit
- Parameters:
node- the GraphicsNode this image should representusePrimitivePaint- indicates if the image should include any filters or mask operations onnode
-
-
Method Details
-
getUsePrimitivePaint
public boolean getUsePrimitivePaint()Returns true if this Rable get's it's contents by calling primitivePaint on the associatedGraphicsNodeor false if it uses paint.- Specified by:
getUsePrimitivePaintin interfaceGraphicsNodeRable
-
setUsePrimitivePaint
public void setUsePrimitivePaint(boolean usePrimitivePaint) Set to true if this Rable should get it's contents by calling primitivePaint on the associatedGraphicsNodeor false if it should use paint.- Specified by:
setUsePrimitivePaintin interfaceGraphicsNodeRable
-
getGraphicsNode
Returns theGraphicsNoderendered by this image- Specified by:
getGraphicsNodein interfaceGraphicsNodeRable- Returns:
- the
GraphicsNodeassociated with this image.
-
setGraphicsNode
Sets theGraphicsNodethis image should render- Specified by:
setGraphicsNodein interfaceGraphicsNodeRable
-
clearCache
public void clearCache()Clear any cached Red. -
getBounds2D
Returns the bounds of this Rable in the user coordinate system.- Specified by:
getBounds2Din interfaceFilter- Overrides:
getBounds2Din classAbstractRable
-
isDynamic
public boolean isDynamic()Returns true if successive renderings (that is, calls to createRendering() or createScaledRendering()) with the same arguments may produce different results. This method may be used to determine whether an existing rendering may be cached and reused. It is always safe to return true.- Specified by:
isDynamicin interfaceRenderableImage- Overrides:
isDynamicin classAbstractRable
-
paintRable
Should perform the equivilent action as createRendering followed by drawing the RenderedImage to Graphics2D, or return false.- Specified by:
paintRablein interfacePaintRable- Parameters:
g2d- The Graphics2D to draw to.- Returns:
- true if the paint call succeeded, false if for some reason the paint failed (in which case a createRendering should be used).
-
createRendering
Creates a RenderedImage that represented a rendering of this image using a given RenderContext. This is the most general way to obtain a rendering of a RenderableImage.The created RenderedImage may have a property identified by the String HINTS_OBSERVED to indicate which RenderingHints (from the RenderContext) were used to create the image. In addition any RenderedImages that are obtained via the getSources() method on the created RenderedImage may have such a property.
- Specified by:
createRenderingin interfaceRenderableImage- Parameters:
renderContext- the RenderContext to use to produce the rendering.- Returns:
- a RenderedImage containing the rendered data.
-