I\'m trying to implement a blurring mechanic on a java game. How do I create a blur effect on runtime?
Read about/Google "Convolution Filters", it's a method of changing a pixels value based on the values of pixels around it. So apart from blurring, you can also do image sharpening and line-finding.