ImagePicker


Source link: https://github.com/esafirm/android-image-picker

ImagePicker

A simple library to select images from the gallery and camera.

Screenshot

Download

Add this to your project's build.gradle

allprojects {

  repositories {

maven {
 url "https://jitpack.io" 
}

  
}
 
}

And add this to your module's build.gradle

dependencies {
  compile 'com.github.esafirm.android-image-picker:imagepicker:x.y.z'  // for experimental rx picker  compile 'com.github.esafirm.android-image-picker:rximagepicker:x.y.z' 
}

change x.y.z to version in the release page

Breaking changes

If you're not using custom image loader and have Glide v3 in your classpath, please using version 1.8.0 below! Will improve this image loader compatibility issue in ImagePicker v2!

Usage

For full example, please refer to sample

Start image picker activity

  • Quick call
ImagePicker.create(this) // Activity or Fragment

.start(REQUEST_CODE_PICKER);
  • Complete options
ImagePicker.create(this)  .returnAfterFirst(true) // set whether pick or camera action should return immediate result or not. For pick image only work on single mode  .folderMode(true) // folder mode (false by default)  .folderTitle("Folder") // folder selection title  .imageTitle("Tap to select") // image selection title  .single() // single mode  .multi() // multi mode (default mode)  .limit(10) // max images can be selected (99 by default)  .showCamera(true) // show camera or not (true by default)  .imageDirectory("Camera") // directory name for captured image  ("Camera" folder by default)  .origin(images) // original selected images, used in multi mode  .theme(R.style.CustomImagePickerTheme) // must inherit ef_BaseTheme. please refer to sample  .enableLog(false) // disabling log  .imageLoader(new GrayscaleImageLoder()) // custom image loader, must be serializeable  .start(REQUEST_CODE_PICKER);
 // start image picker activity with request code
  • Get Intent

If you want to call it outside Activity or Fragment, you can simply get the Intent from the builder

ImagePicker.create(activity).getIntent(context) 

Receive result

@Override if (requestCode == REQUEST_CODE_PICKER && resultCode == RESULT_OK && data != null) {

  ArrayList<Image> images = (ArrayList<Image>) ImagePicker.getImages(data);
 
}

Camera Only

DefaultCameraModule cameraModule = new DefaultCameraModule() // or ImmediateCameraModule  startActivityForResult(cameraModule.getIntent(context), RC_REQUEST_CAMERA);
  

And for receiving the result:

@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {

  if (requestCode == RC_REQUEST_CAMERA && resultCode == RESULT_OK && data != null) {

cameraModule.getImage(context, data, new OnImageReadyListener() {

 @Override

 public void onImageReady(List<Image> images) {

 // do what you want to do with the image ...

 // it's either List<Image> with one item or null (still need improvement)

 
}

}
);

  
}
 
}

Modification License

Copyright (c) 2016 Esa Firman  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. 

Original License

The Original Image Picker

You can find the original lincense here

Resources

Simple Weibo SDK turns Weibo API into a Java interface with RxJava.

Exponential backoff for Java (Java port of segmentio/backo).

A view to show bling bling stars when you touch it.

A cache lib for SharedPreferences.

Android buttons in various styles.

Gradle plugin for Spoon. Allows you to run spoon with almost no effort under new Android build system.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes