我想从左到右和从右到左方向旋转图像。我正在使用以下代码来旋转图像。`matrix.postRotate(90);
bitmap = Bitmap.createBitmap(bitmap_rotate, 0, 0,
bitmap_rotate.getWidth(), bitmap_rotate.getHeight(),
matrix, true);`
但它总是以相同的方向旋转图像。我想改变旋转方向。有什么办法可以改变方向。我用谷歌搜索了很多,但没有找到合适的。提前致谢。