Class TexturePaint
java.lang.Object
java.awt.TexturePaint
- All Implemented Interfaces:
Paint,Transparency
The
TexturePaint class provides a way to fill aShape with a texture that is specified as aBufferedImage. The size of theBufferedImage object should be small because theBufferedImage data is copied by theTexturePaint object. At construction time, the texture is anchored to the upper left corner of aRectangle2D that is specified in user space. Texture is computed for locations in the device space by conceptually replicating the specifiedRectangle2D infinitely in all directions in user space and mapping theBufferedImage to each replicatedRectangle2D.Field Summary
Fields declared in interface java.awt.Transparency
BITMASK,OPAQUE,TRANSLUCENTConstructor Summary
ConstructorsConstructorDescriptionTexturePaint(BufferedImage txtr,Rectangle2D anchor) Constructs aTexturePaintobject.Method Summary
Modifier and TypeMethodDescriptioncreateContext(ColorModel cm,Rectangle deviceBounds,Rectangle2D userBounds,AffineTransform xform,RenderingHints hints) Creates and returns aPaintContextused to generate a tiled image pattern.Returns a copy of the anchor rectangle which positions and sizes the textured image.getImage()Returns theBufferedImagetexture used to fill the shapes.intReturns the transparency mode for thisTexturePaint.
Constructor Details
TexturePaint
Constructs aTexturePaintobject.- Parameters:
txtr- theBufferedImageobject with the texture used for paintinganchor- theRectangle2Din user space used to anchor and replicate the texture
Method Details
getImage
Returns theBufferedImagetexture used to fill the shapes.- Returns:
- a
BufferedImage.
getAnchorRect
Returns a copy of the anchor rectangle which positions and sizes the textured image.- Returns:
- the
Rectangle2Dused to anchor and size thisTexturePaint.
createContext
public PaintContext createContext(ColorModel cm,Rectangle deviceBounds,Rectangle2D userBounds,AffineTransform xform,RenderingHints hints) Creates and returns aPaintContextused to generate a tiled image pattern. See thespecificationof the method in thePaintinterface for information on null parameter handling.- Specified by:
createContextin interfacePaint- Parameters:
cm- the preferredColorModelwhich represents the most convenient format for the caller to receive the pixel data, ornullif there is no preference.deviceBounds- the device space bounding box of the graphics primitive being rendered.userBounds- the user space bounding box of the graphics primitive being rendered.xform- theAffineTransformfrom user space into device space.hints- the set of hints that the context object can use to choose between rendering alternatives.- Returns:
- the
PaintContextfor generating color patterns. - See Also:
getTransparency
public int getTransparency()Returns the transparency mode for thisTexturePaint.- Specified by:
getTransparencyin interfaceTransparency- Returns:
- the transparency mode for this
TexturePaintas an integer value. - See Also: