Interface FilterChainRable
- All Superinterfaces:
Filter, RenderableImage
- All Known Implementing Classes:
FilterChainRable8Bit
-
Field Summary
Fields inherited from interface RenderableImage
HINTS_OBSERVED -
Method Summary
Modifier and TypeMethodDescriptionReturns the filter output area, in user spaceintReturns the resolution along the X axis.intReturns the resolution along the Y axis.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.voidSets the source for this chain.Methods inherited from interface Filter
getBounds2D, getDependencyRegion, getDirtyRegion, getTimeStampMethods inherited from interface RenderableImage
createDefaultRendering, createRendering, createScaledRendering, getHeight, getMinX, getMinY, getProperty, getPropertyNames, getSources, getWidth, isDynamic
-
Method Details
-
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. -
setFilterRegion
Sets the filter output area, in user space. -
getFilterRegion
Rectangle2D getFilterRegion()Returns the filter output area, in user space -
setSource
Sets the source for this chain. Should not be null -
getSource
Filter getSource()Returns this filter's source.
-