convertToBytes method

Future<Uint8List> convertToBytes(
  1. String inputPath, {
  2. int compressionLevel = 6,
  3. bool preserveMetadata = true,
})

Converts a HEIC/HEIF file at inputPath to PNG bytes in memory.

Implementation

Future<Uint8List> convertToBytes(
  String inputPath, {
  int compressionLevel = 6,
  bool preserveMetadata = true,
}) {
  throw UnimplementedError('convertToBytes() has not been implemented.');
}