readExifFromBytes function

Future<Map<String?, IfdTag>?> readExifFromBytes(
  1. List<int> bytes, {
  2. String? stop_tag,
  3. bool details = true,
  4. bool strict = false,
  5. bool debug = false,
  6. bool truncate_tags = true,
})

Implementation

Future<Map<String?, IfdTag>?> readExifFromBytes(List<int> bytes,
    // ignore: non_constant_identifier_names
    {String? stop_tag,
    bool details = true,
    bool strict = false,
    bool debug = false,
    // ignore: non_constant_identifier_names
    bool truncate_tags = true}) async {
  return readExifFromFileReader(FileReader.fromBytes(bytes),
      stopTag: stop_tag,
      details: details,
      strict: strict,
      debug: debug,
      truncateTags: truncate_tags);
}