-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
It would be nice to have a promisified version of the function. For now, I use this:
function ExifPromise(path) {
return new Promise(function (resolve, reject) {
try {
new ExifImage({ image: path }, function (error, exifData) {
if (error)
reject(error);
else
resolve(exifData);
});
} catch (error) {
reject(error);
}
});
}
styfle, vlumi, derek3191, mohshbool and lancedolan
Metadata
Metadata
Assignees
Labels
No labels