Interface ComponentTransferRable
- All Superinterfaces:
Filter
,FilterColorInterpolation
,RenderableImage
- All Known Implementing Classes:
ComponentTransferRable8Bit
Defines the interface expected from a component
transfer operation.
- Version:
- $Id: ComponentTransferRable.java 1733416 2016-03-03 07:07:13Z gadams $
-
Field Summary
Fields inherited from interface java.awt.image.renderable.RenderableImage
HINTS_OBSERVED
-
Method Summary
Modifier and TypeMethodDescriptionReturns the transfer function for the alpha channelReturns the transfer function for the blue channelReturns the transfer function for the green channelReturns the transfer function for the red channelReturns the source to be offset.void
setAlphaFunction
(ComponentTransferFunction alphaFunction) Sets the transfer function for the alpha channelvoid
setBlueFunction
(ComponentTransferFunction blueFunction) Sets the transfer function for the blue channelvoid
setGreenFunction
(ComponentTransferFunction greenFunction) Sets the transfer function for the green channelvoid
setRedFunction
(ComponentTransferFunction redFunction) Sets the transfer function for the red channelvoid
Sets the source to be offset.Methods inherited from interface org.apache.batik.ext.awt.image.renderable.Filter
getBounds2D, getDependencyRegion, getDirtyRegion, getTimeStamp
Methods inherited from interface org.apache.batik.ext.awt.image.renderable.FilterColorInterpolation
getOperationColorSpace, isColorSpaceLinear, setColorSpaceLinear
Methods inherited from interface java.awt.image.renderable.RenderableImage
createDefaultRendering, createRendering, createScaledRendering, getHeight, getMinX, getMinY, getProperty, getPropertyNames, getSources, getWidth, isDynamic
-
Method Details
-
getSource
Filter getSource()Returns the source to be offset. -
setSource
Sets the source to be offset.- Parameters:
src
- image to offset.
-
getAlphaFunction
ComponentTransferFunction getAlphaFunction()Returns the transfer function for the alpha channel -
setAlphaFunction
Sets the transfer function for the alpha channel -
getRedFunction
ComponentTransferFunction getRedFunction()Returns the transfer function for the red channel -
setRedFunction
Sets the transfer function for the red channel -
getGreenFunction
ComponentTransferFunction getGreenFunction()Returns the transfer function for the green channel -
setGreenFunction
Sets the transfer function for the green channel -
getBlueFunction
ComponentTransferFunction getBlueFunction()Returns the transfer function for the blue channel -
setBlueFunction
Sets the transfer function for the blue channel
-