Show "Yourself" self-portraits (selfies!)

Is it Disco night?

f758adac-af54-4459-9a33-86e1eb9303cf.jpeg
Join to see EXIF info for this image (if available)
 
HHhhhm....... I need to check out what's up with the "0 0 0 0" EXIF values. 🤔
It's Darktable fouling things up. I should take things up with them perhaps. Or not. What comes to EXIF metadata it seems there are no right or wrong answers.

Bash:
# Original raw
(~/pics/nikon-exif-test) exiftool -j DDF_9205.NEF | grep -i lens
  "LensType": "D",
  "Lens": "85mm f/1.8",
  "LensDataVersion": "0204",
  "LensIDNumber": 56,
  "LensFStops": 6.33,
  "LensID": "AF Nikkor 85mm f/1.8D",
  "LensSpec": "85mm f/1.8 D",

# Rawtherapee-produced file
(~/pics/nikon-exif-test) exiftool -j DDF_9205_rawtherapee.jpg| grep -i lens
  "LensType": "D",
  "Lens": "85mm f/1.8",
  "LensDataVersion": "0204",
  "LensIDNumber": 56,
  "LensFStops": 6.33,
  "LensID": "AF Nikkor 85mm f/1.8D",
  "LensSpec": "85mm f/1.8 D",

# Darktable
(~/pics/nikon-exif-test) exiftool -j DDF_9205_darktable.jpg| grep -i lens
  "LensType": "D",
  "Lens": "85mm f/1.8",
  "LensFStops": 6.33,
  "LensSpec": "85mm f/1.8 D",
 
Back
Top