Image rotation algorithm
- by Stefano Driussi
I'm looking for an algorithm that rotates an image by some degrees (input).
public Image rotateImage(Image image, int degrees)
(Image instances could be replaced with int[] containing each pixel RGB values,
My problem is that i need to implement it for a JavaME MIDP 2.0 project so i must use code runnable on JVM prior to version 1.5
Can anyone…