Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.