Android中png图像的特定旋转

时间:2012-11-15 20:50:06

标签: android rotation png

我有一张png图片。

original image

然后,我想在下一张图片上翻转这个三角形。

enter image description here

红色区域是我们原始图像的反射和转动。然后我想在不同的角度旋转新区域(红色区域)。 我怎么能在android中做到这一点? 提前谢谢!

1 个答案:

答案 0 :(得分:3)

要在Android中旋转图像,您应该看这里

或者

要获得PNG的镜像,请执行此操作(取自以下链接,来自Dalmas的答案)

Matrix matrix = new Matrix(); 
matrix.preScale(-1.0f, 1.0f); 
Bitmap mirroredBitmap = Bitmap.createBitmap(bmp, 0, 0, bmp.width(), bmp.height(),  matrix, false);

旋转矢量看这里