I need to know;
When a bitmap image is zoomed how to get the coordinates(x and y) of currently visible part in the screen of that bit map
Thanks
I need to know;
When a bitmap image is zoomed how to get the coordinates(x and y) of currently visible part in the screen of that bit map
Thanks
float [] values = new float[9];
matrix.getValues(values);
the x coor you want --> float transX = m[Matrix.MTRANS_X];
the y coor you want --> float transY = m[Matrix.MTRANS_Y];