Giter VIP home page Giter VIP logo

android-image-picker's Introduction

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.bumptech.glide:glide:3.7.0'
	compile 'com.github.esafirm.android-image-picker:imagepicker:x.y.z@aar'
	// for experimental rx picker
	compile 'com.github.esafirm.android-image-picker:rximagepicker:x.y.z@aar'
}

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

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
	.start(REQUEST_CODE_PICKER); // start image picker activity with request code
  • Or use traditional Intent
Intent intent = new Intent(this, ImagePickerActivity.class);

intent.putExtra(ImagePicker.EXTRA_FOLDER_MODE, true);
intent.putExtra(ImagePicker.EXTRA_MODE, ImagePicker.MODE_MULTIPLE);
intent.putExtra(ImagePicker.EXTRA_LIMIT, 10);
intent.putExtra(ImagePicker.EXTRA_SHOW_CAMERA, true);
intent.putExtra(ImagePicker.EXTRA_SELECTED_IMAGES, images);
intent.putExtra(ImagePicker.EXTRA_FOLDER_TITLE, "Album");
intent.putExtra(ImagePicker.EXTRA_IMAGE_TITLE, "Tap to select images");
intent.putExtra(ImagePicker.EXTRA_IMAGE_DIRECTORY, "Camera");
intent.putExtra(ImagePicker.EXTRA_RETURN_AFTER_FIRST, true); //default is false

startActivityForResult(intent, REQUEST_CODE_PICKER);

Receive result

  • Using helper
@Override
if (requestCode == REQUEST_CODE_PICKER && resultCode == RESULT_OK && data != null) {
    ArrayList<Image> images = (ArrayList<Image>) ImagePicker.getImages(data);
}
  • via Intent
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == REQUEST_CODE_PICKER && resultCode == RESULT_OK && data != null) {
        ArrayList<Image> images = data.getParcelableArrayListExtra(ImagePickerActivity.INTENT_EXTRA_SELECTED_IMAGES);
        // do your logic ....
    }
}

Camera Only

DefaultCameraModule cameraModule = new DefaultCameraModule() // or ImmediateCameraModule 
startActivityForResult(cameraModule.getIntent(context), RC_REQUEST_CAMERA);  
  • Receiving 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

android-image-picker's People

Contributors

douglasiacovelli avatar esafirm avatar linkout avatar mars885 avatar pavlus avatar pdavid0 avatar rainer-lang avatar xpdlf1004 avatar ysoftware avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.