Closed tuxflo closed 6 years ago
Unfortunately, there's no "title" tag in the EXIF spec, there's only "ImageDescription" (see page 28 of the EXIF 2.3 specification). Exiftool supports vendor specific tags/information, this library does (and will) not.
It's also possible your title comes from XMP information, exiftool support that too. You could try amberbit/xmp to pull it out.
Hi! I'm using exifr as a great jekyll plugin ( https://github.com/benib/jekyll-exiftag). However while reading the description out of an image using
image_description
works great, I'm unable to read the Title information of an image. Exiftool (exiftool test.jpg | grep "Title"
) gives me the following information of the image:I already tried
image_title
andtitle
. Thanks in advance!