Convert Figma logo to code with AI

ivpusic logoreact-native-image-crop-picker

iOS/Android image picker with support for camera, video, configurable compression, multiple images and cropping

6,211
1,576
6,211
878

Top Related Projects

:sunrise_over_mountains: A React Native module that allows you to use native UI to select media from the device library or directly from the camera.

Document Picker for React Native

Quick Overview

React Native Image Crop Picker is a powerful and customizable library for selecting and cropping images in React Native applications. It provides a native UI for image selection from the device's gallery or camera, along with advanced cropping capabilities, supporting both iOS and Android platforms.

Pros

  • Native performance and UI for image selection and cropping
  • Supports multiple image selection
  • Customizable cropping options (aspect ratio, circular crop, etc.)
  • Comprehensive documentation and active community support

Cons

  • Requires additional setup for iOS and Android platforms
  • Large library size may impact app bundle size
  • Some users report occasional stability issues on certain devices
  • Limited video support compared to image functionality

Code Examples

  1. Basic image selection:
import ImagePicker from 'react-native-image-crop-picker';

ImagePicker.openPicker({
  width: 300,
  height: 400,
  cropping: true
}).then(image => {
  console.log(image);
});
  1. Multiple image selection:
ImagePicker.openPicker({
  multiple: true,
  maxFiles: 5
}).then(images => {
  console.log(images);
});
  1. Opening camera with cropping:
ImagePicker.openCamera({
  width: 300,
  height: 400,
  cropping: true,
  useFrontCamera: true
}).then(image => {
  console.log(image);
});
  1. Circular cropping:
ImagePicker.openPicker({
  width: 300,
  height: 300,
  cropping: true,
  cropperCircleOverlay: true,
  sortOrder: 'none'
}).then(image => {
  console.log(image);
});

Getting Started

  1. Install the library:

    npm install react-native-image-crop-picker
    
  2. For iOS, install pods:

    cd ios && pod install
    
  3. For Android, add the following to android/settings.gradle:

    include ':react-native-image-crop-picker'
    project(':react-native-image-crop-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-crop-picker/android')
    
  4. Import and use in your React Native component:

    import ImagePicker from 'react-native-image-crop-picker';
    
    // Use the examples provided above to implement image picking and cropping functionality
    

Competitor Comparisons

:sunrise_over_mountains: A React Native module that allows you to use native UI to select media from the device library or directly from the camera.

Pros of react-native-image-picker

  • Simpler API with fewer options, making it easier to use for basic image picking tasks
  • Official React Native community package, ensuring better long-term support and maintenance
  • Supports video picking in addition to images

Cons of react-native-image-picker

  • Lacks built-in image cropping functionality
  • Fewer customization options for the image picker interface
  • Limited control over image compression and quality settings

Code Comparison

react-native-image-picker:

import {launchImageLibrary} from 'react-native-image-picker';

const options = {
  mediaType: 'photo',
  quality: 1,
};

launchImageLibrary(options, (response) => {
  if (response.uri) {
    console.log('Image URI:', response.uri);
  }
});

react-native-image-crop-picker:

import ImagePicker from 'react-native-image-crop-picker';

ImagePicker.openPicker({
  width: 300,
  height: 400,
  cropping: true,
  compressImageQuality: 0.7,
}).then(image => {
  console.log('Image path:', image.path);
});

The react-native-image-crop-picker library offers more advanced features like built-in cropping and finer control over image dimensions and quality. However, react-native-image-picker provides a simpler API for basic image picking tasks and includes video support. Choose the library that best fits your project's requirements and complexity level.

Document Picker for React Native

Pros of document-picker

  • Supports a wider range of document types, including PDFs, text files, and spreadsheets
  • Simpler API for basic document selection tasks
  • Lightweight and focused on document picking functionality

Cons of document-picker

  • Lacks image editing and cropping features
  • Limited customization options for the picker interface
  • Does not support multiple file selection out of the box

Code Comparison

react-native-image-crop-picker:

ImagePicker.openPicker({
  width: 300,
  height: 400,
  cropping: true
}).then(image => {
  console.log(image);
});

document-picker:

DocumentPicker.pick({
  type: [DocumentPicker.types.allFiles],
}).then((res) => {
  console.log(res.uri, res.type, res.name, res.size);
});

The code examples highlight the different focus of each library. react-native-image-crop-picker provides options for image dimensions and cropping, while document-picker offers a simpler API for selecting various document types. react-native-image-crop-picker is more suitable for image-specific tasks with editing capabilities, whereas document-picker is better for general document selection across multiple file types.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

react-native-image-crop-picker

Backers on Open Collective Sponsors on Open Collective

iOS/Android image picker with support for camera, video, configurable compression, multiple images and cropping

Result

