Package com.jhlabs.image
Class RaysFilter
- java.lang.Object
-
- com.jhlabs.image.AbstractBufferedImageOp
-
- com.jhlabs.image.MotionBlurOp
-
- com.jhlabs.image.RaysFilter
-
- All Implemented Interfaces:
java.awt.image.BufferedImageOp
,java.lang.Cloneable
public class RaysFilter extends MotionBlurOp
-
-
Constructor Summary
Constructors Constructor Description RaysFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.image.BufferedImage
filter(java.awt.image.BufferedImage src, java.awt.image.BufferedImage dst)
Colormap
getColormap()
float
getOpacity()
boolean
getRaysOnly()
float
getStrength()
float
getThreshold()
void
setColormap(Colormap colormap)
void
setOpacity(float opacity)
void
setRaysOnly(boolean raysOnly)
void
setStrength(float strength)
void
setThreshold(float threshold)
java.lang.String
toString()
-
Methods inherited from class com.jhlabs.image.MotionBlurOp
getAngle, getCentre, getCentreX, getCentreY, getDistance, getRotation, getZoom, setAngle, setCentre, setCentreX, setCentreY, setDistance, setRotation, setZoom
-
Methods inherited from class com.jhlabs.image.AbstractBufferedImageOp
clone, createCompatibleDestImage, getBounds2D, getPoint2D, getRenderingHints, getRGB, setRGB
-
-
-
-
Method Detail
-
setOpacity
public void setOpacity(float opacity)
-
getOpacity
public float getOpacity()
-
setThreshold
public void setThreshold(float threshold)
-
getThreshold
public float getThreshold()
-
setStrength
public void setStrength(float strength)
-
getStrength
public float getStrength()
-
setRaysOnly
public void setRaysOnly(boolean raysOnly)
-
getRaysOnly
public boolean getRaysOnly()
-
setColormap
public void setColormap(Colormap colormap)
-
getColormap
public Colormap getColormap()
-
filter
public java.awt.image.BufferedImage filter(java.awt.image.BufferedImage src, java.awt.image.BufferedImage dst)
- Specified by:
filter
in interfacejava.awt.image.BufferedImageOp
- Overrides:
filter
in classMotionBlurOp
-
toString
public java.lang.String toString()
- Overrides:
toString
in classMotionBlurOp
-
-