在2D转换后获得在画布上测量的位图大小和位置

时间:2011-05-08 02:52:05

标签: android canvas bitmap

我在Canvas上绘制了一堆位图,应用了2D变换(android.graphics.Camera和android.graphics.Matrix)。如何在Canvas上获取位图的大小/位置?大小将是在Canvas上渲染的位图的边界,位置将是边界的上/左角的坐标。所有位图都是没有alpha通道的常规矩形。

1 个答案:

答案 0 :(得分:4)

为此目的,矩阵类具有mapRect函数:

mapRect(RectF dst, RectF src) Apply this matrix to the src rectangle, and write the transformed rectangle into dst.

将图像的尺寸作为源(如果您使用的是整个图像,则为0,y为0,y),它会将变换后的尺寸作为dst矩形返回。