我正在尝试调整裁切器,而不是放大和缩小图像。
我正在使用react-native-image-crop-picker
。我希望裁纸器移动而不是单击图像。
这是我的代码:
imageCropView(){
ImagePicker.openCropper({
hideBottomControls:true,
path: this.state.path,
width: 300,
height: 400
}).then(image => {
console.log(image);
this.setState({
path:image.path
},()=>{
let arr = this.state.imagesArr;
arr.push(this.state.path);
this.setState({
imagesArr:arr,path:null
})
})
});
}
答案 0 :(得分:0)
使用以下属性完成:
freeStyleCropEnabled
为真