exif_reader 3.16.1 copy "exif_reader: ^3.16.1" to clipboard
exif_reader: ^3.16.1 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
120
points
1.56k
downloads

Publisher

verified publishermgenware.com

Weekly Downloads

Decode EXIF data from image files.

Repository
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

brotli, collection, iso_base_media, sprintf

More

Packages that depend on exif_reader