Class TileImageFilter

All Implemented Interfaces:
BufferedImageOp, Cloneable

public class TileImageFilter extends AbstractBufferedImageOp
A filter which tiles an image into a lerger one.
  • Constructor Details

    • TileImageFilter

      public TileImageFilter()
      Construct a TileImageFilter.
    • TileImageFilter

      public TileImageFilter(int width, int height)
      Construct a TileImageFilter.
      Parameters:
      width - the output image width
      height - the output image height
  • Method Details

    • setWidth

      public void setWidth(int width)
      Set the output image width.
      Parameters:
      width - the width
      See Also:
    • getWidth

      public int getWidth()
      Get the output image width.
      Returns:
      the width
      See Also:
    • setHeight

      public void setHeight(int height)
      Set the output image height.
      Parameters:
      height - the height
      See Also:
    • getHeight

      public int getHeight()
      Get the output image height.
      Returns:
      the height
      See Also:
    • filter

      public BufferedImage filter(BufferedImage src, BufferedImage dst)
    • toString

      public String toString()
      Overrides:
      toString in class Object