如何防止使用
react-native-image-crop-picker
裁剪图像时调整框架。特别是在 iOS 上,我希望在 iOS 上将框架固定为 width: 700 height: 1000
并且不允许调整。
这是下面的片段。
const _pickImage = () => {
ImagePicker.openPicker({
width: 700,
height: 1000,
cropping: true,
cropperToolbarTitle: 'Adjust Image',
cropperCircleOverlay: false,
freeStyleCropEnabled: false,
hideBottomControls: false,
cropperActiveWidgetColor: '#00FF00',
cropperStatusBarColor: '#000',
})
.then((image) => {
setImage(image.path); // Save the selected image path
})
.catch((error) => {
if (error.code !== 'E_PICKER_CANCELLED') {
Alert.alert('Error', 'An error occurred while picking the image.');
}
});
};
将enableRotation添加为 false 怎么样?