我正在使用反应本地ImageEditor进行图像裁剪,如下所示,
ImageEditor.cropImage(imageUri,
{
offset: { x: 0, y: 0 },
size: { width: response.width, height: response.height },
displaySize: { width: 50, height: 50 },
resizeMode: 'contain',
},
(uri) => { resolve(uri); console.log('resolved uri', resolve(uri));},
(error) => {console.log('error', error)},
);
但遇到以下错误,
ExifInterface only supports saving attributes on JPEG formats.
JPEG和PNG图像都在发生这种情况。
我正在使用“ react-native”:“ 0.54.2”
不确定react-native
或android
是否有问题。
感谢您的帮助。