exif-js / exif-js

JavaScript library for reading EXIF image metadata

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

info: using await

BananaAcid opened this issue · comments

This is what I use:

let exifData = await new Promise(resolve =>
	EXIF.getData(file, function() {
		resolve(EXIF.getAllTags(this)); 
	}
));