Package com.jhlabs.image
Class TileImageFilter
java.lang.Object
com.jhlabs.image.AbstractBufferedImageOp
com.jhlabs.image.TileImageFilter
- All Implemented Interfaces:
BufferedImageOp
,Cloneable
A filter which tiles an image into a lerger one.
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a TileImageFilter.TileImageFilter
(int width, int height) Construct a TileImageFilter. -
Method Summary
Modifier and TypeMethodDescriptionfilter
(BufferedImage src, BufferedImage dst) int
Get the output image height.int
getWidth()
Get the output image width.void
setHeight
(int height) Set the output image height.void
setWidth
(int width) Set the output image width.toString()
Methods inherited from class com.jhlabs.image.AbstractBufferedImageOp
clone, createCompatibleDestImage, getBounds2D, getPoint2D, getRenderingHints, getRGB, setRGB
-
Constructor Details
-
TileImageFilter
public TileImageFilter()Construct a TileImageFilter. -
TileImageFilter
public TileImageFilter(int width, int height) Construct a TileImageFilter.- Parameters:
width
- the output image widthheight
- 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
-
toString
-