颤动图像裁剪器无法裁剪图像

时间:2021-01-16 07:49:49

标签: flutter

我使用此 Github 链接下载了 enigma 项目。它具有使用 pub.dev 中的 image_cropper 的图像裁剪功能,因此当我尝试运行此项目时,这部分出现错误。

Future<Null> _cropImage() async {
    double x, y;
    if (widget.profile) {
      x = 1.0;
      y = 1.0;
    }
    File croppedFile = await ImageCropper.cropImage(
        sourcePath: _imageFile.path,
        ratioX: x,
        ratioY: y,
        circleShape: widget.profile,
        toolbarColor: Colors.white);
    setState(() {
      if (croppedFile != null) _imageFile = croppedFile;
    });
  }

它说

<块引用>

未定义命名参数“ratioX”。尝试将名称更正为 现有命名参数的名称,或定义命名参数 名称'ratioX'

但它与原始项目相同。

 @override
  Widget build(BuildContext context) {
    return Enigma.getNTPWrappedWidget(WillPopScope(
      child: Scaffold(
        backgroundColor: enigmaBlack,
        appBar: new AppBar(
            title: new Text(widget.title),
            backgroundColor: enigmaBlack,
            actions: _imageFile != null
                ? <Widget>[
                    IconButton(
                        icon: Icon(Icons.edit, color: enigmaWhite),
                        disabledColor: Colors.transparent,
                        onPressed: () {
                          _cropImage();
                        }),
                    IconButton(
                        icon: Icon(Icons.check, color: enigmaWhite),
                        onPressed: () {
                          setState(() {
                            isLoading = true;
                          });
                          widget.callback(_imageFile).then((imageUrl) {
                            Navigator.pop(context, imageUrl);
                          });
                        }),
                    SizedBox(
                      width: 8.0,
                    )
                  ]
                : []),
        body: Stack(children: [
          new Column(children: [
            new Expanded(child: new Center(child: _buildImage())),
            _buildButtons()
          ]),
          Positioned(
            child: isLoading
                ? Container(
                    child: Center(
                      child: CircularProgressIndicator(
                          valueColor:
                              AlwaysStoppedAnimation<Color>(enigmaBlue)),
                    ),
                    color: enigmaBlack.withOpacity(0.8),
                  )
                : Container(),
          )
        ]),
      ),
      onWillPop: () => Future.value(!isLoading),
    ));
  }

裁剪图像方法在这里使用..

1 个答案:

答案 0 :(得分:0)

Image Cropper 库有一个名为 ratioX 和 ratioY 的参数,但在最近的版本中已经改变了。

检查 1.1.0 版本库的 CHANGELOG:

<块引用>

突破性变化:ratioX 和 ratioY 被 aspectRatio 替换, circleShape 被cropStyle 取代,移除了toolbarTitle 和 工具栏颜色(这些属性移到 AndroidUiSettings 中)