【发布时间】:2020-08-13 14:44:09
【问题描述】:
我正在使用图像选择器博览会来访问我的画廊或照片。我想让未裁剪的完整照片显示在 image 上,这是我的代码:
const image = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.All,
allowsEditing: true,
aspect: [1, 1],
quality: 1,
});
if (!image.cancelled) {
setPickedImage(image.uri);
setModalVisible(false);
}
};
【问题讨论】:
标签: react-native react-native-image-picker