类 TileImageFilter

  • 所有已实现的接口:
    java.awt.image.BufferedImageOp, java.lang.Cloneable

    public class TileImageFilter
    extends AbstractBufferedImageOp
    A filter which tiles an image into a lerger one.
    • 构造器详细资料

      • TileImageFilter

        public TileImageFilter()
        Construct a TileImageFilter.
      • TileImageFilter

        public TileImageFilter​(int width,
                               int height)
        Construct a TileImageFilter.
        参数:
        width - the output image width
        height - the output image height
    • 方法详细资料

      • setWidth

        public void setWidth​(int width)
        Set the output image width.
        参数:
        width - the width
        另请参阅:
        getWidth()
      • getWidth

        public int getWidth()
        Get the output image width.
        返回:
        the width
        另请参阅:
        setWidth(int)
      • setHeight

        public void setHeight​(int height)
        Set the output image height.
        参数:
        height - the height
        另请参阅:
        getHeight()
      • getHeight

        public int getHeight()
        Get the output image height.
        返回:
        the height
        另请参阅:
        setHeight(int)
      • filter

        public java.awt.image.BufferedImage filter​(java.awt.image.BufferedImage src,
                                                   java.awt.image.BufferedImage dst)
      • toString

        public java.lang.String toString()
        覆盖:
        toString 在类中 java.lang.Object