{"id":42399817,"url":"https://github.com/lodev09/react-native-exify","last_synced_at":"2026-02-17T03:12:37.816Z","repository":{"id":226891200,"uuid":"769789316","full_name":"lodev09/react-native-exify","owner":"lodev09","description":"Read and write Exif metadata from/into an image 🏷️","archived":false,"fork":false,"pushed_at":"2024-04-30T21:06:08.000Z","size":3040,"stargazers_count":40,"open_issues_count":12,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-08-23T17:57:27.577Z","etag":null,"topics":["android","exif","exif-metadata","ios","react-native","react-native-vision-camera"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/lodev09.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":"lodev09","buy_me_a_coffee":"lodev09"}},"created_at":"2024-03-10T04:02:39.000Z","updated_at":"2025-07-14T17:59:02.000Z","dependencies_parsed_at":"2024-03-23T04:24:33.582Z","dependency_job_id":"2b2eaa5d-e06f-4612-9114-678842f3d666","html_url":"https://github.com/lodev09/react-native-exify","commit_stats":null,"previous_names":["lodev09/react-native-exify"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/lodev09/react-native-exify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Freact-native-exify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Freact-native-exify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Freact-native-exify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Freact-native-exify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lodev09","download_url":"https://codeload.github.com/lodev09/react-native-exify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lodev09%2Freact-native-exify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28831241,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T23:29:49.665Z","status":"ssl_error","status_checked_at":"2026-01-27T23:25:58.379Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["android","exif","exif-metadata","ios","react-native","react-native-vision-camera"],"created_at":"2026-01-28T01:14:27.372Z","updated_at":"2026-02-17T03:12:37.799Z","avatar_url":"https://github.com/lodev09.png","language":"Kotlin","funding_links":["https://github.com/sponsors/lodev09","https://buymeacoffee.com/lodev09"],"categories":[],"sub_categories":[],"readme":"# React Native Exify\n\n[![CI](https://github.com/lodev09/react-native-exify/actions/workflows/ci.yml/badge.svg)](https://github.com/lodev09/react-native-exify/actions/workflows/ci.yml)\n![NPM Downloads](https://img.shields.io/npm/dw/%40lodev09%2Freact-native-exify)\n[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/lodev09/react-native-exify)\n\nA simple library to read and write image Exif metadata for your React Native Apps. 🏷️\n\n\u003cimg alt=\"@lodev09/react-native-exify\" src=\"preview.gif\" width=\"400\" /\u003e\n\n## Features\n\n* Read Exif data from an image\n* Write Exif data into an image\n* Tags are typed and standardized\n* Works with Expo and bare React Native projects\n* Supports New Architecture (Turbo Module)\n\n## Installation\n\n```sh\nyarn add @lodev09/react-native-exify\n```\n\n## Usage\n\n```tsx\nimport * as Exify from '@lodev09/react-native-exify';\n```\n\n### Reading Exif 🔍\n\n```tsx\nconst uri = 'file://path/to/image.jpg'\n\nconst tags = await Exify.read(uri)\nconsole.log(tags)\n```\n\n\u003e [!IMPORTANT]\n\u003e The `uri` must include a scheme (e.g. `file://`, `ph://`, `content://`). Bare file paths like `/var/mobile/.../image.jpg` are not supported and will throw an error.\n\n\u003e [!NOTE]\n\u003e On Android 10+, GPS data is redacted from `content://` URIs by default. The library automatically requests `ACCESS_MEDIA_LOCATION` at runtime to access unredacted location data. Your app must have media read access (`READ_MEDIA_IMAGES` or `READ_EXTERNAL_STORAGE`) granted first.\n\u003e If you're already using a library like [`expo-media-library`](https://docs.expo.dev/versions/latest/sdk/media-library/) that grants `ACCESS_MEDIA_LOCATION`, exify will use the existing grant.\n\n### Writing Exif ✍️\n\n```tsx\nimport type { ExifTags } from '@lodev09/react-native-exify';\n\nconst uri = 'file://path/to/image.jpg'\nconst newTags: ExifTags = {\n  GPSLatitude: 69.69,\n  GPSLongitude: 69.69,\n  UserComment: 'Someone wrote GPS here!',\n}\n\nconst result = await Exify.write(uri, newTags)\nconsole.log(result.tags)\n```\n\n\u003e [!NOTE]\n\u003e On iOS, writing exif into an Asset file will duplicate the image. iOS does not allow writing exif into an Asset file directly.\n\u003e If you're getting the photo from a [camera](https://docs.expo.dev/versions/latest/sdk/camera/), write it into the output file first before saving to the Asset library!\n\n## Example\n\nSee [example](example) for more detailed usage.\n\n### Built with True Sheet\n\nThe example app uses [@lodev09/react-native-true-sheet](https://github.com/lodev09/react-native-true-sheet) for the image picker UI. Check it out!\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\n[MIT](LICENSE)\n\n---\n\nMade with ❤️ by [@lodev09](http://linkedin.com/in/lodev09/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flodev09%2Freact-native-exify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flodev09%2Freact-native-exify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flodev09%2Freact-native-exify/lists"}