Socket
Book a DemoInstallSign in
Socket

exif-orientation-math

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exif-orientation-math

Small library to compose multiple exif orientation values and convert an orientation into flip and rotate instructions.

1.1.0
latest
Source
npmnpm
Version published
Weekly downloads
4
300%
Maintainers
1
Weekly downloads
 
Created
Source

exif-orientation-math

Small library to compose multiple exif orientation values and convert an orientation into flip and rotate instructions.

Methods

compose (Number, Number) -> Number

Given two EXIF orientation numbers (1-8), returns the EXIF orientation of the result of doing both operations in sequence. This could be useful if you are applying an additional EXIF orientation (say, from a database) on top of what is stored in a file.

const exifmath = require('exif-orientation-math')
const neworientation = exifmath.compose(5, 7)
// neworientation: 3

operations (Number, { flop: Boolean }) -> { flip: Boolean, angle: Number }

Given an EXIF orientation, returns the meaning in an object defining whether or not to flip first, and a rotation angle to apply after the flip.

const operations = exifmath.operations(5)
// operations: { flip: true, angle: 270 }

flop option should be used if the image manipulation library being used supports a vertical flip. Will return an additional flop: Boolean in the return to represent the vertical flip operation. This will result in the minimum number of operations.

const operations = exifmath.operations(4, { flop: true })
// operations: { flip: false, flop: true, angle: 0 }

Keywords

exif

FAQs

Package last updated on 07 Aug 2019

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.