{"id":19123378,"url":"https://github.com/ryaa/capacitor-exif","last_synced_at":"2026-06-15T06:34:20.215Z","repository":{"id":248638856,"uuid":"829264627","full_name":"ryaa/capacitor-exif","owner":"ryaa","description":"Temporary repository for @capacitor-community/exif","archived":false,"fork":false,"pushed_at":"2024-07-17T07:41:00.000Z","size":104,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-22T13:35:58.437Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ryaa.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"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}},"created_at":"2024-07-16T05:07:42.000Z","updated_at":"2024-07-17T07:41:03.000Z","dependencies_parsed_at":"2024-11-09T05:35:40.952Z","dependency_job_id":null,"html_url":"https://github.com/ryaa/capacitor-exif","commit_stats":null,"previous_names":["ryaa/capacitor-exif"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ryaa/capacitor-exif","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryaa%2Fcapacitor-exif","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryaa%2Fcapacitor-exif/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryaa%2Fcapacitor-exif/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryaa%2Fcapacitor-exif/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryaa","download_url":"https://codeload.github.com/ryaa/capacitor-exif/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryaa%2Fcapacitor-exif/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34351448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-09T05:25:27.648Z","updated_at":"2026-06-15T06:34:20.193Z","avatar_url":"https://github.com/ryaa.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @capacitor-community/exif\n\nThis plugin offers utility functions for interacting with jpeg exif metadata\n\n## Install\n\n```bash\nnpm install @capacitor-community/exif\nnpx cap sync\n```\n\n## API\n\n\u003cdocgen-index\u003e\n\n* [`setCoordinates(...)`](#setcoordinates)\n* [`getCoordinates(...)`](#getcoordinates)\n* [Interfaces](#interfaces)\n\n\u003c/docgen-index\u003e\n\n\u003cdocgen-api\u003e\n\u003c!--Update the source file JSDoc comments and rerun docgen to update the docs below--\u003e\n\n### setCoordinates(...)\n\n```typescript\nsetCoordinates(options: SetCoordinatesOptions) =\u003e Promise\u003cvoid\u003e\n```\n\nSet the coordinates to the image EXIF metadata.\n\n| Param         | Type                                                                    |\n| ------------- | ----------------------------------------------------------------------- |\n| **`options`** | \u003ccode\u003e\u003ca href=\"#setcoordinatesoptions\"\u003eSetCoordinatesOptions\u003c/a\u003e\u003c/code\u003e |\n\n**Since:** 6.0.0\n\n--------------------\n\n\n### getCoordinates(...)\n\n```typescript\ngetCoordinates(options: GetCoordinatesOptions) =\u003e Promise\u003c{ lat: number; lng: number; } | undefined\u003e\n```\n\nSet the coordinates to the image EXIF metadata.\n\n| Param         | Type                                                                    |\n| ------------- | ----------------------------------------------------------------------- |\n| **`options`** | \u003ccode\u003e\u003ca href=\"#getcoordinatesoptions\"\u003eGetCoordinatesOptions\u003c/a\u003e\u003c/code\u003e |\n\n**Returns:** \u003ccode\u003ePromise\u0026lt;{ lat: number; lng: number; }\u0026gt;\u003c/code\u003e\n\n**Since:** 6.0.0\n\n--------------------\n\n\n### Interfaces\n\n\n#### SetCoordinatesOptions\n\n| Prop              | Type                | Description                                                        | Since |\n| ----------------- | ------------------- | ------------------------------------------------------------------ | ----- |\n| **`pathToImage`** | \u003ccode\u003estring\u003c/code\u003e | The path to the image to set the coordinates to the EXIF metadata. | 6.0.0 |\n| **`lat`**         | \u003ccode\u003enumber\u003c/code\u003e | The latitude of the image.                                         | 6.0.0 |\n| **`lng`**         | \u003ccode\u003enumber\u003c/code\u003e | The longitude of the image.                                        | 6.0.0 |\n\n\n#### GetCoordinatesOptions\n\n| Prop              | Type                | Description                                                        | Since |\n| ----------------- | ------------------- | ------------------------------------------------------------------ | ----- |\n| **`pathToImage`** | \u003ccode\u003estring\u003c/code\u003e | The path to the image to set the coordinates to the EXIF metadata. | 6.0.0 |\n\n\u003c/docgen-api\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryaa%2Fcapacitor-exif","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryaa%2Fcapacitor-exif","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryaa%2Fcapacitor-exif/lists"}