-
我有一个
Bitmap = x
; -
我有BitMap
xCoOrdinate
,yCoOrdinate
内部的坐标
此坐标动态变化,如何确定(xCoOrdinate,yCoOrdinate)
是在位图内还是在位图外
您可以创建Rect并检查坐标是否在其中。
val rect=Rect(imageView.left,imageView.top,imageView.right,imageView.bottom)
if(rect.contains(xCoOrdinate.toInt(),yCoOrdinate.toInt())){
//your x and y coordinates are in the bitmap region
}