diff --git a/mobile/apps/photos/lib/utils/image_ml_util.dart b/mobile/apps/photos/lib/utils/image_ml_util.dart index ea894c3781..ffecd69db5 100644 --- a/mobile/apps/photos/lib/utils/image_ml_util.dart +++ b/mobile/apps/photos/lib/utils/image_ml_util.dart @@ -65,8 +65,8 @@ Future decodeImageFromPath( await FlutterImageCompress.compressWithFile( imagePath, format: CompressFormat.jpeg, - minWidth: 8000, // High value to ensure image is not scaled down - minHeight: 8000, // High value to ensure image is not scaled down + minWidth: 20000, // High value to ensure image is not scaled down + minHeight: 20000, // High value to ensure image is not scaled down ); final image = await decodeImageFromData(convertedData!); _logger.info('Conversion successful, jpeg decoded');