2016-02-23 10:26:11 +00:00
|
|
|
/**
|
|
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
|
|
* evaluation purposes only.
|
|
|
|
*
|
|
|
|
* Facebook reserves all rights not expressly granted.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var React = require('react');
|
|
|
|
var ReactNative = require('react-native');
|
2016-02-23 10:26:11 +00:00
|
|
|
var {
|
|
|
|
Image,
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
UIManager,
|
|
|
|
View,
|
2016-04-09 03:36:40 +00:00
|
|
|
} = ReactNative;
|
2016-02-23 10:26:11 +00:00
|
|
|
|
|
|
|
var ScreenshotExample = React.createClass({
|
|
|
|
getInitialState() {
|
|
|
|
return {
|
|
|
|
uri: undefined,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<Text onPress={this.takeScreenshot} style={style.button}>
|
|
|
|
Click to take a screenshot
|
|
|
|
</Text>
|
|
|
|
<Image style={style.image} source={{uri: this.state.uri}}/>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
takeScreenshot() {
|
|
|
|
UIManager
|
2016-02-24 17:05:28 +00:00
|
|
|
.takeSnapshot('window', {format: 'jpeg', quality: 0.8}) // See UIManager.js for options
|
2016-02-23 10:26:11 +00:00
|
|
|
.then((uri) => this.setState({uri}))
|
|
|
|
.catch((error) => alert(error));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var style = StyleSheet.create({
|
|
|
|
button: {
|
|
|
|
marginBottom: 10,
|
|
|
|
fontWeight: '500',
|
|
|
|
},
|
|
|
|
image: {
|
|
|
|
flex: 1,
|
|
|
|
height: 300,
|
|
|
|
resizeMode: 'contain',
|
|
|
|
backgroundColor: 'black',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
exports.title = 'Snapshot / Screenshot';
|
|
|
|
exports.description = 'API to capture images from the screen.';
|
|
|
|
exports.examples = [
|
|
|
|
{
|
|
|
|
title: 'Take screenshot',
|
|
|
|
render(): ReactElement { return <ScreenshotExample />; }
|
|
|
|
},
|
|
|
|
];
|