
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@mtourj/react-native-image-crop
Advanced tools
A dynamic image cropping component with gestures and web support
A component for react-native crop image, such as edit user head. This fork introduces fixes, additions and improvements not limited to:
Note: This README is outdated and does not represent this version of react-native-image-crop
, will be updated in the near future.
npm install @mtourj/react-native-image-crop --save
'use strict';
var React = require('react');
var ReactNative = require('react-native');
var {
StyleSheet,
View,
Text,
Image,
ImageEditor,
} = ReactNative;
var Button = require('@remobile/react-native-simple-button');
var ImageCrop = require('@remobile/react-native-image-crop');
module.exports = React.createClass({
getInitialState() {
return {
croppedImageURI: '',
};
},
edit() {
const cropData = this.imageCrop.getCropData();
ImageEditor.cropImage(
'http://v1.qzone.cc/avatar/201407/07/00/24/53b9782c444ca987.jpg!200x200.jpg',
cropData,
(croppedImageURI) => {
this.setState({croppedImageURI})
},
(error) => console.log(error)
);
},
render() {
return (
<View style={styles.container}>
<Button onPress={this.edit}>编辑</Button>
<ImageCrop
imageWidth={200}
imageHeight={200}
ref={(ref)=>this.imageCrop = ref}
source={{uri:'http://v1.qzone.cc/avatar/201407/07/00/24/53b9782c444ca987.jpg!200x200.jpg'}} />
<View style={styles.imageContainer}>
<Image
source={{uri: this.state.croppedImageURI}}
style={styles.image}
/>
</View>
</View>
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
},
imageContainer: {
height: 200,
marginTop: 20,
backgroundColor: 'white',
},
image: {
marginLeft: sr.w/2-100,
width: 200,
height: 200,
},
});
imageWidth: PropTypes.number.required
//must be image real origin imageWidthimageHeight: PropTypes.number.required
//must be image real origin imageHeighteditRectWidth: PropTypes.number.optional
//default: 212 [the edit rect width]editRectHeight: PropTypes.number.optional
//default: 212 [the edit rect height]editRectRadius: PropTypes.number.optional
//default: 106, the rect is roundoverlayColor: PropTypes.string.optional
//default: rgba(0, 0, 0, 0.5)getCropData()
//return ImageEditor.cropImage's cropData widthout displaySizeFAQs
A dynamic image cropping component with gestures and web support
The npm package @mtourj/react-native-image-crop receives a total of 10 weekly downloads. As such, @mtourj/react-native-image-crop popularity was classified as not popular.
We found that @mtourj/react-native-image-crop demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.