Reputation: 2619
I have to implement image cropping in my application, I get a lot help from stack overflow and other resources but unable to find documentation from android help site.
Upvotes: 0
Views: 132
Reputation: 1006604
There is nothing in the Android SDK for image cropping, which is why you will not find documentation on image cropping. You will either need to implement that yourself, or use any number of image cropping libraries available for Android.
A variety of such libraries show up with a Web search on android image cropping library
, such as this one, this one, and this one.
Upvotes: 1