compressWithList static method

Future<Uint8List> compressWithList(
  1. Uint8List image, {
  2. int minWidth = 1920,
  3. int minHeight = 1080,
  4. int quality = 95,
  5. int rotate = 0,
  6. int inSampleSize = 1,
  7. bool autoCorrectionAngle = true,
  8. CompressFormat format = CompressFormat.jpeg,
  9. bool keepExif = false,
})

Compress image from Uint8List to Uint8List.

Implementation

static Future<typed_data.Uint8List> compressWithList(
  typed_data.Uint8List image, {
  int minWidth = 1920,
  int minHeight = 1080,
  int quality = 95,
  int rotate = 0,
  int inSampleSize = 1,
  bool autoCorrectionAngle = true,
  CompressFormat format = CompressFormat.jpeg,
  bool keepExif = false,
}) async {
  return _platform.compressWithList(
    image,
    minWidth: minWidth,
    minHeight: minHeight,
    quality: quality,
    rotate: rotate,
    inSampleSize: inSampleSize,
    autoCorrectionAngle: autoCorrectionAngle,
    format: format,
    keepExif: keepExif,
  );
}