二、图像旋转 Android中提供了对Bitmap进行矩阵旋转的操作,参见Bitmap提供的静态createBitmap方法. public static Bitmap createBitmap (Bitmap source, int x, int y, int width, int height, Matrix m, boolean filter)
IllegalArgumentException if the x, y, width, height values are outside of the dimensions of the source bitmap. 到此这两个问题理论上都解决了,开始实际操作一下吧,参照以下代码。