Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
exif-orientation-image
Advanced tools
Properly displays an image via canvas based on the exif orientation data. To be used with a file object
Properly displays an image via canvas based on the exif orientation data. Uses exif-orientation.
npm install exif-orientation-image --save
The following example reacts to the onChange
event of a file upload html input
var getOrientedImage = require('exif-orientation-image');
fileUpload.addEventListener('change',function(e) {
var file = e.target.files[0];
getOrientedImage(file,function(err,canvas) {
if (!err) {
document.body.appendChild(canvas);
}
});
});
getOrientedImage(file,callback)
file
A file object from a file upload html input
callback
A function to be called once the image is rendered in its proper position. The callback is passed 2 arguments (err,canvas)
. If err
is undefined, canvas will be an HTML canvas element with the correctly oriented image, otherwise err will be an Error
object with the message of the error.
orientation.translate(image,orientation,options)
image
A loaded html image element
orientation
Orientation object returned from exif-orientation. Contains scale.x, scale.y, and rotation. Rotation is a number in degrees, scale.x and scale.y are numbers.
options
Custom options, right now the only options are width
and height
which determines the size of the returned canvas. It will use the image dimensions if not provided.
orientation.orientation()
Exposes the exif-orientation function in case you want to handle that manually.
MIT, see LICENSE.md for details.
FAQs
Properly displays an image via canvas based on the exif orientation data. To be used with a file object
The npm package exif-orientation-image receives a total of 126 weekly downloads. As such, exif-orientation-image popularity was classified as not popular.
We found that exif-orientation-image 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.