Git Product home page Git Product logo

exif-orientation-image's Introduction

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.

exif-orientation-image's People

Contributors

njam3 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.