类 TileImageFilter
- java.lang.Object
-
- org.meteoinfo.image.filter.AbstractBufferedImageOp
-
- org.meteoinfo.image.filter.TileImageFilter
-
- 所有已实现的接口:
BufferedImageOp,Cloneable
public class TileImageFilter extends AbstractBufferedImageOp
A filter which tiles an image into a lerger one.
-
-
构造器概要
构造器 构造器 说明 TileImageFilter()Construct a TileImageFilter.TileImageFilter(int width, int height)Construct a TileImageFilter.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 BufferedImagefilter(BufferedImage src, BufferedImage dst)intgetHeight()Get the output image height.intgetWidth()Get the output image width.voidsetHeight(int height)Set the output image height.voidsetWidth(int width)Set the output image width.StringtoString()-
从类继承的方法 org.meteoinfo.image.filter.AbstractBufferedImageOp
clone, createCompatibleDestImage, getBounds2D, getPoint2D, getRenderingHints, getRGB, setRGB
-
-
-
-
方法详细资料
-
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 BufferedImage filter(BufferedImage src, BufferedImage dst)
-
-