Package com.jhlabs.image
Class MarbleFilter
java.lang.Object
com.jhlabs.image.AbstractBufferedImageOp
com.jhlabs.image.TransformFilter
com.jhlabs.image.MarbleFilter
- All Implemented Interfaces:
BufferedImageOp
,Cloneable
This filter applies a marbling effect to an image, displacing pixels by random amounts.
-
Field Summary
Fields inherited from class com.jhlabs.image.TransformFilter
BILINEAR, CLAMP, edgeAction, interpolation, NEAREST_NEIGHBOUR, originalSpace, RGB_CLAMP, transformedSpace, WRAP, ZERO
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfilter
(BufferedImage src, BufferedImage dst) float
Get the amount of effect.float
Returns the turbulence of the effect.float
Get the X scale of the effect.float
Get the Y scale of the effect.void
setAmount
(float amount) Set the amount of effect.void
setTurbulence
(float turbulence) Specifies the turbulence of the effect.void
setXScale
(float xScale) Set the X scale of the effect.void
setYScale
(float yScale) Set the Y scale of the effect.toString()
protected void
transformInverse
(int x, int y, float[] out) Inverse transform a point.Methods inherited from class com.jhlabs.image.TransformFilter
filterPixelsNN, getEdgeAction, getInterpolation, setEdgeAction, setInterpolation, transformSpace
Methods inherited from class com.jhlabs.image.AbstractBufferedImageOp
clone, createCompatibleDestImage, getBounds2D, getPoint2D, getRenderingHints, getRGB, setRGB
-
Constructor Details
-
MarbleFilter
public MarbleFilter()
-
-
Method Details
-
setXScale
public void setXScale(float xScale) Set the X scale of the effect.- Parameters:
xScale
- the scale.- See Also:
-
getXScale
public float getXScale()Get the X scale of the effect.- Returns:
- the scale.
- See Also:
-
setYScale
public void setYScale(float yScale) Set the Y scale of the effect.- Parameters:
yScale
- the scale.- See Also:
-
getYScale
public float getYScale()Get the Y scale of the effect.- Returns:
- the scale.
- See Also:
-
setAmount
public void setAmount(float amount) Set the amount of effect.- Parameters:
amount
- the amount- See Also:
-
getAmount
public float getAmount()Get the amount of effect.- Returns:
- the amount
- See Also:
-
setTurbulence
public void setTurbulence(float turbulence) Specifies the turbulence of the effect.- Parameters:
turbulence
- the turbulence of the effect.- See Also:
-
getTurbulence
public float getTurbulence()Returns the turbulence of the effect.- Returns:
- the turbulence of the effect.
- See Also:
-
transformInverse
protected void transformInverse(int x, int y, float[] out) Description copied from class:TransformFilter
Inverse transform a point. This method needs to be overriden by all subclasses.- Specified by:
transformInverse
in classTransformFilter
- Parameters:
x
- the X position of the pixel in the output imagey
- the Y position of the pixel in the output imageout
- the position of the pixel in the input image
-
filter
- Specified by:
filter
in interfaceBufferedImageOp
- Overrides:
filter
in classTransformFilter
-
toString
-