Important notes

  1. If you are using react-native >= 0.60 use react-native-image-crop-picker version >= 0.25.0. Otherwise use version < 0.25.0.
  2. If you want to use react-native-image-crop-picker version >= 0.39.0 you have to set your android compileSdkVersion to 33 or greater. Otherwise use react-native-image-crop-picker version < 0.39.0

Usage

Import library

import ImagePicker from 'react-native-image-crop-picker';

Select from gallery

Call single image picker with cropping

ImagePicker.openPicker({
  width: 300,
  height: 400,
  cropping: true
}).then(image => {
  console.log(image);
});

Call multiple image picker

ImagePicker.openPicker({
  multiple: true
}).then(images => {
  console.log(images);
});

Select video only from gallery

ImagePicker.openPicker({
  mediaType: "video",
}).then((video) => {
  console.log(video);
});

Android: The prop 'cropping' has been known to cause videos not to be displayed in the gallery on Android. Please do not set cropping to true when selecting videos.

Select from camera

Image

ImagePicker.openCamera({
  width: 300,
  height: 400,
  cropping: true,
}).then(image => {
  console.log(image);
});

Video

ImagePicker.openCamera({
  mediaType: 'video',
}).then(image => {
  console.log(image);
});

Crop picture

ImagePicker.openCropper({
  path: 'my-file-path.jpg',
  width: 300,
  height: 400
}).then(image => {
  console.log(image);
});

Optional cleanup

Module is creating tmp images which are going to be cleaned up automatically somewhere in the future. If you want to force cleanup, you can use clean to clean all tmp files, or cleanSingle(path) to clean single tmp file.

ImagePicker.clean().then(() => {
  console.log('removed all tmp images from tmp directory');
}).catch(e => {
  alert(e);
});

Request Object

