- java.lang.Object
- 
- java.awt.TexturePaint
 
- 
- All Implemented Interfaces:
- Paint,- Transparency
 
 public class TexturePaint extends Object implements Paint TheTexturePaintclass provides a way to fill aShapewith a texture that is specified as aBufferedImage. The size of theBufferedImageobject should be small because theBufferedImagedata is copied by theTexturePaintobject. At construction time, the texture is anchored to the upper left corner of aRectangle2Dthat is specified in user space. Texture is computed for locations in the device space by conceptually replicating the specifiedRectangle2Dinfinitely in all directions in user space and mapping theBufferedImageto each replicatedRectangle2D.- See Also:
- Paint,- Graphics2D.setPaint(java.awt.Paint)
 
- 
- 
Field Summary- 
Fields declared in interface java.awt.TransparencyBITMASK, OPAQUE, TRANSLUCENT
 
- 
 - 
Constructor SummaryConstructors Constructor Description TexturePaint(BufferedImage txtr, Rectangle2D anchor)Constructs aTexturePaintobject.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description PaintContextcreateContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints)Creates and returns aPaintContextused to generate a tiled image pattern.Rectangle2DgetAnchorRect()Returns a copy of the anchor rectangle which positions and sizes the textured image.BufferedImagegetImage()Returns theBufferedImagetexture used to fill the shapes.intgetTransparency()Returns the transparency mode for thisTexturePaint.
 
- 
- 
- 
Constructor Detail- 
TexturePaintpublic TexturePaint(BufferedImage txtr, Rectangle2D anchor) Constructs aTexturePaintobject.- Parameters:
- txtr- the- BufferedImageobject with the texture used for painting
- anchor- the- Rectangle2Din user space used to anchor and replicate the texture
 
 
- 
 - 
Method Detail- 
getImagepublic BufferedImage getImage() Returns theBufferedImagetexture used to fill the shapes.- Returns:
- a BufferedImage.
 
 - 
getAnchorRectpublic Rectangle2D getAnchorRect() Returns a copy of the anchor rectangle which positions and sizes the textured image.- Returns:
- the Rectangle2Dused to anchor and size thisTexturePaint.
 
 - 
createContextpublic 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 interface- Paint
- Parameters:
- cm- the preferred- ColorModelwhich represents the most convenient format for the caller to receive the pixel data, or- nullif 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- the- AffineTransformfrom 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:
- Paint,- PaintContext,- ColorModel,- Rectangle,- Rectangle2D,- AffineTransform,- RenderingHints
 
 - 
getTransparencypublic int getTransparency() Returns the transparency mode for thisTexturePaint.- Specified by:
- getTransparencyin interface- Transparency
- Returns:
- the transparency mode for this TexturePaintas an integer value.
- See Also:
- Transparency
 
 
- 
 
-