如何检查坐标是在位图内还是在位图外

  • 本文关键字:位图 何检查 坐标 android bitmap
  • 更新时间 :
  • 英文 :

  • 我有一个Bitmap = x

  • 我有BitMapxCoOrdinate
    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
}

相关内容

  • 没有找到相关文章

最新更新