13.0.0 • Published 7 months ago

react-native-camera-kit v13.0.0

Weekly downloads
1,276
License
MIT
Repository
github
Last release
7 months ago

react-native-camera-kit

Native camera control.

npm.io npm.io

Installation

Install using npm or yarn:

npm install react-native-camera-kit --save

Or if you're using yarn:

yarn add react-native-camera-kit

iOS

  • Locate the module lib folder in your node modules: PROJECT_DIR/node_modules/react-native-camera-kit/ios/lib
  • Drag the ReactNativeCameraKit.xcodeproj project file into your project
  • Add libReactNativeCameraKit.a to all your target Linked Frameworks and Libraries (prone to be forgotten)
  • Add to your project info.plist the keys Privacy - Camera Usage Description and Privacy - Photo Library Usage Description as described here.

Android

Add the following to your project's settings.gradle file:

+ include ':rncamerakit'
+ project(':rncamerakit').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-camera-kit/android/')

Then add to your app app/build.gradle in the dependencies section:

+ compile project(":rncamerakit")

Then in MainApplication.java add:

+ import com.wix.RNCameraKit.RNCameraKitPackage;

And in the package list in the same file (e.g. getPackages) add:

+ new RNCameraKitPackage()

Running the example project

  • cd example
  • yarn or npm install (the yarn/npm should be in the example folder)
  • react-native run-ios or react-native run-android

APIs

CameraKitCamera - Camera component

<CameraKitCamera
  ref={cam => this.camera = cam}
  style={{
    flex: 1,
    backgroundColor: 'white'
  }}
  cameraOptions={{
    flashMode: 'auto',             // on/off/auto(default)
    focusMode: 'on',               // off/on(default)
    zoomMode: 'on',                // off/on(default)
    ratioOverlay:'1:1',            // optional, ratio overlay on the camera and crop the image seamlessly
    ratioOverlayColor: '#00000077' // optional
  }}
  onReadQRCode={(event) => console.log(event.nativeEvent.qrcodeStringValue)} // optional
  
/>

CameraKitCamera cameraOptions

AttributeValuesDescription
flashMode'on'/'off'/'auto'camera flash mode (default is auto)
focusMode'on'/'off'camera focus mode (default is on)
zoomMode'on'/'off'camera zoom mode
ratioOverlay['int':'int', ...]overlay on top of the camera view (crop the image to the selected size) Example: ['16:9', '1:1', '3:4']
ratioOverlayColorColorany color with alpha (default is '#ffffff77')

CameraKitCamera API

checkDeviceCameraAuthorizationStatus

const isCameraAuthorized = await CameraKitCamera.checkDeviceCameraAuthorizationStatus();

return values:

AVAuthorizationStatusAuthorized returns true

AVAuthorizationStatusNotDetermined returns -1

otherwise, returns false

requestDeviceCameraAuthorization

const isUserAuthorizedCamera = await CameraKitCamera.requestDeviceCameraAuthorization();

AVAuthorizationStatusAuthorized returns true

otherwise, returns false

capture - must have the wanted camera capture reference

Capture image (shouldSaveToCameraRoll: boolean)

const image = await this.camera.capture(true);

setFlashMode - must have the wanted camera capture reference

Set flash mode (auto/on/off)

const success = await this.camera.setFlashMode(newFlashData.mode);

changeCamera - must have the wanted camera capture reference

Change to fornt/rear camera

const success = await this.camera.changeCamera();

CameraKitGalleryView - Gallery grid component

Native Gallery View (based on UICollectionView(iOS) and RecyclerView (Android))

npm.io

<CameraKitGalleryView
  ref={gallery => this.gallery = gallery}
  style={{flex: 1, marginTop: 20}}
  minimumInteritemSpacing={10}
  minimumLineSpacing={10}
  albumName={<ALBUM_NAME>}
  columnCount={3}
  onTapImage={event => {
    // event.nativeEvent.selected - ALL selected images ids
  }}
  selectedImages={<MAINTAIN_SELECETED_IMAGES>}
  selectedImageIcon={require('<IMAGE_FILE_PATH>'))}
  unSelectedImageIcon={require('<IMAGE_FILE_PATH>')}
