flutter_image_cropper
flutter_image_cropper copied to clipboard
how can i add custom Crop Aspect Ratio
Any options to add custom Crop Aspect Ratio
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),
]);