org.apache.batik.ext.awt.image.renderable
Interface FilterColorInterpolation
- All Superinterfaces:
- Filter, RenderableImage
- All Known Subinterfaces:
- ColorMatrixRable, ComponentTransferRable, CompositeRable, ConvolveMatrixRable, DiffuseLightingRable, DisplacementMapRable, GaussianBlurRable, SpecularLightingRable, TileRable, TurbulenceRable
- All Known Implementing Classes:
- ColorMatrixRable8Bit, ComponentTransferRable8Bit, CompositeRable8Bit, ConvolveMatrixRable8Bit, DiffuseLightingRable8Bit, DisplacementMapRable8Bit, GaussianBlurRable8Bit, SpecularLightingRable8Bit, TileRable8Bit, TurbulenceRable8Bit
public interface FilterColorInterpolation
- extends Filter
This is an extension of our Filter interface that adds support for
a color-interpolation specification which indicates what colorspace the
operation should take place in.
- Version:
- $Id: FilterColorInterpolation.java 1733416 2016-03-03 07:07:13Z gadams $
- Author:
- Thomas DeWeese
|
Method Summary |
ColorSpace |
getOperationColorSpace()
Returns the ColorSpace that the object will perform
it's work in. |
boolean |
isColorSpaceLinear()
Returns true if this operation is to be performed in
the linear sRGB colorspace, returns false if the
operation is performed in gamma corrected sRGB. |
void |
setColorSpaceLinear(boolean csLinear)
Sets the colorspace the operation will be performed in. |
| Methods inherited from interface java.awt.image.renderable.RenderableImage |
createDefaultRendering, createRendering, createScaledRendering, getHeight, getMinX, getMinY, getProperty, getPropertyNames, getSources, getWidth, isDynamic |
isColorSpaceLinear
boolean isColorSpaceLinear()
- Returns true if this operation is to be performed in
the linear sRGB colorspace, returns false if the
operation is performed in gamma corrected sRGB.
setColorSpaceLinear
void setColorSpaceLinear(boolean csLinear)
- Sets the colorspace the operation will be performed in.
- Parameters:
csLinear - if true this operation will be performed in the
linear sRGB colorspace, if false the operation will be performed in
gamma corrected sRGB.
getOperationColorSpace
ColorSpace getOperationColorSpace()
- Returns the ColorSpace that the object will perform
it's work in.
Copyright © 2000–2017 Apache Software Foundation. All rights reserved.