This is a package is exiftool nodejs wrapped version. With this wrapped version, you can read / create / edit / remove image exif / iptc settings very easy.
This package don't depend on any other npm packages, and you may also set your own exiftool binary file as you wish.
$ npm install --save exiftool-kit
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool(pathToYourOwnExifTool)
or
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool()
exiftool.setBin(pathToYourOwnExifTool)
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool()
exiftool.getTags({
source: file
})
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool()
exiftool.getTags({
source: [file1, file2]
})
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool()
exiftool.getTags({
source: buffer
})
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool()
exiftool.setTags({
source: image,
tags: [
{ tag: 'iptc:By-line', value: 'Kim Hsiao' }
]
})
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool()
exiftool.setTags({
source: imageBuffer,
tags: [
{ tag: 'Model', value: '' }
]
})
const ExifTool = require('exiftool-kit')
const exiftool = new ExifTool()
exiftool.setTags({
source: imageBuffer,
tags: [
{ tag: 'all', value: '' }
]
})
You may check example, to get more detail example code
When you edit tags to a file, this will return the given file name. If you edit tags from a buffer, it will return a updated buffer.