更改旋转的默认方向

时间:2013-04-05 12:47:52

标签: android rotation

我想从左到右和从右到左旋转图像。 我使用以下代码来旋转图像.matrix.postRotate(90);

        bitmap = Bitmap.createBitmap(bitmap_rotate, 0, 0,
                bitmap_rotate.getWidth(), bitmap_rotate.getHeight(),
                matrix, true);`

但是它总是在同一方向旋转图像。我想改变旋转方向。有没有办法改变方向。我已经google了很多但找不到正确的方向。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

旋转360度 - 你的角色。

在你的情况下: matrix.postRotate(270);