我正在尝试使用 package 获取图像image_picker
,然后传递给image_cropper
. 我采取了一些不同的方法来避免在图像选择后返回主屏幕,然后再去裁剪图像屏幕。
这是我的图像选择和图像裁剪代码。
Future<File> getImageFromGallery(BuildContext context) async{
final File croppedImage = await ImageCropper.cropImage(
sourcePath: File((await ImagePicker().getImage(source: ImageSource.gallery)).path).path,
maxWidth: 1080,
maxHeight: 1080,
aspectRatio: CropAspectRatio(ratioX: 1.0, ratioY: 1.0)
);
if (croppedImage != null) {
return croppedImage;
}
return null;
}
Error: The getter 'path' was called on null.
在尝试过Null Safety
,但随后会引发此错误:
Failed assertion: line 81 pos 12: 'await File(sourcePath).exists()': is not true.
我的代码具有空安全性。
Future<File> getImageFromGallery(BuildContext context) async{
final File croppedImage = await ImageCropper.cropImage(
sourcePath: File((await ImagePicker().getImage(source: ImageSource.gallery)).path).path,
maxWidth: 1080,
maxHeight: 1080,
aspectRatio: CropAspectRatio(ratioX: 1.0, ratioY: 1.0)
);
if (croppedImage != null) {
return croppedImage;
}
return null;
}
请建议我一个更好的方法来做我想做的事情。