I have a blog post titled “Photos meta data: the disjointed state of EXIF, XMP, IPTC in tools” that’s been a draft with talking points since June. The whole landscape is maddeningly inconsistent and eventually I’ll sort out my thoughts and harmonize my little part of the world and rant blog about it. But until then I finally have a workable solution.
The primary thing I want is embedded alt-ext in EXIF Image Description. But I also wanted to display an image title, which was fraught. I had a “workable” solution going with Hugo by cheating the EXIF artist flag for the title of the image (since the only other field UserComment was pre-pending everything with ASCII
) but that seems to have resolved itself thankfully because I could not stand that metadata “corruption”. AND I got some great advice from tmcfarlane in this fedi thread about exporting tags in Darktable.

I had already been using hierarchical tags for Camera, Film, and Developer but now knowing that I could actually overwrite the EXIF on the exported image, opened up more ideas and investing more heavily in tags made sense. I broke up the Camera hierarchy to Camera|Make|Model
added a Lens|Model
(might expand to Lens|Model|FocalLenght|Aperture
) in the future and added ISO
in addition to Film (maybe future possibility is Film|Manufacturer|Brand|ISO
). Currently, I’m appending the meta data at the end of the EXIF.ImageDescription
and displaying that on alongside the image. But now I will have the opportunity to customize more and actually show the true EXIF and not what the “scanning camera” records.

This is what the final presentation looks like on my photos site. The good part about this approach of putting all the metadata in the image description is that not all images need to re-tagged and re-exported all at once and the site won’t break. When all the image are properly tagged, I’ll create a metadata section similar to what you see below, but note that the EXIF information showing the camera setup used for scanning the negative (the whole reason I’m doing all this song and dance) so all images have to be tagged and exported. Also, I don’t keep good enough notes while shooting, so I’ll likely remove the aperture and shutter speed, despite their very cool SVG icons.
If you’re interested in how this template came to be , I wrote about it a while ago: Hugo photos with EXIF data.