我正在使用 image_cropper 库并尝试在图像选择器之后裁剪圆形图像。 UI 显示为圆形,但输出图像文件未圆形裁剪。
使用的库
image_cropper : 1.4.0
implementation 'com.github.yalantis:ucrop:2.2.6'
.
await ImageCropper.cropImage(
sourcePath: _photoUrlFile.path,
compressQuality: 99,
cropStyle: CropStyle.circle,
compressFormat: ImageCompressFormat.png,
androidUiSettings: AndroidUiSettings(
toolbarColor: Colors.orange,
toolbarWidgetColor: Colors.white,
toolbarTitle: 'Crop It'),
);