处理image_cropper抖动中的image_picker中的空文件?

时间:2020-08-04 09:48:17

标签: flutter dart imagepicker flutter-image flutter-file

我正在尝试使用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.

我的Null安全代码。

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;
}

请向我建议一种更好的方法来做我想做的事情。

1 个答案:

答案 0 :(得分:0)

var img = await ImagePicker().getImage(source: ImageSource.gallery);
final File croppedImage = await ImageCropper.cropImage(
    sourcePath: img.path,
    maxWidth: 1080,
    maxHeight: 1080,
    aspectRatio: CropAspectRatio(ratioX: 1.0, ratioY: 1.0)
);

我认为您应该先拿起img,检查它是否有效。然后将路径传递到imageCropper。 因此,上面的代码应该可以正常工作。