Skip to content

CropAspectRatioPreset.square not able to crop the image in Android 15 app #602

@kamleshwebtech

Description

@kamleshwebtech

My flutter app is latest and fully compatible with android 15. When I use the image_cropper package and try to crop the image in square shape by using CropAspectRatioPreset.square. It does not crop the image just return null in croppedFile variable. Does anyone know what is the issue and how can we solve it?

CroppedFile? croppedFile = await ImageCropper().cropImage(
      sourcePath: _image.path,
      uiSettings: [
        AndroidUiSettings(
          toolbarTitle: 'Cropper',
          toolbarColor: Colors.deepOrange,
          toolbarWidgetColor: Colors.white,
          initAspectRatio: CropAspectRatioPreset.square,
          lockAspectRatio: true,
          aspectRatioPresets: [
            CropAspectRatioPreset.original,
            CropAspectRatioPreset.square,
          ],
        ),
      ],
    );

Kindly share suggestion to solve this issue. I have wasted 2 days to solve this issue. Thanks in advance.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions