我想使用本机并使用以下代码来裁剪图像
var cropData = {
offset: {x: 0, y: 20},
size: {width: 20, height: 20},
displaySize: {width: 20, height: 20},
resizeMode: 'contain',
};
ImageEditor.cropImage(
uripath,
cropData,
(croppedImageURI) => {
console.log('succes', croppedImageURI);
},
(cropError) => {
console.log('fail', cropError);
}
);
在iOS中,它可以正常工作。
在Andorid中,出现以下错误
java.lang.Double无法转换为java.lang.String getString
请帮助!