Skip to content

JavaScript library for reading EXIF image metadata from HEIC files

License

Notifications You must be signed in to change notification settings

exif-heic-js/exif-heic-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exif-HEIC.js

A JavaScript library for reading EXIF meta data from HEIC files created by iOS devices. It is derived from Exif.js.

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 https://github.com/exif-heic-js/exif-heic-js --save

then reference your local file:

<script src="vendors/exif-js/exif-js"></script>

You can also use a minified version hosted by jsDelivr:

<script src="https://cdn.jsdelivr.net/gh/exif-heic-js/exif-heic-js/exif-heic.min.js"></script>

Example

A live demo is available on the GitHub Pages site.