Easy to use and configurable library to Pick multiple images from the Gallery or Capture an image using Camera with maximum size, extension, crop, rotate, zoom and compress features.
- You can easily select image from camera and gallery and upload it wherever you want. We have created this library to simplify pick or capture image feature.
- Handled permissions for camera and gallery, also supports scoped storage.
- Returns contentUri of selected image.
- Easy to use and supports all major devices.
- Support for new Photo Picker for Android 11+.
- Capture Image Using Camera
- Pick Image From Gallery
- Multiple image pick support with pick limit
- Handle Runtime Permission For Storage And Camera
- ImagePicker Options Bottom Sheet
- Retrieve Image Result In Uri Format
- Crop Image with support of free hand cropping
- Rotate Image
- Image Zoom In, Zoom Out
- Size filter for images
- Extension filter for images
- Compress image
- Customize entire Image Picker screen UI with your own options and style
- New Photo picker for the Android 11+.
Camera Picker | Gallery Picker | Multi Selection Gallery Picker |
---|---|---|
Picker Option Bottom Sheet | Crop Options | Extension Options |
---|---|---|
System Photo Picker (Android 11+) |
---|
- Gradle Dependency
-
Add the JitPack repository to your project's build.gradle file
- For Gradle version 5.x.x or less
allprojects { repositories { ... maven { url = "https://jitpack.io" } } }
- For latest Android Studio, in settings.gradle file
inside
dependencyResolutionManagement
block
dependencyResolutionManagement { repositories { ... maven { url = "https://jitpack.io" } } }
-
Enable data binding feature in your app's build.gradle file (More Details) .
android { ... buildFeatures { dataBinding=true } }
-
Add the dependency in your app's build.gradle file
dependencies { implementation("com.github.SimformSolutionsPvtLtd:SSImagePicker:2.3") }
- Add ImagePickerActivity into your AndroidManifest.xml.
SSImagePicker
is default theme for image picker activity. If you want to set custom theme check out customization guide. Make sure to add theandroid:configChanges
to handle the rotation.
<activity android:name="com.app.imagepickerlibrary.ui.activity.ImagePickerActivity"
android:configChanges="orientation|screenSize" android:theme="@style/SSImagePicker" />
- If you want to use Picker options bottom sheet then
implement
SSPickerOptionsBottomSheet.ImagePickerClickListener
in your fragment or activity.onImageProvider
method will give the selected provider type.
val pickerOptionBottomSheet = SSPickerOptionsBottomSheet.newInstance()
pickerOptionBottomSheet.show(supportFragmentManager, "tag")
....
override fun onImageProvider(provider: ImageProvider) {
when (provider) {
ImageProvider.GALLERY -> {
//Open gallery
}
ImageProvider.CAMERA -> {
//Open camera
}
ImageProvider.NONE -> {}
}
}
- Open Image Picker from activity or fragment via registering the image picker. It will give object
of
ImagePicker
class.
private val imagePicker: ImagePicker by lazy {
registerImagePicker(this)
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
...
}
//To display the picker screen call open method on image picker object passing the picker type.
imagePicker.open(PickerType.GALLERY)
- Add customization to image picker via the image picker object. Checkout all the methods and default values for customization from the picker config customization section.
imagePicker
.title("My Picker")
.multipleSelection(enable = true, maxCount = 5)
.showCountInToolBar(false)
.showFolder(true)
.cameraIcon(true)
.doneIcon(true)
.allowCropping(true)
.compressImage(false)
.maxImageSize(2)
.extension(PickExtension.JPEG)
imagePicker.open(PickerType.GALLERY)
- To get result in activity or fragment implement
ImagePickerResultListener
.
class MainActivity : AppCompatActivity(), ImagePickerResultListener {
...
}
- Single Selection and the image captured from camera will be received in
onImagePick(uri: Uri?)
callback.
override fun onImagePick(uri: Uri?) {
//Do something with uri
}
- Multiple Selection uris will be received in
onMultiImagePick(uris: List<Uri>?)
callback.
override fun onMultiImagePick(uris: List<Uri>?) {
//Do something with uris
}
- Customize picker config for different available options
- Customize UI of picker screen with different style attributes
- Customize UI of picker options bottom sheet with different style attributes
SSImagePicker Uses following permissions to display images. For system Photo Picker on Android 11+ no permission is required.
- API 21(Android 5) to API 32(Android 12L):
android.permission.READ_EXTERNAL_STORAGE
- API 33(Android 13) onwards:
android.permission.READ_MEDIA_IMAGES
- Checkout the migration guide for migration to the latest version.
Support it by joining stargazers for this repository. โญ
Whether you're helping us fix bugs, improve the docs, or a feature request, we'd love to have you! : muscle:
Check out our Contributing Guide for ideas on contributing.
For bugs, feature requests, and discussion please use GitHub Issues.
- Check out our other available awesome mobile libraries
MIT License
Copyright (c) 2022 Simform Solutions
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.