Giter Site home page Giter Site logo

maninthewind / imagepicker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from drjacky/imagepicker

0.0 0.0 0.0 32.43 MB

📸Image Picker for Android, Pick images from Gallery or Capture a new image with Camera🖼

Home Page: https://github.com/Drjacky/ImagePicker

License: Apache License 2.0

Kotlin 100.00%

imagepicker's Introduction

📸Image Picker Library for Android

Releases API Language PRWelcome FOSSA Status Android Arsenal Language

Easy to use and configurable library to Pick an image from the Gallery or Capture image using Camera. It also allows to Crop the Image based on Aspect Ratio, Resolution and Image Size.

‍🏍Features

  • Pick Gallery Images
  • Pick Images from Google Drive
  • Capture Camera Image
  • Crop Images(Crop image based on provided aspect ratio or let user choose one)
  • Compress Images(Compress image based on provided resolution and size)
  • Retrieve Image Result as File, File Path as String or Uri object
  • Handle Runtime Permission for Camera and Storage

🎬Preview

Profile Image Picker Gallery Only Camera Only

💻Usage

Gradle dependency:

	allprojects {
	   repositories {
	      	mavenCentral() // For ImagePicker library, this line is enough. Although, it has been published on jitpack as well
           	maven { url "https://jitpack.io" }  //Make sure to add this in your project for uCrop - an internal library
	   }
	}
   implementation 'com.github.Drjacky:ImagePicker:$libVersion'

Where $libVersion = libVersion

🎨Customization

If you want to get the activity result:

Kotlin

   private val launcher =
    registerForActivityResult(ActivityResultContracts.StartActivityForResult()) {
        if (it.resultCode == Activity.RESULT_OK) {
            val uri = it.data?.data!!
            // Use the uri to load the image
            // Only if you are not using crop feature:
            uri?.let { galleryUri ->
                contentResolver.takePersistableUriPermission(
                    uri, Intent.FLAG_GRANT_READ_URI_PERMISSION
                )
            }
            //////////////
        }
    }

Java

ActivityResultLauncher<Intent> launcher=
        registerForActivityResult(new ActivityResultContracts.StartActivityForResult(),(ActivityResult result)->{
        if(result.getResultCode()==RESULT_OK){
        Uri uri=result.getData().getData();
        // Use the uri to load the image
        }else if(result.getResultCode()==ImagePicker.RESULT_ERROR){
        // Use ImagePicker.Companion.getError(result.getData()) to show an error
        }
        });

Both Camera and Gallery:

    ImagePicker.with(this)
    //...
    .provider(ImageProvider.BOTH) //Or bothCameraGallery()
    .createIntentFromDialog { launcher.launch(it) }

Crop image:

    .crop()

Crop image with 16:9 aspect ratio:

    .crop(16f, 9f)

Crop square image(e.g for profile):

    .cropSquare()    //Crop square image, its same as crop(1f, 1f)

Oval crop image:

    .crop()     
    .cropOval() //Allow dimmed layer to have a circle inside

Set Max Width and Height of final image:

    .maxResultSize(512, 512, true) //true: Keep Ratio

Java sample for using createIntentFromDialog:

ImagePicker.Companion.with(this)
        .crop()
        .cropOval()
        .maxResultSize(512,512,true)
        .provider(ImageProvider.BOTH) //Or bothCameraGallery()
        .createIntentFromDialog((Function1)(new Function1(){
public Object invoke(Object var1){
        this.invoke((Intent)var1);
        return Unit.INSTANCE;
        }

public final void invoke(@NotNull Intent it){
        Intrinsics.checkNotNullParameter(it,"it");
        launcher.launch(it);
        }
        }));

If you want just one option(camera or gallery):

    launcher.launch(
       ImagePicker.with(this)
           //...
           .cameraOnly() // or galleryOnly()
           .createIntent()
    )

Let the user to resize crop bounds:

        .crop()                                                  
        .cropFreeStyle()

Let the user to pick multiple files or single file in gallery mode:

        .setMultipleAllowed(true)

Let the user defines the output format:

        .setOutputFormat(Bitmap.CompressFormat.WEBP)

Intercept ImageProvider; could be used for analytics purposes:

ImagePicker.with(this)
        .setImageProviderInterceptor { imageProvider -> //Intercept ImageProvider
            Log.d("ImagePicker", "Selected ImageProvider: "+imageProvider.name)
        }
        .createIntent()

Intercept Dialog dismiss event:

    ImagePicker.with(this)
    	.setDismissListener {
    		// Handle dismiss event
    		Log.d("ImagePicker", "onDismiss");
    	}
    	.createIntent()

Limit MIME types while choosing a gallery image:

        .galleryMimeTypes(  //Exclude gif images
                    mimeTypes = arrayOf(
                      "image/png",
                      "image/jpg",
                      "image/jpeg"
                    )
                  )

Add Following parameters in your colors.xml file, if you want to customize uCrop Activity:

    <resources>
        <!-- Here you can add color of your choice  -->
        <color name="ucrop_color_toolbar">@color/teal_500</color>
        <color name="ucrop_color_statusbar">@color/teal_700</color>
        <color name="ucrop_color_widget_active">@color/teal_500</color>
    </resources>

💥Compatibility

  • Library - Android Kitkat 4.4+ (API 19)
  • Sample - Android Kitkat 4.4+ (API 19)

📃 Libraries Used

License

FOSSA Status

imagepicker's People

Contributors

drjacky avatar dhaval2404 avatar douglas-srs avatar marchuck avatar soareseneves avatar terence-codigo avatar benjaminlefevre avatar catlandor avatar mdxdave avatar husseinhj avatar yamin8000 avatar fossabot 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.