flutter_image_cropper icon indicating copy to clipboard operation
flutter_image_cropper copied to clipboard

Circular crop

Open ganeshchenniah opened this issue 4 years ago • 9 comments
trafficstars

Hi , I m trying to crop circular image after image picker, Ui is showing as circular , but after cropping file is not circularly cropped . Please suggest if im missing anything.

File cropped = await ImageCropper.cropImage( sourcePath: _photoUrlFile.path, compressQuality: 99, cropStyle: CropStyle.circle, compressFormat: ImageCompressFormat.png, // aspectRatioPresets: [CropAspectRatioPreset.square], // maxWidth: 1200, // maxHeight: 1400, androidUiSettings: AndroidUiSettings( toolbarColor: Colors.orange, toolbarWidgetColor: Colors.white, lockAspectRatio: false, toolbarTitle: 'Crop It'), );

ganeshchenniah avatar May 05 '21 10:05 ganeshchenniah

Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel beta, 2.2.0-10.1.pre, on Microsoft Windows [Version 10.0.18362.30], locale en-IN) [√] Android toolchain - develop for Android devices (Android SDK version 30.0.3) [√] Chrome - develop for the web [√] Android Studio (version 4.1.0) [√] Connected device (2 available)

• No issues found!

ganeshchenniah avatar May 10 '21 09:05 ganeshchenniah

Using image_cropper : 1.4.0 implementation 'com.github.yalantis:ucrop:2.2.6' . Given example also not working with circular image crop .

ganeshchenniah avatar May 10 '21 09:05 ganeshchenniah

I have the same question.

jianglinjie avatar May 30 '21 15:05 jianglinjie

Any update ?

ganeshchenniah avatar Jun 07 '21 06:06 ganeshchenniah

any update on this?

ghozay19 avatar Sep 15 '21 04:09 ghozay19

I also encountered this problem, is this a BUG?

Zipper-Code avatar Dec 14 '21 03:12 Zipper-Code

Same issue here, using version 1.4.1

garysm avatar Dec 20 '21 02:12 garysm

Although the final image isn't cropped in a circular form, it is cropped in a square shape, which is ideal. Use the CircleAvatar widget to display the image.

CircleAvatar(backgroundImage: AssetImage('<filepath>'),);

or

CircleAvatar(backgroundImage: NetworkImage('<fileURL'>),);

Marcosmaliki avatar Jan 31 '24 15:01 Marcosmaliki