类 InterpolateFilter

  • 所有已实现的接口:
    java.awt.image.BufferedImageOp, java.lang.Cloneable

    public class InterpolateFilter
    extends AbstractBufferedImageOp
    A filter which interpolates betwen two images. You can set the interpolation factor outside the range 0 to 1 to extrapolate images.
    • 构造器详细资料

      • InterpolateFilter

        public InterpolateFilter()
    • 方法详细资料

      • setDestination

        public void setDestination​(java.awt.image.BufferedImage destination)
        Set the destination image.
        参数:
        destination - the destination image
        另请参阅:
        getDestination()
      • setInterpolation

        public void setInterpolation​(float interpolation)
        Set the interpolation factor.
        参数:
        interpolation - the interpolation factor
        另请参阅:
        getInterpolation()
      • getInterpolation

        public float getInterpolation()
        Get the interpolation factor.
        返回:
        the interpolation factor
        另请参阅:
        setInterpolation(float)
      • filter

        public java.awt.image.BufferedImage filter​(java.awt.image.BufferedImage src,
                                                   java.awt.image.BufferedImage dst)
      • toString

        public java.lang.String toString()
        覆盖:
        toString 在类中 java.lang.Object