/>
AttributeValuesDescription
minimumInteritemSpacingFloatMinimum inner Item spacing
minimumLineSpacingFloatMinimum line spacing
imageStrokeColorColorImage stroke color
imageStrokeColorWidthNumber > 0Image stroke color width
albumNameStringAlbum name to show
columnCountIntegerHow many clumns in one row
onTapImageFunctionCallback when image tapped
selectedImagesArraySelected images (will show the selected badge)
selectedImageIconrequire(_PATH_)- DEPRECATED use Selection - Selected image badge image
unSelectedImageIconrequire(_PATH_)- DEPRECATED use Selection - Unselected image badge image
selectionObjectSee Selection section
getUrlOnTapImageBooleaniOS only - On image tap return the image internal (tmp folder) uri (intead of Photos.framework asset id)
customButtonStyleObjectSee Custom Button section
onCustomButtonPressFunctionCallback when custom button tapped
contentInset (iOS)ObjectThe amount by which the gellery view content is inset from its edges (similar to ScrollView contentInset)
remoteDownloadIndicatorTypeString ('spinner' / 'progress-bar' / 'progress-pie')iOS only - see Images stored in iCloud
remoteDownloadIndicatorColorColoriOS only - Color of the remote download indicator to show
onRemoteDownloadChangedFunctioniOS only - Callback when the device curentlly download remote image stored in the iCloud.

Custom Button

AttributeValuesDescription
imagerequire(_PATH_)Custom button image
backgroundColorColorCustom button background color

Selection

AttributeValuesDescription
selectedImagerequire(_PATH_)Selected image badge image
unselectedImagerequire(_PATH_)Unselected image badge image
imagePositionbottom/top-right/left / centerSelected/Unselected badge image position (Default:top-right)
overlayColorColorImage selected overlay color
imageSizeAndroidlarge/mediumAndroid Only - Selected badge image size

Images stored in iCloud

On iOS images can be stored in iCould if the device is low on space which means full-resolution photos automatically replaced with optimized version and full resolution versions are stored in iCloud.

In this case, we need to download the image from iCloud and Photos Framework by Apple does a great job. Downloading take time and we deal with UI, so we need to show loading/progress indicator. In order to do so, we provide 3 types of loading/progress inidcators:

Sets remoteDownloadIndicatorType prop (and remoteDownloadIndicatorColor in order to sets the Color) on CameraKitGalleryView:

AttributeValues
'spinner'npm.io
'progress-bar'npm.io
'progress-pie'npm.io

In order to simulate this loading behaviour, since reach low on storage situation is hard, add this prop iCloudDownloadSimulateTime={TIME_IN_SECONDS}, just DO NOT FORGET TO REMOVE IT.

QR Code

<CameraKitCameraScreen
    actions={{ rightButtonText: 'Done', leftButtonText: 'Cancel' }}
    onBottomButtonPressed={(event) => this.onBottomButtonPressed(event)}
    scanBarcode={true}
    laserColor={"blue"}
    frameColor={"yellow"}

    onReadQRCode={((event) => Alert.alert("Qr code found"))} //optional
    hideControls={false}           //(default false) optional, hide buttons and additional controls on top and bottom of screen
    showFrame={true}   //(default false) optional, show frame with transparent layer (qr code or barcode will be read on this area ONLY), start animation for scanner,that stoped when find any code. Frame always at center of the screen
    offsetForScannerFrame = {10}   //(default 30) optional, offset from left and right side of the screen
    heightForScannerFrame = {300}  //(default 200) optional, change height of the scanner frame
    colorForScannerFrame = {'red'} //(default white) optional, change colot of the scanner frame
/>

Credits

  • M13ProgressSuite component by Marxon13 - A suite containing many tools to display progress information on iOS.

License

The MIT License.

See LICENSE

14.0.0-beta13

7 months ago

14.0.0-beta5

10 months ago

14.0.0-beta4

10 months ago

14.0.0-beta3

12 months ago

14.0.0-beta9

9 months ago

14.0.0-beta8

9 months ago

14.0.0-beta7

9 months ago

14.0.0-beta6

10 months ago

14.0.0-beta12

9 months ago

14.0.0-beta11

9 months ago

14.0.0-beta10

9 months ago

14.0.0-beta1

2 years ago

14.0.0-beta2

2 years ago

13.0.0

2 years ago

12.1.0

2 years ago

12.0.0

2 years ago

12.0.0-beta5

3 years ago

11.2.0

3 years ago

11.2.1

3 years ago

12.0.0-beta4

3 years ago

12.0.0-beta1

3 years ago

12.0.0-beta3

3 years ago

12.0.0-beta2

3 years ago

11.1.0

3 years ago

11.0.0

3 years ago

10.0.0

3 years ago

9.0.0

4 years ago

8.0.4

4 years ago

8.0.3

4 years ago

8.0.2

5 years ago

8.0.1

