Socket
Socket
Sign inDemoInstall

exif-orientation-image

Package Overview
Dependencies
2
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    exif-orientation-image

Properly displays an image via canvas based on the exif orientation data. To be used with a file object


Version published
Weekly downloads
477
increased by19.55%
Maintainers
1
Install size
1.37 MB
Created
Weekly downloads
 

Readme

Source

exif-orientation-image

stable

Properly displays an image via canvas based on the exif orientation data. Uses exif-orientation.

Install

npm install exif-orientation-image --save

Example

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);
    }
  });
});

Usage

NPM

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.

License

MIT, see LICENSE.md for details.

Keywords

FAQs

Last updated on 14 Sep 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc