我们不允许寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,使其可以用事实和引用回答。
Closed 2 years ago.
我正在寻找一种算法,可以将图像旋转一定角度(输入)。
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 help me out with this ?
抱歉,我忘了提到我没有可用的SVG API,并且我需要一种方法来以任意角度旋转,而不仅仅是90-180-270度。
此外,在MIDP 2.0上不可用java.awt.*包。