5 years ago

8.0.0

5 years ago

7.3.7

5 years ago

7.3.6

5 years ago

7.3.5

5 years ago

7.3.4

5 years ago

7.3.3

5 years ago

7.3.2

5 years ago

6.7.1

5 years ago

6.3.2

5 years ago

7.3.1

5 years ago

7.3.0

5 years ago

6.7.0

5 years ago

6.6.0

5 years ago

6.5.0

5 years ago

6.4.1

5 years ago

6.4.0

5 years ago

7.2.0

5 years ago

7.1.1

5 years ago

6.3.1

5 years ago

6.3.0

6 years ago

6.2.7

6 years ago

7.1.0

6 years ago

7.0.7

6 years ago

7.0.6

6 years ago

7.0.5

6 years ago

7.0.4-torch

6 years ago

7.0.3-torch

6 years ago

7.0.2-torch

6 years ago

7.0.1-torch

6 years ago

7.0.0-torch

6 years ago

6.2.6

6 years ago

6.2.5

6 years ago

6.2.4

6 years ago

6.2.2

6 years ago

6.2.1

6 years ago

6.2.0

6 years ago

5.3.32

6 years ago

5.3.31

6 years ago

5.3.30

6 years ago

5.3.29

6 years ago

5.3.28

6 years ago

5.3.27

6 years ago

5.3.26

6 years ago

6.1.2

6 years ago

6.1.1

6 years ago

5.3.25

6 years ago

5.3.24

6 years ago

6.1.0

6 years ago

6.0.0

6 years ago

5.3.23

6 years ago

5.3.22

6 years ago

5.3.21

6 years ago

5.3.20

6 years ago

5.3.19

6 years ago

5.3.18

6 years ago

5.3.17

6 years ago

5.3.16

6 years ago

5.3.15

6 years ago

5.3.14

6 years ago

5.3.13

6 years ago

5.3.12

6 years ago

5.3.11

7 years ago

5.3.10

7 years ago

5.3.9

7 years ago

5.3.8

7 years ago

5.3.7

7 years ago

5.3.6

7 years ago

5.3.5

7 years ago

5.3.4

7 years ago

5.3.3

7 years ago

5.3.2

7 years ago

5.3.1

7 years ago

5.3.0

7 years ago

5.2.20

7 years ago

5.2.19

7 years ago

5.2.18

7 years ago

5.2.17

7 years ago

5.2.16

7 years ago

5.2.15

7 years ago

5.2.14

7 years ago

5.2.13

7 years ago

5.2.12

7 years ago

5.2.11

7 years ago

5.2.10

7 years ago

5.2.9

7 years ago

5.2.8

7 years ago

5.2.7

7 years ago

5.2.6

7 years ago

5.2.5

7 years ago

5.2.4

7 years ago

5.2.3

7 years ago

5.2.2

7 years ago

5.2.1

7 years ago

5.2.0

7 years ago

5.0.0-hotfix.1

7 years ago

5.1.4

7 years ago

5.1.0-hotfix.1

7 years ago

5.1.3

7 years ago

5.1.2

7 years ago

5.1.1

7 years ago

5.1.0

7 years ago

5.0.0

7 years ago

4.0.8

7 years ago

4.0.7

7 years ago

4.0.6

7 years ago

4.0.5

7 years ago

4.0.4

7 years ago

4.0.2

7 years ago

4.0.1

7 years ago

3.0.10

7 years ago

3.0.9

7 years ago

3.0.8

7 years ago

3.0.7

7 years ago

3.0.6

7 years ago

3.0.5

7 years ago

4.0.0

7 years ago

3.0.4

8 years ago

3.0.3

8 years ago

3.0.2

8 years ago

3.0.0

8 years ago

2.0.24

8 years ago

2.0.23

8 years ago

2.0.22

8 years ago

2.0.21

8 years ago

2.0.20

8 years ago

2.0.19

8 years ago

2.0.18

8 years ago

2.0.17

8 years ago

2.0.16

8 years ago

2.0.15

8 years ago

2.0.14

8 years ago

2.0.13

8 years ago

2.0.12

8 years ago

2.0.11

8 years ago

2.0.10

8 years ago

2.0.9

8 years ago

2.0.8

8 years ago

2.0.7

8 years ago

2.0.6

8 years ago

2.0.5

8 years ago

2.0.4

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.17

8 years ago

1.0.16

8 years ago

1.0.15

8 years ago

1.0.14

8 years ago

1.0.13

8 years ago

1.0.12

8 years ago

1.0.11

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago