java.awt

Class TexturePaint

  • All Implemented Interfaces:
    Paint, Transparency

    public class TexturePaint
    extends Object
    implements Paint
    The TexturePaint class provides a way to fill a Shape with a texture that is specified as a BufferedImage. The size of the BufferedImage object should be small because the BufferedImage data is copied by the TexturePaint object. At construction time, the texture is anchored to the upper left corner of a Rectangle2D that is specified in user space. Texture is computed for locations in the device space by conceptually replicating the specified Rectangle2D infinitely in all directions in user space and mapping the BufferedImage to each replicated Rectangle2D.
    See Also:
    Paint, Graphics2D.setPaint(java.awt.Paint)
    • Constructor Detail

      • TexturePaint

        public TexturePaint(BufferedImage txtr,
                    Rectangle2D anchor)
        Constructs a TexturePaint object.
        Parameters:
        txtr - the BufferedImage object with the texture used for painting
        anchor - the Rectangle2D in user space used to anchor and replicate the texture
    • Method Detail

      • getImage

        public BufferedImage getImage()
        Returns the BufferedImage texture used to fill the shapes.
        Returns:
        a BufferedImage.
      • getAnchorRect

        public Rectangle2D getAnchorRect()
        Returns a copy of the anchor rectangle which positions and sizes the textured image.
        Returns:
        the Rectangle2D used to anchor and size this TexturePaint.
      • getTransparency

        public int getTransparency()
        Returns the transparency mode for this TexturePaint.
        Specified by:
        getTransparency in interface Transparency
        Returns:
        the transparency mode for this TexturePaint as an integer value.
        See Also:
        Transparency

Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/awt/TexturePaint.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut