├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── appexecutors │ │ └── piceditorsample │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── appexecutors │ │ │ └── piceditorsample │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── dialog_crop.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── appexecutors │ └── piceditorsample │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── piceditor ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── appexecutors │ │ └── piceditor │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── appexecutors │ │ │ └── piceditor │ │ │ ├── EditOptions.kt │ │ │ ├── PicEditor.kt │ │ │ ├── PicEditorFragment.kt │ │ │ └── editorengine │ │ │ ├── AddMoreImagesListener.kt │ │ │ ├── PicViewModel.kt │ │ │ ├── actions │ │ │ ├── CropAspectRatio.kt │ │ │ ├── CropAspectRatioAdapter.kt │ │ │ └── CropRotateFragment.kt │ │ │ ├── interfaces │ │ │ └── PermissionCallback.kt │ │ │ ├── models │ │ │ ├── MediaFinal.kt │ │ │ └── MediaPreview.kt │ │ │ ├── preview │ │ │ ├── ImagePreviewFragment.kt │ │ │ ├── MediaPreviewPagerAdapter.kt │ │ │ ├── MediaThumbnailAdapter.kt │ │ │ └── VideoPreviewFragment.kt │ │ │ └── utils │ │ │ ├── AppConstants.kt │ │ │ ├── GlobalEventListener.kt │ │ │ ├── PermissionUtils.kt │ │ │ ├── ToolType.kt │ │ │ ├── Utils.kt │ │ │ ├── WatermarkType.kt │ │ │ └── keyboard │ │ │ ├── KeyboardHeightObserver.kt │ │ │ └── KeyboardHeightProvider.kt │ └── res │ │ ├── drawable │ │ ├── background_alpha_blue_dark_border.xml │ │ ├── background_black_alpha.xml │ │ ├── background_transparent_light_border.xml │ │ ├── background_transparent_white_border.xml │ │ ├── ic_arrow_back_black.xml │ │ ├── ic_back_to_clear.xml │ │ ├── ic_check_black.xml │ │ ├── ic_clear_to_back.xml │ │ ├── ic_crop_rotate_black.xml │ │ ├── ic_delete_black.xml │ │ ├── ic_free_crop.png │ │ ├── ic_mode_edit_black.xml │ │ ├── ic_photo_black.xml │ │ ├── ic_redo_black.xml │ │ ├── ic_rotate_right_black.xml │ │ ├── ic_text_black.xml │ │ ├── ic_undo_black.xml │ │ ├── ratio_1is1.png │ │ ├── ratio_3is2.png │ │ ├── ratio_3is4.png │ │ ├── ripple_circular_button_white.xml │ │ ├── shape_circle.xml │ │ └── shape_circle_transparent.xml │ │ ├── layout │ │ ├── activity_pic_editor.xml │ │ ├── fragment_crop_rotate.xml │ │ ├── fragment_image_preview.xml │ │ ├── fragment_pic_editor.xml │ │ ├── fragment_video_preview.xml │ │ ├── popupwindow.xml │ │ ├── recycler_item_crop_ratio.xml │ │ └── recycler_item_thumbnail.xml │ │ ├── navigation │ │ └── navigation_editor.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── appexecutors │ └── piceditor │ └── ExampleUnitTest.kt ├── screens ├── screen1.jpg ├── screen2.jpg ├── screen3.jpg └── screen4.jpg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/appexecutors/piceditorsample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/androidTest/java/com/appexecutors/piceditorsample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/appexecutors/piceditorsample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/java/com/appexecutors/piceditorsample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/layout/dialog_crop.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/appexecutors/piceditorsample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/app/src/test/java/com/appexecutors/piceditorsample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/gradlew.bat -------------------------------------------------------------------------------- /piceditor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/.gitignore -------------------------------------------------------------------------------- /piceditor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/build.gradle -------------------------------------------------------------------------------- /piceditor/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /piceditor/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/proguard-rules.pro -------------------------------------------------------------------------------- /piceditor/src/androidTest/java/com/appexecutors/piceditor/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/androidTest/java/com/appexecutors/piceditor/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /piceditor/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/EditOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/EditOptions.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/PicEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/PicEditor.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/PicEditorFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/PicEditorFragment.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/AddMoreImagesListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/AddMoreImagesListener.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/PicViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/PicViewModel.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/actions/CropAspectRatio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/actions/CropAspectRatio.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/actions/CropAspectRatioAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/actions/CropAspectRatioAdapter.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/actions/CropRotateFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/actions/CropRotateFragment.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/interfaces/PermissionCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/interfaces/PermissionCallback.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/models/MediaFinal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/models/MediaFinal.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/models/MediaPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/models/MediaPreview.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/ImagePreviewFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/ImagePreviewFragment.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/MediaPreviewPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/MediaPreviewPagerAdapter.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/MediaThumbnailAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/MediaThumbnailAdapter.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/VideoPreviewFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/preview/VideoPreviewFragment.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/AppConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/AppConstants.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/GlobalEventListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/GlobalEventListener.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/PermissionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/PermissionUtils.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/ToolType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/ToolType.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/Utils.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/WatermarkType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/WatermarkType.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/keyboard/KeyboardHeightObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/keyboard/KeyboardHeightObserver.kt -------------------------------------------------------------------------------- /piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/keyboard/KeyboardHeightProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/java/com/appexecutors/piceditor/editorengine/utils/keyboard/KeyboardHeightProvider.kt -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/background_alpha_blue_dark_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/background_alpha_blue_dark_border.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/background_black_alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/background_black_alpha.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/background_transparent_light_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/background_transparent_light_border.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/background_transparent_white_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/background_transparent_white_border.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_arrow_back_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_arrow_back_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_back_to_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_back_to_clear.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_check_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_check_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_clear_to_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_clear_to_back.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_crop_rotate_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_crop_rotate_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_delete_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_delete_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_free_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_free_crop.png -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_mode_edit_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_mode_edit_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_photo_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_photo_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_redo_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_redo_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_rotate_right_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_rotate_right_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_text_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_text_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ic_undo_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ic_undo_black.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ratio_1is1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ratio_1is1.png -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ratio_3is2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ratio_3is2.png -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ratio_3is4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ratio_3is4.png -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/ripple_circular_button_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/ripple_circular_button_white.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/shape_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/shape_circle.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/drawable/shape_circle_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/drawable/shape_circle_transparent.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/activity_pic_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/activity_pic_editor.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/fragment_crop_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/fragment_crop_rotate.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/fragment_image_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/fragment_image_preview.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/fragment_pic_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/fragment_pic_editor.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/fragment_video_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/fragment_video_preview.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/popupwindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/popupwindow.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/recycler_item_crop_ratio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/recycler_item_crop_ratio.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/layout/recycler_item_thumbnail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/layout/recycler_item_thumbnail.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/navigation/navigation_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/navigation/navigation_editor.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /piceditor/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /piceditor/src/test/java/com/appexecutors/piceditor/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/piceditor/src/test/java/com/appexecutors/piceditor/ExampleUnitTest.kt -------------------------------------------------------------------------------- /screens/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/screens/screen1.jpg -------------------------------------------------------------------------------- /screens/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/screens/screen2.jpg -------------------------------------------------------------------------------- /screens/screen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/screens/screen3.jpg -------------------------------------------------------------------------------- /screens/screen4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/screens/screen4.jpg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/PicEditor/HEAD/settings.gradle --------------------------------------------------------------------------------