An open API service indexing awesome lists of open source software.

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

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/).