在我看来,我有一个大矩形,矩形可以移动。当矩形移动到某个地方时,我想在大矩形的中心绘制图像。我的问题是我无法将图像的中心放在矩形的中心。 我用过:
canvas.drawBitmap(rotatedBitmap, matrix, paint)
canvas.drawBitmap(rotatedBitmap, left, top, paint)
但是我找不到canvas.drawBitmap(rotateBitmap,centerX,centerY,paint),所以我想使用矩阵,但矩阵也会从左边和顶部开始移动图像,而不是从中心移动图像,你能给出一些线索吗?在矩形的中心画出图片?
答案 0 :(得分:6)
尝试使用矩形的边界作为参考点,然后使用类似:
的内容imageStartX =(rectStartX +(rectWidth / 2)) - (imageWidth / 2);
imageStartY =(rectStartY +(rectHeight / 2)) - (imageHeight / 2);