Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

ExifReader

This shows how to get all the tags, and then pull the description out (which is where Lightroom Classic stores it)

javascript
#!/usr/bin/env node

const ExifReader = require('exifreader')
const input_file = '/Users/alan/Photos/web-exports/aws-2022-0315-1507-0001.jpg'

async function runIt() {
  const tags = await ExifReader.load(input_file)
  console.dir(tags)
}

runIt()

Using ExifReader to process photos

https : //github.com/mattiasw/ExifReader

npm install exifreader