Reputation: 4923
I am working on client server application in android and want to zoom the image sent from client on server and get the zoomed image back. how can i do it?
Upvotes: 2
Views: 114
Reputation: 440
Try this, if you dont want use imageview
Use TouchImageView https://github.com/MikeOrtiz/TouchImageView
<com.luminous.pick.TouchImageView
android:id="@+id/img2"
android:layout_width="match_parent"
android:layout_height="match_parent" />
I hope it will help you..
Upvotes: 0