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