org.apache.batik.ext.awt.image.renderable

Interface FilterChainRable

public interface FilterChainRable extends Filter

Implements a filter operation.
Method Summary
Rectangle2DgetFilterRegion()
Returns the filter output area, in user space
intgetFilterResolutionX()
Returns the resolution along the X axis.
intgetFilterResolutionY()
Returns the resolution along the Y axis.
FiltergetSource()
Returns this filter's source.
voidsetFilterRegion(Rectangle2D filterRegion)
Sets the filter output area, in user space.
voidsetFilterResolutionX(int filterResolutionX)
Sets the resolution along the X axis, i.e., the maximum size for intermediate images along that axis.
voidsetFilterResolutionY(int filterResolutionY)
Sets the resolution along the Y axis, i.e., the maximum size for intermediate images along that axis.
voidsetSource(Filter src)
Sets the source for this chain.

Method Detail

getFilterRegion

public Rectangle2D getFilterRegion()
Returns the filter output area, in user space

getFilterResolutionX

public int getFilterResolutionX()
Returns the resolution along the X axis.

getFilterResolutionY

public int getFilterResolutionY()
Returns the resolution along the Y axis.

getSource

public Filter getSource()
Returns this filter's source.

setFilterRegion

public void setFilterRegion(Rectangle2D filterRegion)
Sets the filter output area, in user space.

setFilterResolutionX

public void setFilterResolutionX(int filterResolutionX)
Sets the resolution along the X axis, i.e., the maximum size for intermediate images along that axis. The value should be greater than zero to have an effect.

setFilterResolutionY

public void setFilterResolutionY(int filterResolutionY)
Sets the resolution along the Y axis, i.e., the maximum size for intermediate images along that axis. The value should be greater than zero to have an effect.

setSource

public void setSource(Filter src)
Sets the source for this chain. Should not be null
Copyright B) 2008 Apache Software Foundation. All Rights Reserved.