Home
NOTE: I'm in the middle of upgrading the site. Most things are in place, but some things are missing and/or broken. This includes alt text for images. Please bear with me while I get things fixed.

ExifReader

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

#!/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
~ fin ~