Interface FilterResRable
-
- All Superinterfaces:
Filter
,java.awt.image.renderable.RenderableImage
- All Known Implementing Classes:
FilterResRable8Bit
public interface FilterResRable extends Filter
Interface for implementing filter resolution.- Version:
- $Id: FilterResRable.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFilterResolutionX()
Returns the resolution along the X axis.int
getFilterResolutionY()
Returns the resolution along the Y axis.Filter
getSource()
Returns the source to be cropped.void
setFilterResolutionX(int filterResolutionX)
Sets the resolution along the X axis, i.e., the maximum size for intermediate images along that axis.void
setFilterResolutionY(int filterResolutionY)
Sets the resolution along the Y axis, i.e., the maximum size for intermediate images along that axis.void
setSource(Filter src)
Sets the source to be cropped-
Methods inherited from interface org.apache.batik.ext.awt.image.renderable.Filter
getBounds2D, getDependencyRegion, getDirtyRegion, getTimeStamp
-
-
-
-
Method Detail
-
getSource
Filter getSource()
Returns the source to be cropped.
-
setSource
void setSource(Filter src)
Sets the source to be cropped- Parameters:
src
- image to offset.
-
getFilterResolutionX
int getFilterResolutionX()
Returns the resolution along the X axis.
-
setFilterResolutionX
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.
-
getFilterResolutionY
int getFilterResolutionY()
Returns the resolution along the Y axis.
-
setFilterResolutionY
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.
-
-