Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个png图像。
然后,我想翻转这个三角形,就像下一张图片一样。
红色区域是我们的原始图像被反射和转动。然后我想以不同的角度旋转新区域(红色区域)。我怎么能在android中做到这一点?提前致谢!
要在 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);
旋转矢量看这里