react-native-image-picker vs react-native-image-crop-picker vs react-native-camera vs react-native-image-resizer
React Native Image Handling Libraries Comparison
1 Year
react-native-image-pickerreact-native-image-crop-pickerreact-native-camerareact-native-image-resizerSimilar Packages:
What's React Native Image Handling Libraries?

These libraries provide essential functionalities for handling images in React Native applications, catering to various needs such as capturing images, selecting from the gallery, cropping, and resizing. They enhance the user experience by allowing seamless integration of image functionalities, which are crucial for many mobile applications. Each library serves distinct purposes, making it important for developers to choose the right one based on their specific requirements.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
react-native-image-picker324,6788,519188 kB30810 days agoMIT
react-native-image-crop-picker162,4866,1942.17 MB874a month agoMIT
react-native-camera82,7559,642-1443 years agoMIT AND Apache-2.0 AND BSD-3-Clause
react-native-image-resizer35,5471,628-64 years agoMIT
Feature Comparison: react-native-image-picker vs react-native-image-crop-picker vs react-native-camera vs react-native-image-resizer

Image Capture

  • react-native-image-picker:

    This package allows users to choose images and videos from their device's library or capture new ones using the camera. It is straightforward and easy to implement, making it suitable for basic image selection needs.

  • react-native-image-crop-picker:

    This library does not focus on capturing images directly but allows users to select images from the gallery or take new photos with the camera. It provides a simple interface for capturing images but lacks advanced camera functionalities.

  • react-native-camera:

    This package provides extensive functionalities for capturing images and videos directly from the camera, including support for various camera features like flash, zoom, and aspect ratio adjustments. It also supports real-time processing, such as barcode scanning and face detection, making it ideal for applications that require immediate camera interaction.

  • react-native-image-resizer:

    This package does not handle image capture but is used for resizing images after they have been captured or selected. It is useful for optimizing images for storage and performance.

Image Cropping

  • react-native-image-picker:

    This package does not include cropping features; it is primarily for selecting images and videos without any post-processing capabilities.

  • react-native-image-crop-picker:

    This library excels in image cropping capabilities, allowing users to crop images immediately after selection. It offers a user-friendly interface for defining crop areas, making it ideal for applications that require precise image editing.

  • react-native-camera:

    While this package does not provide built-in cropping features, it can be combined with other libraries for post-capture editing. It focuses primarily on capturing images and videos.

  • react-native-image-resizer:

    This library does not provide cropping functionality but can be used in conjunction with cropping libraries to resize images after they have been cropped.

Ease of Use

  • react-native-image-picker:

    This package is very easy to implement, with a simple API that allows developers to quickly add image and video selection capabilities to their applications. It is ideal for those looking for a quick solution without complex configurations.

  • react-native-image-crop-picker:

    This library is relatively easy to use, with a straightforward API that simplifies the process of image selection and cropping. It is designed for quick integration into applications, making it user-friendly for developers.

  • react-native-camera:

    This package has a steeper learning curve due to its extensive features and configuration options. Developers may need to spend more time understanding its API and capabilities to fully utilize its potential.

  • react-native-image-resizer:

    This library is also straightforward to use, providing a simple interface for resizing images. Developers can easily integrate it into their applications for image optimization.

Performance Optimization

  • react-native-image-picker:

    This package is lightweight and performs well for basic image and video selection tasks. However, it does not handle large images as efficiently as cropping libraries, which may affect performance in certain scenarios.

  • react-native-image-crop-picker:

    This library efficiently handles image selection and cropping, ensuring that the user experience remains smooth even with large images. It is designed to minimize memory usage and processing time during image manipulation.

  • react-native-camera:

    This package is optimized for performance, allowing for high-quality image and video capture with minimal lag. However, developers must manage performance carefully, especially when using advanced features like real-time processing.

  • react-native-image-resizer:

    This library is optimized for resizing images quickly, allowing developers to reduce image sizes without significant performance overhead. It is particularly useful for applications that need to manage storage effectively.

