Giter Site home page Giter Site logo

discord / react-native-image-picker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from react-native-image-picker/react-native-image-picker

4.0 1.0 4.0 2.2 MB

: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.

License: MIT License

Objective-C 35.87% JavaScript 1.78% Ruby 1.77% Java 50.22% TypeScript 9.60% Starlark 0.76%

react-native-image-picker's Introduction

React Native Image Picker

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

Make sure you're reading the doc applicable to your version, for example if your using version 3.8.0 go to tag 3.8.0 and read those docs. This doc is always that of main branch.

Also read version release notes for any breaking changes especially if you're updating the major version.

Install

yarn add react-native-image-picker

# RN >= 0.60
cd ios && pod install

# RN < 0.60
react-native link react-native-image-picker

Post-install Steps

iOS

Add the appropriate keys to your Info.plist,

If you are allowing user to select image/video from photos, add NSPhotoLibraryUsageDescription.

If you are allowing user to capture image add NSCameraUsageDescription key also.

If you are allowing user to capture video add NSCameraUsageDescription add NSMicrophoneUsageDescription key also.

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.

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 Description
mediaType OK OK 'photo' or 'video' or 'mixed'(mixed supported only for launchImageLibrary, to pick an photo or video)
maxWidth OK OK To resize the image
maxHeight OK OK To resize the image
videoQuality OK OK 'low', 'medium', or 'high' on iOS, 'low' or 'high' on Android
durationLimit OK OK Video max duration in seconds
quality OK OK 0 to 1, photos
cameraType OK OK 'back' or 'front'. May not be supported in few android devices
includeBase64 OK OK If true, creates base64 string of the image (Avoid using on large image files due to performance)
includeExtra OK OK If true, will include extra data which requires library permissions to be requested (i.e. exif data)
saveToPhotos OK OK (Boolean) Only for launchCamera, saves the image/video file captured to public photo
selectionLimit OK OK Default is 1, use 0 to allow any number of files. Only iOS version >= 14 support 0 and also it supports providing any integer value

The Response Object

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

Asset Object

key iOS Android Photo/Video Requires Permissions Description
base64 OK OK PHOTO ONLY NO The base64 string of the image (photos only)
uri 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
width OK OK BOTH NO Asset dimensions
height OK OK BOTH NO Asset dimensions
fileSize OK OK BOTH NO The file size
type OK OK BOTH NO The file type
fileName OK OK BOTH NO The file name
duration OK OK VIDEO ONLY NO The selected video duration in seconds
bitrate --- OK VIDEO ONLY NO The average bitrate (in bits/sec) of the selected video, if available. (Android only)
timestamp OK OK BOTH YES Timestamp of the asset. Only included if 'includeExtra' is true
id OK OK 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 so will 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 (You have to obtain the permission, the library does not).

ErrorCode

Code Description
camera_unavailable camera not available on device
permission Permission not satisfied
others other errors (check errorMessage for description)

License

MIT

react-native-image-picker's People

Contributors

alexustinovsm avatar algera avatar brouding avatar charpeni avatar chrisbobbe avatar cooperka avatar haitaoli avatar helenaford avatar igorming avatar iraycd avatar janicduplessis avatar johan-dutoit avatar johanisfap avatar keeth avatar levic92 avatar levipro avatar lizraeli avatar marcshilling avatar nevir avatar npomfret avatar pedro avatar pjcabrera avatar ravirajn22 avatar rusfearuth avatar sarovin avatar semantic-release-bot avatar sgonyea avatar udfalkso avatar vorjdux avatar yfuks avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 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.