https://github.com/exif-heic-js/exif-heic-js
JavaScript library for reading EXIF image metadata from HEIC files
https://github.com/exif-heic-js/exif-heic-js
exif exif-heic heic-files javascript-library
Last synced: 11 months ago
JSON representation
JavaScript library for reading EXIF image metadata from HEIC files
- Host: GitHub
- URL: https://github.com/exif-heic-js/exif-heic-js
- Owner: exif-heic-js
- License: mit
- Created: 2019-05-01T16:19:08.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T18:50:36.000Z (over 1 year ago)
- Last Synced: 2024-09-17T18:58:32.508Z (over 1 year ago)
- Topics: exif, exif-heic, heic-files, javascript-library
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 47
- Watchers: 3
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Exif-HEIC.js
A JavaScript library for reading [EXIF meta data](https://en.wikipedia.org/wiki/Exchangeable_image_file_format) from [HEIC files](https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format). It is derived from [Exif.js](https://github.com/exif-js/exif-js/blob/master/README.md).
The method `findEXIFinHEIC` takes an HEIC file in the form of `ArrayBuffer`, and return a collection of extracted EXIF tags. The method `findEXIFinJPEG` from Exif.js is also present to support JPEG files.
## Install
You can install it through NPM:
```
npm install exif-heic-js --save
```
then reference your local file with a `script` tag:
```html
```
You can also use a minified version hosted by jsDelivr:
```html
```
## Example
A live demo is available on the [GitHub Pages site](https://exif-heic-js.github.io/exif-heic-js/example/).