Skip to content
This repository has been archived by the owner on Jun 16, 2023. It is now read-only.

Commit

Permalink
fix(docs): move skipProcessing to 'Supported options'
Browse files Browse the repository at this point in the history
  • Loading branch information
felippepuhle committed Apr 10, 2018
1 parent e0e1c47 commit 8054200
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/RNCamera.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@ Supported options:

- `forceUpOrientation` (iOS only, boolean true or false). This property allows to force portrait orientation based on actual data instead of exif data.

- `skipProcessing` (android only, boolean). This property skips all image processing on android, this makes taking photos super fast, but you loose some of the information, width, height and the ability to do some processing on the image (base64, width, quality, mirrorImage, exif, etc)


The promise will be fulfilled with an object with some of the following properties:

- `width`: returns the image's width (taking image orientation into account)
Expand All @@ -269,7 +272,6 @@ The promise will be fulfilled with an object with some of the following properti
- `base64`: returns the base64 representation of the image if required.
- `exif`: returns an exif map of the image if required.

- `skipProcessing` (android only, boolean). This property skips all image processing on android, this makes taking photos super fast, but you loose some of the information, width, height and the ability to do some processing on the image (base64, width, quality, mirrorImage, exif, etc)
#### `recordAsync([options]): Promise`

Records a video, saves it in your app's cache directory and returns a promise when stopRecording is called or either maxDuration or maxFileSize specified are reached.
Expand Down

0 comments on commit 8054200

Please sign in to comment.