Community Support

  • react-native-image-picker:

    This package has a large community and is well-documented, making it easy for developers to find help and resources. Its simplicity contributes to its popularity among developers.

  • react-native-image-crop-picker:

    This library also enjoys good community support, with regular updates and a solid user base. Developers can find ample documentation and examples to assist with implementation.

  • react-native-camera:

    This package has a strong community and is actively maintained, providing a wealth of resources, documentation, and support for developers. It is widely used in various applications, ensuring reliable updates and improvements.

  • react-native-image-resizer:

    This library has a smaller community compared to others but is still actively maintained. Documentation is available, but developers may find fewer resources compared to more popular libraries.

How to Choose: react-native-image-picker vs react-native-image-crop-picker vs react-native-camera vs react-native-image-resizer
  • react-native-image-picker:

    Opt for this package if you need a simple and straightforward solution for selecting images and videos from the device's library or capturing them using the camera, without advanced cropping features.

  • react-native-image-crop-picker:

    Select this library if you require robust image selection and cropping capabilities, allowing users to pick images from the gallery or camera with built-in cropping functionality.

  • react-native-camera:

    Choose this package if you need a comprehensive solution for capturing images and videos directly from the camera, along with advanced features like barcode scanning and face detection.

  • react-native-image-resizer:

    Use this package when you need to resize images programmatically after selection or capture, ensuring that images are optimized for performance and storage.

README for react-native-image-picker

react-native-image-picker 🎆

A React Native module that allows you to select a photo/video from the device library or camera.

npm downloads npm package License

Installation

yarn add react-native-image-picker

New Architecture

To take advantage of the new architecture run-

iOS

RCT_NEW_ARCH_ENABLED=1 npx pod-install ios

Android

Set newArchEnabled to true inside android/gradle.properties

Pre-Fabric (AKA not using the new architecture)

npx pod-install ios

Post-install Steps

iOS

Add the appropriate keys to your Info.plist depending on your requirement:

| Requirement | Key | | ------------------------------ | --------------------------------------------------- | | Select image/video from photos | NSPhotoLibraryUsageDescription | | Capture Image | NSCameraUsageDescription | | Capture Video | NSCameraUsageDescription & NSMicrophoneUsageDescription |

Android

No permissions required (saveToPhotos requires permission check).

Note: This library does not require Manifest.permission.CAMERA, if your app declares as using this permission in manifest then you have to obtain the permission before using launchCamera.

Targeting Android API Levels Below 30

If your app's minSdkVersion is set to below 30 and it does not already include or depend on androidx.activity:activity:1.9.+ or a newer version, you'll need to add the following line to the dependencies section of your app/build.gradle file to ensure support for the backported AndroidX Photo Picker:

dependencies {
    ...
    implementation("androidx.activity:activity:1.9.+")
    ...
}

Additionally, you may need to update your AndroidManifest.xml to trigger the installation of the backported Photo Picker. For reference, you can check the example app's configuration in example/android/app/src/main/AndroidManifest.xml and example/android/app/build.gradle.

For more details, consult the Android documentation on AndroidX Photo Picker: https://developer.android.com/training/data-storage/shared/photopicker

API Reference

Methods

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

launchCamera()

Launch camera to take photo or video.

launchCamera(options?, callback);

// You can also use as a promise without 'callback':
const result = await launchCamera(options?);

See Options for further information on options.

The callback will be called with a response object, refer to The Response Object.

launchImageLibrary

Launch gallery to pick image or video.

launchImageLibrary(options?, callback)

// You can also use as a promise without 'callback':
const result = await launchImageLibrary(options?);

See Options for further information on options.

The callback will be called with a response object, refer to The Response Object.

Options

