A JavaScript library for reading EXIF meta data from HEIC files. 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.
You can install it through NPM:
npm install exif-heic-js --save
then reference your local file with a script
tag:
<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>
A live demo is available on the GitHub Pages site.