dependencies {
compile 'com.github.takusemba:cropme:1.0.3'
compile "com.android.support:support-dynamic-animation:26.x.x" // need to be more than 26
}
This is an Android library for cropping images.
Move images smoothly, and crop images precisely.
Enjoy cropping!
<com.takusemba.cropme.CropView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:cropme_background_alpha="80%"
app:cropme_max_scale="3"
app:cropme_result_height="80%"
app:cropme_result_width="80%"
app:cropme_with_border="true" />
cropView.setUri(uri);
// or
cropView.setBitmap(bitmap);
cropView.crop(new OnCropListener() {
@Override
public void onSuccess(Bitmap bitmap) {
// do something
}
@Override
public void onFailure() {
}
});
attribute | description | default |
---|---|---|
cropme_result_width | width of propping area in CropView | 80% |
cropme_result_height | height propping area in CropView | 80% |
cropme_max_scale | max scale | 2 |
cropme_with_border | true if white borders are shown while cropping | true |
cropme_background_alpha | background alpha out side of propping area | 80% |
Clone this repo and check out the app module.
- Initial Build
- Taku Semba
- Github - (https://github.com/takusemba)
- Twitter - (https://twitter.com/takusemba)
- Facebook - (https://www.facebook.com/takusemba)
Copyright 2017 Taku Semba.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.