Package Exports
- react-native-camera
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-camera) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-native-camera
A camera viewport for React Native. This module is currently in the very early stages of development and does not support image capture at this time, though it is coming.
Getting started
npm install react-native-camera@latest --save- In XCode, in the project navigator right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-cameraand addRCTCamera.xcodeproj - Add
libRCTCamera.ato your project'sBuild Phases➜Link Binary With Libraries - Click
RCTCamera.xcodeprojin the project navigator and go theBuild Settingstab. Look forHeader Search Pathsand make sure it contains both$(SRCROOT)/../react-native/Reactand$(SRCROOT)/../../React- mark both asrecursive. - Run your project (
Cmd+R)
Usage
All you need is to require the react-native-camera module and then use the
<Camera/> tag.
var React = require('react-native');
var {
AppRegistry,
StyleSheet,
Text,
View,
} = React;
var Camera = require('react-native-camera');
var cameraApp = React.createClass({
render: function() {
return (
<View>
<TouchableHighlight onPress={this._switchCamera}>
<View>
<Camera
ref="cam"
aspect="Stretch"
orientation="PortraitUpsideDown"
style={{height: 200, width: 200}}
/>
</View>
</TouchableHighlight>
</View>
);
},
_switchCamera: function() {
this.refs.cam.switch();
}
});
AppRegistry.registerComponent('cameraApp', () => cameraApp);Props
aspect
Values: Fit, Fill (default), Stretch
The aspect prop allows you to define how your viewfinder renders the camera's view. For instance, if you have a square viewfinder and you want to fill the it entirely, you have two options: Fill, where the aspect ratio of the camera's view is preserved by cropping the view or Stretch, where the aspect ratio is skewed in order to fit the entire image inside the viewfinder. The other option is Fit, which ensures the camera's entire view fits inside your viewfinder without altering the aspect ratio.
camera
Values: Front, Back (default)
Use the camera prop to specify which camera to use.
orientation
Values: LandscapeLeft, LandscapeRight, Portrait (default), PortraitUpsideDown
The orientation prop allows you to specify the current orientation of the phone to ensure the viewfinder is "the right way up."
TODO: Add support for an Auto value to automatically adjust for orientation changes.
Component methods
You can access component methods by adding a ref (ie. ref="camera") prop to your <Camera> element, then you can use this.refs.camera.switch(), etc. inside your component.
switch()
The switch() method toggles between the Front and Back cameras.
takePicture(callback)
Basic implementation of image capture. This method is subject to change, but currently works by accepting a callback like function(err, base64EncodedJpeg) { ... }.
Thanks to Brent Vatne (@brentvatne) for the react-native-video module which provided me with a great example of how to set up this module.