exif_reader 3.13.0 copy "exif_reader: ^3.13.0" to clipboard
exif_reader: ^3.13.0 copied to clipboard

Decode EXIF data from image files.

exif_reader #

pub package Build Status

Dart package to decode EXIF data from TIFF, JPEG, HEIC, PNG, WebP, JXL (JPEG XL), ARW, RAW, DNG, CRW, CR3, NRW, NEF, RAF files. Fork of exifdart.

Usage #

Future<void> main(List<String> arguments) async {
  for (final filename in arguments) {
    print('Reading $filename ..');

    final data = await readExifFromFile(File(filename));

    if (data.isEmpty) {
      print('No EXIF information found');
      return;
    }

    for (final entry in data.entries) {
      print('${entry.key}: ${entry.value}');
    }
  }
}
4
likes
0
points
689
downloads

Publisher

verified publishermgenware.com

Weekly Downloads

Decode EXIF data from image files.

Homepage

License

unknown (license)

Dependencies

brotli, collection, iso_base_media, sprintf

More

Packages that depend on exif_reader