Package com.jhlabs.image
Class BicubicScaleFilter
java.lang.Object
com.jhlabs.image.AbstractBufferedImageOp
com.jhlabs.image.BicubicScaleFilter
- All Implemented Interfaces:
BufferedImageOp
,Cloneable
Scales an image using bi-cubic interpolation, which can't be done with AffineTransformOp.
-
Constructor Summary
ConstructorsConstructorDescriptionBicubicScaleFilter
(int width, int height) Constructor for a filter which scales the input image to the given width and height using bicubic interpolation. -
Method Summary
Methods inherited from class com.jhlabs.image.AbstractBufferedImageOp
clone, createCompatibleDestImage, getBounds2D, getPoint2D, getRenderingHints, getRGB, setRGB
-
Constructor Details
-
BicubicScaleFilter
public BicubicScaleFilter() -
BicubicScaleFilter
public BicubicScaleFilter(int width, int height) Constructor for a filter which scales the input image to the given width and height using bicubic interpolation. Unfortunately, it appears that bicubic actually looks worse than bilinear interpolation on most Java implementations, but you can be the judge.
-
-
Method Details