ImageViewZoom icon indicating copy to clipboard operation
ImageViewZoom copied to clipboard

How to get coordinates (pixels area) of points in an image

Open g-n-p opened this issue 5 years ago • 0 comments

How to get coordinates of points in an image.

imageViewTouch.setSingleTapListener(new ImageViewTouch.OnImageViewTouchSingleTapListener() { @Override public void onSingleTapConfirmed() { x = String.valueOf(imageViewTouch.getY()); y = String.valueOf(imageViewTouch.getX()); } });

Unfortunately, this is not correct. In which direction should we move towards the right solution?

g-n-p avatar May 05 '20 21:05 g-n-p