| Option | iOS | Android | Web | Description | | ----------------------- | --- | ------- | --- |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | mediaType | OK | OK | OK | photo or video or mixed(launchCamera on Android does not support 'mixed'). Web only supports 'photo' for now. | | maxWidth | OK | OK | NO | To resize the image. | | maxHeight | OK | OK | NO | To resize the image. | | videoQuality | OK | OK | NO | low, medium, or high on iOS, low or high on Android. | | durationLimit | OK | OK | NO | Video max duration (in seconds). | | quality | OK | OK | NO | 0 to 1, photos. | | conversionQuality | NO | OK | NO | For conversion from HEIC/HEIF to JPEG, 0 to 1. Default is 0.92 | | cameraType | OK | OK | NO | 'back' or 'front' (May not be supported in few android devices). | | includeBase64 | OK | OK | OK | If true, creates base64 string of the image (Avoid using on large image files due to performance). | | includeExtra | OK | OK | NO | If true, will include extra data which requires library permissions to be requested (i.e. exif data). | | saveToPhotos | OK | OK | NO | (Boolean) Only for launchCamera, saves the image/video file captured to public photo. | | selectionLimit | OK | OK | OK | Supports providing any integer value. Use 0 to allow any number of files on iOS version >= 14 & Android version >= 13. Default is 1. | | presentationStyle | OK | NO | NO | Controls how the picker is presented. currentContext, pageSheet, fullScreen, formSheet, popover, overFullScreen, overCurrentContext. Default is currentContext. | | formatAsMp4 | OK | NO | NO | Converts the selected video to MP4 (iOS Only). | | assetRepresentationMode | OK | OK | NO | A mode that determines which representation to use if an asset contains more than one on iOS or disables HEIC/HEIF to JPEG conversion on Android if set to 'current'. Possible values: 'auto', 'current', 'compatible'. Default is 'auto'. |

The Response Object

| key | iOS | Android | Web | Description | | ------------ | --- | ------- | --- | ------------------------------------------------------------------- | | didCancel | OK | OK | OK | true if the user cancelled the process | | errorCode | OK | OK | OK | Check ErrorCode for all error codes | | errorMessage | OK | OK | OK | Description of the error, use it for debug purpose only | | assets | OK | OK | OK | Array of the selected media, refer to Asset Object |

Asset Object

| key | iOS | Android | Web | Photo/Video | Requires Permissions | Description | | --------- | --- | ------- | --- | ----------- | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | base64 | OK | OK | OK | PHOTO ONLY | NO | The base64 string of the image (photos only) | | uri | OK | OK | OK | BOTH | NO | The file uri in app specific cache storage. Except when picking video from Android gallery where you will get read only content uri, to get file uri in this case copy the file to app specific storage using any react-native library. For web it uses the base64 as uri. | | originalPath | NO | OK | NO | BOTH | NO | The original file path. | | width | OK | OK | OK | BOTH | NO | Asset dimensions | | height | OK | OK | OK | BOTH | NO | Asset dimensions | | fileSize | OK | OK | NO | BOTH | NO | The file size | | type | OK | OK | NO | BOTH | NO | The file type | | fileName | OK | OK | NO | BOTH | NO | The file name | | duration | OK | OK | NO | VIDEO ONLY | NO | The selected video duration in seconds | | bitrate | --- | OK | NO | VIDEO ONLY | NO | The average bitrate (in bits/sec) of the selected video, if available. (Android only) | | timestamp | OK | OK | NO | BOTH | YES | Timestamp of the asset. Only included if 'includeExtra' is true | | id | OK | OK | NO | BOTH | YES | local identifier of the photo or video. On Android, this is the same as fileName |

Note on file storage

Image/video captured via camera will be stored in temporary folder allowing it to be deleted any time, so don't expect it to persist. Use saveToPhotos: true (default is false) to save the file in the public photos. saveToPhotos requires WRITE_EXTERNAL_STORAGE permission on Android 28 and below (The permission has to obtained by the App manually as the library does not handle that).

For web, this doesn't work.

ErrorCode

| Code | Description | | ------------------ | ------------------------------------------------- | | camera_unavailable | Camera not available on device | | permission | Permission not satisfied | | others | Other errors (check errorMessage for description) |

License

MIT