PropertyTypeDescription
croppingbool (default false)Enable or disable cropping
widthnumberWidth of result image when used with cropping option
heightnumberHeight of result image when used with cropping option
multiplebool (default false)Enable or disable multiple image selection
writeTempFile (ios only)bool (default true)When set to false, does not write temporary files for the selected images. This is useful to improve performance when you are retrieving file contents with the includeBase64 option and don't need to read files from disk.
includeBase64bool (default false)When set to true, the image file content will be available as a base64-encoded string in the data property. Hint: To use this string as an image source, use it like: <Image source={{uri: `data:${image.mime};base64,${image.data}`}} />
includeExifbool (default false)Include image exif data in the response
avoidEmptySpaceAroundImage (ios only)bool (default true)When set to true, the image will always fill the mask space.
cropperActiveWidgetColor (android only)string (default "#424242")When cropping image, determines ActiveWidget color.
cropperStatusBarColor (android only)string (default #424242)When cropping image, determines the color of StatusBar.
cropperToolbarColor (android only)string (default #424242)When cropping image, determines the color of Toolbar.
cropperToolbarWidgetColor (android only)string (default darker orange)When cropping image, determines the color of Toolbar text and buttons.
freeStyleCropEnabledbool (default false)Enables user to apply custom rectangle area for cropping
cropperToolbarTitlestring (default Edit Photo)When cropping image, determines the title of Toolbar.
cropperCircleOverlaybool (default false)Enable or disable circular cropping mask.
disableCropperColorSetters (android only)bool (default false)When cropping image, disables the color setters for cropping library.
minFiles (ios only)number (default 1)Min number of files to select when using multiple option
maxFilesnumber (default 5)Max number of files to select when using multiple option
waitAnimationEnd (ios only)bool (default true)Promise will resolve/reject once ViewController completion block is called
smartAlbums (ios only)array (supported values) (default ['UserLibrary', 'PhotoStream', 'Panoramas', 'Videos', 'Bursts'])List of smart albums to choose from
useFrontCamerabool (default false)Whether to default to the front/'selfie' camera when opened. Please note that not all Android devices handle this parameter, see issue #1058
compressVideoPreset (ios only)string (default MediumQuality)Choose which preset will be used for video compression
compressImageMaxWidthnumber (default none)Compress image with maximum width
compressImageMaxHeightnumber (default none)Compress image with maximum height
compressImageQualitynumber (default 1 (Android)/0.8 (iOS))Compress image with quality (from 0 to 1, where 1 is best quality). On iOS, values larger than 0.8 don't produce a noticeable quality increase in most images, while a value of 0.8 will reduce the file size by about half or less compared to a value of 1.
loadingLabelText (ios only)string (default "Processing assets...")Text displayed while photo is loading in picker
mediaTypestring (default any)Accepted mediaType for image selection, can be one of: 'photo', 'video', or 'any'
showsSelectedCount (ios only)bool (default true)Whether to show the number of selected assets
sortOrder (ios only)string (default 'none', supported values: 'asc', 'desc', 'none')Applies a sort order on the creation date on how media is displayed within the albums/detail photo views when opening the image picker
forceJpg (ios only)bool (default false)Whether to convert photos to JPG. This will also convert any Live Photo into its JPG representation
showCropGuidelines (android only)bool (default true)Whether to show the 3x3 grid on top of the image during cropping
showCropFrame (android only)bool (default true)Whether to show crop frame during cropping
hideBottomControls (android only)bool (default false)Whether to display bottom controls
enableRotationGesture (android only)bool (default false)Whether to enable rotating the image by hand gesture
cropperChooseText (ios only)           string (default choose)        Choose button text
cropperChooseColor (ios only)string (default #FFCC00)HEX format color for the Choose button. Default color is controlled by TOCropViewController.
cropperCancelText (ios only)string (default Cancel)Cancel button text
cropperCancelColor (ios only)string (default tint iOS color )HEX format color for the Cancel button. Default value is the default tint iOS color controlled by TOCropViewController
cropperRotateButtonsHidden (ios only)           bool (default false)        Enable or disable cropper rotate buttons

Smart Album Types (ios)

NOTE: Some of these types may not be available on all iOS versions. Be sure to check this to avoid issues.

['PhotoStream', 'Generic', 'Panoramas', 'Videos', 'Favorites', 'Timelapses', 'AllHidden', 'RecentlyAdded', 'Bursts', 'SlomoVideos', 'UserLibrary', 'SelfPortraits', 'Screenshots', 'DepthEffect', 'LivePhotos', 'Animated', 'LongExposure']

Response Object

PropertyTypeDescription
pathstringSelected image location. This is null when the writeTempFile option is set to false.
localIdentifier(ios only)stringSelected images' localidentifier, used for PHAsset searching
sourceURL(ios only)stringSelected images' source path, do not have write access
filenamestringSelected images' filename
widthnumberSelected image width
heightnumberSelected image height
mimestringSelected image MIME type (image/jpeg, image/png)
sizenumberSelected image size in bytes
durationnumberVideo duration time in milliseconds
database64Optional base64 selected file representation
exifobjectExtracted exif data from image. Response format is platform specific
cropRectobjectCropped image rectangle (width, height, x, y)
creationDate (ios only)stringUNIX timestamp when image was created
modificationDatestringUNIX timestamp when image was last modified

Install

Step 1

npm i react-native-image-crop-picker --save

Step 2

iOS

cd ios
pod install

Step 3

iOS

Step 1

In Xcode open Info.plist and add string key NSPhotoLibraryUsageDescription with value that describes why you need access to user photos. More info here https://forums.developer.apple.com/thread/62229. Depending on what features you use, you also may need NSCameraUsageDescription and NSMicrophoneUsageDescription keys.

(Optional) Step 2 - To localize the camera / gallery / cropper text buttons

  • Open your Xcode project
  • Go to your project settings by opening the project name on the Navigation (left side)
  • Select your project in the project list
  • Should be into the Info tab and add in Localizations the language your app was missing throughout the +
  • Rebuild and you should now have your app camera and gallery with the classic ios text in the language you added.

Android

  • VERY IMPORTANT Add the following to your build.gradle's repositories section and change Android SDK version to 33. (android/build.gradle)
buildscript {
    ext {
        buildToolsVersion = "31.0.0"
        minSdkVersion = 21
        compileSdkVersion = 33
        targetSdkVersion = 33
        ...
    }
}

allprojects {
    repositories {
      mavenLocal()
      jcenter()
      maven { url "$rootDir/../node_modules/react-native/android" }

      // ADD THIS
      maven { url 'https://maven.google.com' }

      // ADD THIS
      maven { url "https://www.jitpack.io" }
    }
}
  • Add useSupportLibrary (android/app/build.gradle)
android {
    ...

    defaultConfig {
        ...
        vectorDrawables.useSupportLibrary = true
        ...
    }
    ...
}
  • Minimum Gradle version if you are using react-native-image-crop-picker >= 0.35.0
3.3.3
3.4.3
3.5.4
3.6.4
4.0.1

Reference for more details https://github.com/ivpusic/react-native-image-crop-picker/issues/1406

  • [Optional] If you want to use camera picker in your project, add following to app/src/main/AndroidManifest.xml

    • <uses-permission android:name="android.permission.CAMERA"/>
  • [Optional] If you want to use front camera, also add following to app/src/main/ AndroidManifest.xml

    • <uses-feature android:name="android.hardware.camera" android:required="false" />
    • <uses-feature android:name="android.hardware.camera.front" android:required="false" />

TO DO

  • [Android] Standardize multiple select
  • [Android] Video compression

Contributors

This project exists thanks to all the people who contribute. [Contribute].

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

License

MIT

NPM DownloadsLast 30 Days