Multi platform 🚀
Expo.ImageManipulator
is only a API without a UI, so you have to build your own UI on top of it, or choose detach your project to use third party linked packages, witch is no so good because a pure javascript Expo project is marvelous!
import React from 'react'
import { Dimensions, Button, ImageBackground } from 'react-native'
import { ImageManipulator } from 'expo-image-crop'
export default class App extends React.Component {
state = {
isVisible: false,
uri: 'https://i.pinimg.com/originals/39/42/a1/3942a180299d5b9587c2aa8e09d91ecf.jpg',
}
onToggleModal = () => {
const { isVisible } = this.state
this.setState({ isVisible: !isVisible })
}
render() {
const { uri, isVisible } = this.state
const { width, height } = Dimensions.get('window')
return (
<ImageBackground
resizeMode="contain"
style={{
justifyContent: 'center', padding: 20, alignItems: 'center', height, width, backgroundColor: 'black',
}}
source={{ uri }}
>
<Button title="Open Image Editor" onPress={() => this.setState({ isVisible: true })} />
<ImageManipulator
photo={{ uri }}
isVisible={isVisible}
onPictureChoosed={uriM => this.setState({ uri: uriM })}
onToggleModal={this.onToggleModal}
/>
</ImageBackground>
)
}
}
- isVisible:
Bool
- Show or hide modal with image manipulator UI - onPictureChoosed:
function
- Callback where is passed image edited as parameter - photo:
object
- uri:
string
- uri of image to be edited - width:
number
- width of image to be edited (optional, used for large images due android bug, see: facebook/react-native#22145) - height:
number
- height of image to be edited (optional, used for large images due android bug, see: facebook/react-native#22145)
- uri:
- btnTexts:
object
- crop:
string
- name for crop text - rotate:
string
- name for rotate text - done:
string
- name for done text - processing:
string
- name for processing text
- crop:
- onToggleModal:
function
- Callback called when modal is dismissed - borderColor:
string
- Color for crop mask border - allowRotate:
Bool
- Show rotate option - pinchGestureEnabled:
Bool
- Disable/Enable pinch gesture - squareAspect:
Bool
- Disable/Enable the square aspect of crop mask
- Use it into Expo app (from expo client, Standalone app or ExpoKit app).
- Because we need to have access to
Expo.ImageManipulator
- Only Expo SDK 25 or Higher
- Crop and rotate image with
Expo.ImageManipulator
- [Android / IOS] Detect touches with more precision (Drag / Resizing)
- [ x ] [Android / IOS] Better crop mask