Interface Blur
public interface Blur
- Since:
- 3.2
- Author:
- Jack Meng
-
Method Summary
Modifier and TypeMethodDescriptionblur
(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
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
-