exif-parser
exif-parser copied to clipboard
A javascript library to extract EXIF metadata from JPEG images, in node and in the browser.
Tools like VersionEye are using this information for license compliance analysis.
This avoids a warning from npm, and makes this package license information consumable by tools.
Fixing issue #36
Hi, I'm using the following code: `var originImage = await s3.getObject(params).promise(); var buffer = await sharp(originImage.Body).withMetadata().toBuffer(); var parser = require('exif-parser').create(buffer); var exifData = await metaDataService.Convert(parser.parse());` All the data is fine,...
Hi! Does this module have the ability to parse TIF files? If not, what would it take to get it there? Thanks!
This module seems handy but it crashes in node.js environment: node_modules/exif-parser/lib/jpeg.js:12 throw new Error('Invalid JPEG section offset'); ^ Error: Invalid JPEG section offset at Object.module.exports.parseSections (/home/xu/node_modules/exif-parser/lib/jpeg.js:12:11) In node you would...
First off... thanks for the library. Of the ones that I have seen it is by far the most complete. However, it seems like your logic when [simplifying a date...
In specific case, when is set tag `GPSLatitude` but is missing `GPSLatitudeRef`, coordinates get calculated and multiplied by -1 -> GPS coordinates are wrong (negated) It should get multiplied only...
I'm looking for a Javascript package to extract an extended image tag _Projection Type_ to detect between image with projection (e.g. sphere image) and image without projection I found another...
Currently this library uses `eval()` to get the global object, but this does not work when using a CSP policy not allowing `eval`. There is a[ stage 3 ECMAscript proposal](https://github.com/tc39/proposal-global)...