exif_reader 3.17.0 copy "exif_reader: ^3.17.0" to clipboard
exif_reader: ^3.17.0 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
0
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.

Homepage

License

unknown (license)

Dependencies

brotli, collection, iso_base_media, js_interop_utils, sprintf, web

More

Packages that depend on exif_reader