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

Decode EXIF data from image files (improved fork of https://github.com/bigflood/dartexif). Supports VM, JavaScript and Web Assembly.

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}');
    }
  }
}
9
likes
155
points
642
downloads

Publisher

verified publishermgenware.com

Weekly Downloads

Decode EXIF data from image files (improved fork of https://github.com/bigflood/dartexif). Supports VM, JavaScript and Web Assembly.

Repository
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

brotli, collection, iso_base_media, js_interop_utils, random_access_source, sprintf, web

More

Packages that depend on exif_reader