Interface Blur

All Known Implementing Classes:
BlurHash, BoxBlur

public interface Blur
Since:
3.2
Author:
Jack Meng
  • Method Summary

    Modifier and Type
    Method
    Description
    blur(BufferedImage image, int _x, int _y, Object... otherParams)
    This method will be implemented by all Blurring classes that will help to blur an image.
  • Method Details

    • blur

      BufferedImage blur(BufferedImage image, int _x, int _y, Object... otherParams)
      This method will be implemented by all Blurring classes that will help to blur an image.
      Parameters:
      image - The image to blur.
      _x - The x-coordinate of the image.
      _y - The y-coordinate of the image.
      otherParams - Any other parameters that may be needed by that particular method
      Returns:
      A BufferedImage created by the blurring method