Uses of Interface
org.apache.batik.ext.awt.image.ComponentTransferFunction
-
Packages that use ComponentTransferFunction Package Description org.apache.batik.bridge Provides an API for mapping and maintaining consistency between the SVG DOM tree and the GVT tree.org.apache.batik.ext.awt.image Contains extensions to thejava.awt.image
package.org.apache.batik.ext.awt.image.renderable -
-
Uses of ComponentTransferFunction in org.apache.batik.bridge
Methods in org.apache.batik.bridge that return ComponentTransferFunction Modifier and Type Method Description ComponentTransferFunction
SVGFeComponentTransferElementBridge.SVGFeFuncElementBridge. createComponentTransferFunction(org.w3c.dom.Element filterElement, org.w3c.dom.Element funcElement)
Creates aComponentTransferFunction
according to the specified parameters. -
Uses of ComponentTransferFunction in org.apache.batik.ext.awt.image
Classes in org.apache.batik.ext.awt.image that implement ComponentTransferFunction Modifier and Type Class Description class
ConcreteComponentTransferFunction
This class implements the interface expected from a component transfer function.Methods in org.apache.batik.ext.awt.image that return ComponentTransferFunction Modifier and Type Method Description static ComponentTransferFunction
ConcreteComponentTransferFunction. getDiscreteTransfer(float[] tableValues)
Returns a discrete transfer functionstatic ComponentTransferFunction
ConcreteComponentTransferFunction. getGammaTransfer(float amplitude, float exponent, float offset)
Returns a gamma functionstatic ComponentTransferFunction
ConcreteComponentTransferFunction. getIdentityTransfer()
Returns an instance initialized as an identity transfer functionstatic ComponentTransferFunction
ConcreteComponentTransferFunction. getLinearTransfer(float slope, float intercept)
Returns a linear transfer functionstatic ComponentTransferFunction
ConcreteComponentTransferFunction. getTableTransfer(float[] tableValues)
Returns a table transfer function -
Uses of ComponentTransferFunction in org.apache.batik.ext.awt.image.renderable
Methods in org.apache.batik.ext.awt.image.renderable that return ComponentTransferFunction Modifier and Type Method Description ComponentTransferFunction
ComponentTransferRable. getAlphaFunction()
Returns the transfer function for the alpha channelComponentTransferFunction
ComponentTransferRable8Bit. getAlphaFunction()
Returns the transfer function for the alpha channelComponentTransferFunction
ComponentTransferRable. getBlueFunction()
Returns the transfer function for the blue channelComponentTransferFunction
ComponentTransferRable8Bit. getBlueFunction()
Returns the transfer function for the blue channelComponentTransferFunction
ComponentTransferRable. getGreenFunction()
Returns the transfer function for the green channelComponentTransferFunction
ComponentTransferRable8Bit. getGreenFunction()
Returns the transfer function for the green channelComponentTransferFunction
ComponentTransferRable. getRedFunction()
Returns the transfer function for the red channelComponentTransferFunction
ComponentTransferRable8Bit. getRedFunction()
Returns the transfer function for the red channelMethods in org.apache.batik.ext.awt.image.renderable with parameters of type ComponentTransferFunction Modifier and Type Method Description void
ComponentTransferRable. setAlphaFunction(ComponentTransferFunction alphaFunction)
Sets the transfer function for the alpha channelvoid
ComponentTransferRable8Bit. setAlphaFunction(ComponentTransferFunction alphaFunction)
Sets the transfer function for the alpha channelvoid
ComponentTransferRable. setBlueFunction(ComponentTransferFunction blueFunction)
Sets the transfer function for the blue channelvoid
ComponentTransferRable8Bit. setBlueFunction(ComponentTransferFunction blueFunction)
Sets the transfer function for the blue channelvoid
ComponentTransferRable. setGreenFunction(ComponentTransferFunction greenFunction)
Sets the transfer function for the green channelvoid
ComponentTransferRable8Bit. setGreenFunction(ComponentTransferFunction greenFunction)
Sets the transfer function for the green channelvoid
ComponentTransferRable. setRedFunction(ComponentTransferFunction redFunction)
Sets the transfer function for the red channelvoid
ComponentTransferRable8Bit. setRedFunction(ComponentTransferFunction redFunction)
Sets the transfer function for the red channelConstructors in org.apache.batik.ext.awt.image.renderable with parameters of type ComponentTransferFunction Constructor Description ComponentTransferRable8Bit(Filter src, ComponentTransferFunction alphaFunction, ComponentTransferFunction redFunction, ComponentTransferFunction greenFunction, ComponentTransferFunction blueFunction)
-