{"id":15293170,"url":"https://github.com/bigflood/dartexif","last_synced_at":"2025-09-10T21:37:35.824Z","repository":{"id":51090638,"uuid":"76555119","full_name":"bigflood/dartexif","owner":"bigflood","description":"Dart package to decode Exif data from tiff, jpeg and heic files","archived":false,"fork":false,"pushed_at":"2023-11-05T14:14:36.000Z","size":3088,"stargazers_count":33,"open_issues_count":16,"forks_count":31,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-27T03:35:18.575Z","etag":null,"topics":["dart","dart-library","dart-package","dart-port","dart-web","dartlang","exif","flutter","flutter-package","heic","jpeg","library","tiff"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/exif","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bigflood.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-12-15T11:47:30.000Z","updated_at":"2025-02-17T04:08:04.000Z","dependencies_parsed_at":"2024-06-18T22:55:10.347Z","dependency_job_id":"6dc01b75-dae5-4ff1-b864-7ea3755bf0d0","html_url":"https://github.com/bigflood/dartexif","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigflood%2Fdartexif","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigflood%2Fdartexif/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigflood%2Fdartexif/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigflood%2Fdartexif/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bigflood","download_url":"https://codeload.github.com/bigflood/dartexif/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248714755,"owners_count":21149961,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","dart-library","dart-package","dart-port","dart-web","dartlang","exif","flutter","flutter-package","heic","jpeg","library","tiff"],"created_at":"2024-09-30T16:40:03.188Z","updated_at":"2025-04-13T12:34:44.666Z","avatar_url":"https://github.com/bigflood.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# exif\n\n[![Pub Package](https://img.shields.io/pub/v/exif.svg)](https://pub.dev/packages/exif)\n[![Dart CI](https://github.com/bigflood/dartexif/actions/workflows/dart.yml/badge.svg)](https://github.com/bigflood/dartexif/actions/workflows/dart.yml)\n\nDart package to decode Exif data from TIFF, JPEG, HEIC, PNG and WebP files.\n\nDart port of ianaré sévi's EXIF library: \u003chttps://github.com/ianare/exif-py\u003e.\n\n## Usage\n\n* Simple example:\n```dart\nprintExifOf(String path) async {\n\n  final fileBytes = File(path).readAsBytesSync();\n  final data = await readExifFromBytes(fileBytes);\n\n  if (data.isEmpty) {\n    print(\"No EXIF information found\");\n    return;\n  }\n\n  if (data.containsKey('JPEGThumbnail')) {\n    print('File has JPEG thumbnail');\n    data.remove('JPEGThumbnail');\n  }\n  if (data.containsKey('TIFFThumbnail')) {\n    print('File has TIFF thumbnail');\n    data.remove('TIFFThumbnail');\n  }\n\n  for (final entry in data.entries) {\n    print(\"${entry.key}: ${entry.value}\");\n  }\n\n}\n```\n\n* example app: https://github.com/bigflood/exifviewer\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigflood%2Fdartexif","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbigflood%2Fdartexif","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigflood%2Fdartexif/lists"}