当前位置 : 主页 > 手机开发 > android >

如何在Android中绘制到画布的多个图像之间旋转特定图像?

来源:互联网 收集:自由互联 发布时间:2021-06-11
我需要一些帮助,在多个图像中围绕其中心旋转一个图像,这些图像被绘制到 android中的画布. 我正在将图像加载到画布,如下所示. canvas.drawBitmap(mMachineBackground, 0, 0, null);canvas.drawBitmap(mMac
我需要一些帮助,在多个图像中围绕其中心旋转一个图像,这些图像被绘制到 android中的画布.

我正在将图像加载到画布,如下所示.

canvas.drawBitmap(mMachineBackground, 0, 0, null);
canvas.drawBitmap(mMachineRotator, 0, 0, null);

我想只围绕轴的中心旋转第二个位图,而不是旋转整个画布(也包括第一个位图).

提前致谢.

您可以围绕中心轴旋转:

Matrix matrix = new Matrix();

//move image

matrix.setTranslate(getXPos() - (imageWidth / 2), getYPos() - (imageHeight / 2));

//rotate image, getXPos, getYPos are x & y coords of the image

matrix.postRotate(angleInDegrees, getXPos() - imageWidth / 2, getYPos() - imageHeight / 2);

//rotatedBMP is the image you are drawing, 

canvas.drawBitmap(rotatedBMP, matrix, Paint);
网友评论