bare-exif
v1.0.1
Published
EXIF support for Bare
Readme
bare-exif
EXIF support for Bare.
npm i bare-exifUsage
const exif = require('bare-exif')
const image = require('./my-image.jpg', { with: { type: 'binary' } })
const data = new exif.Data(image)
const orientation = data.entry(exif.constants.tags.ORIENTATION)
orientation.read() // 1 (raw value)
orientation.value() // Top-left (human readable string)License
Apache-2.0
