react-native ImageEditor.cropImage导致错误:ExifInterface仅支持以JPEG格式保存属性

时间:2019-01-10 09:16:43

标签: android react-native

我正在使用反应本地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-nativeandroid是否有问题。

感谢您的帮助。

0 个答案:

没有答案