CustomImageEditingView is an Android custom view designed to provide image editing functionalities like move, resize, flip, crop, skew, and opacity adjustment.
- Move the image within the view.
- Resize the image by dragging handles.
- Crop image to a specific area.
- Skew image horizontally or vertically (more control to stick any side)
- Adjust image opacity.
- Save edited image.
5c1c9d4e-ace6-4434-99dc-957baf0a24b5.mp4
1. Add CustomImageEditingView to your layout XML:
<com.image.editor.CustomImageEditingView
android:id="@+id/customImageView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2. Configure image editing modes:
// Set mode to resize
customImageView.setMode(CustomImageEditingView.Mode.RESIZE)
// Set mode to crop
customImageView.setMode(CustomImageEditingView.Mode.CROP)
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch (git checkout -b feature/new-feature).
- Make your changes and commit them (git commit -am 'Add new feature').
- push to the branch (git push origin feature/new-feature).
- Create a pull request.