flutter_image_cropper icon indicating copy to clipboard operation
flutter_image_cropper copied to clipboard

how can i add custom Crop Aspect Ratio

Open ravidewanga opened this issue 2 years ago • 1 comments

Any options to add custom Crop Aspect Ratio

ravidewanga avatar May 14 '22 08:05 ravidewanga

Any options to add custom Crop Aspect Ratio

you can deal with parameter:aspectRatio

await ImageCropper().cropImage(
            sourcePath: image.path,
            compressFormat: ImageCompressFormat.jpg,
            aspectRatio: const CropAspectRatio(ratioX: 3, ratioY: 4),
            maxWidth: 240,
            maxHeight: 320,
            uiSettings: [
              AndroidUiSettings(
                  toolbarTitle: 'Cropper', lockAspectRatio: true),
            ]);

Aermberry avatar May 16 '22 05:05 Aermberry