Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@fengyuanchen/exif
Advanced tools
JavaScript Exif reader (only available in the browser).
npm install @fengyuanchen/exif
<script src="/path/to/exif.js"></script>
Four available usages:
new Exif(HTMLImageElement, options)
new Exif(HTMLImageElement.src, options)
new Exif(File, options)
new Exif(Blob, options)
Example:
<img id="image" src="image.jpg">
var image = document.getElementById('image');
var exif = new Exif(image, {
done: function(tags) {
console.log(tags);
}
});
You may set cropper options with new Exif(image, options)
.
Boolean
true
Read Exif tags.
Boolean
true
Read GPS tags.
Boolean
true
Read interoperability tags.
Array
or Boolean
['MakerNote', 'UserComment']
Assign the ignored tags. Set false
to disable it.
Function
null
Read success callback.
new Exif(image, {
done: function(tags) {
console.log(tags);
}
});
Function
null
Read error callback.
new Exif(image, {
fail: function(message) {
console.log(message);
}
});
If you have to use other global function with the same namespace, just call the Exif.noConflict
static method to revert to it.
<script src="other-exif.js"></script>
<script src="exif.js"></script>
<script>
Exif.noConflict();
// Code that uses other `Exif` can follow here.
</script>
FAQs
JavaScript Exif reader.
We found that @fengyuanchen/exif demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.